Skip to content

Commit

Permalink
fix double wrapper woocommerce archives issue #112
Browse files Browse the repository at this point in the history
  • Loading branch information
bassjobsen committed Mar 4, 2014
1 parent c8fba72 commit 5ce1c96
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions functions/template-ecommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ function woocommerce_header_add_to_cart_fragment( $fragments ) {

// Define the WooCommerce content wrappers
function jbst_open_woocommerce_content_wrappers() {
jbst_open_content_wrappers();
//jbst_open_content_wrappers();

}

function jbst_close_woocommerce_content_wrappers() {
jbst_close_content_wrappers();
//jbst_close_content_wrappers();

}

Expand Down Expand Up @@ -118,10 +118,10 @@ function jbst_woo_account_profile_link() {
/* Add custom WOO styling
----------------------------------------------- */
function jbst_woo_css() {
wp_register_style( 'jbst-woo-css', get_stylesheet_directory_uri() . '/assets/css/woo.css', array(), '20121008', 'all' );
wp_enqueue_style( 'jbst-woo-css' );
//wp_register_style( 'jbst-woo-css', get_stylesheet_directory_uri() . '/assets/css/woo.css', array(), '20121008', 'all' );
//wp_enqueue_style( 'jbst-woo-css' );
}
add_action( 'wp_enqueue_scripts', 'jbst_woo_css', 99 );
//add_action( 'wp_enqueue_scripts', 'jbst_woo_css', 99 );

}

Expand Down

0 comments on commit 5ce1c96

Please sign in to comment.