my current theme doesnt support woocoomers
-
hi,
i wanted to do this solution:
https://docs.woothemes.com/document/t…ty/#usinghooks
should i have to paste this in my functions.php?
remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10); remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
and where i have to past this here?
add_action('woocommerce_before_main_content', 'my_theme_wrapper_start', 10);add_action('woocommerce_after_main_content', 'my_theme_wrapper_end', 10); function my_theme_wrapper_start() { echo '<section id="main">'; } function my_theme_wrapper_end() { echo'</section>';
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘my current theme doesnt support woocoomers’ is closed to new replies.