Skip to content

Instantly share code, notes, and snippets.

@blogjunkie
Created August 5, 2015 07:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blogjunkie/cf6bda0a48cd9eb542a2 to your computer and use it in GitHub Desktop.
Save blogjunkie/cf6bda0a48cd9eb542a2 to your computer and use it in GitHub Desktop.
Adding support for WooCommerce in Genesis via Stéphane Bergeron. "I'm using a modified version of this: http://joshmallard.com/2013/09/23/woocommerce-genesis-2-0/ The way I modified it is that, I don't put anything in functions.php other than the add_theme_support( 'woocommerce' ); line. Instead I replace what Josh has in his woocommerce.php tem…
// Declare WooCommerce support for your theme
add_theme_support( 'woocommerce' );
<?php
/**
* WooCommerce Template
*
* Template used for all WooCommerce views in order to avoid using Genesis Connect
* Save this into `themename/woocommerce.php`
*
*/
//* Add WooCommerce content output
if ( function_exists( 'woocommerce_content' ) ) {
// Remove standard post content output
remove_action( 'genesis_loop', 'genesis_do_loop');
// Replace the default Genesis loop with WooCommerce's
add_action( 'genesis_loop', 'woocommerce_content' );
}
genesis();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment