This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | //* Enqueue Stellar on homepage | |
| add_action( 'wp_enqueue_scripts', 'enqueue_stellar' ); | |
| function enqueue_stellar() { | |
| if ( ! ( is_home() || is_front_page() ) ) | |
| return; | |
| wp_enqueue_script( 'stellar', get_stylesheet_directory_uri() . '/js/jquery.stellar.min.js', array( 'jquery' ), '', true ); | |
| wp_enqueue_script( 'stellar-init', get_stylesheet_directory_uri() . '/js/jquery.stellar.init.js', array( 'stellar' ), '1.0.0', true ); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // Move Footer widgets and Footer outside Site Container | |
| // Reposition the footer widgets | |
| remove_action( 'genesis_before_footer', 'genesis_footer_widget_areas' ); | |
| add_action( 'genesis_after', 'genesis_footer_widget_areas' ); | |
| // Reposition the footer | |
| remove_action( 'genesis_footer', 'genesis_footer_markup_open', 5 ); | |
| remove_action( 'genesis_footer', 'genesis_do_footer' ); | |
| remove_action( 'genesis_footer', 'genesis_footer_markup_close', 15 ); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?php | |
| /** | |
| * Plugin Name: Storefront Post Meta Widget | |
| * Plugin URI: https://www.skyverge.com/blog/create-smart-woocommerce-widget/ | |
| * Description: Adds a widget to display blog post meta in the Storefront theme | |
| * Author: SkyVerge | |
| * Author URI: https://www.skyverge.com/ | |
| * Version: 1.0.0 | |
| * Text Domain: storefront-post-meta | |
| * |