Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. //Rimozione WooCommerce Wrappers
  2. remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);
  3. remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
  4.  
  5. //Ripristino WooCommerce Wrappers nel tema BootsTheme
  6. add_action('woocommerce_before_main_content', 'my_theme_wrapper_start', 10);
  7. add_action('woocommerce_after_main_content', 'my_theme_wrapper_end', 10);
  8.  
  9. //Creazione pagina WooCommerce
  10. function my_theme_wrapper_start() {
  11. echo '<div class="row"><div class="col-md-12"><section id="main" class="woocommerce">';
  12. }
  13.  
  14. function my_theme_wrapper_end() {
  15. echo '</section></div></div>';
  16. }
  17.  
  18. /* WooCommerce - Dichiarazione compatibilità del tema BootsTheme */
  19. add_action( 'after_setup_theme', 'woocommerce_support' );
  20. function woocommerce_support() {
  21. add_theme_support( 'woocommerce' );
  22. add_theme_support( 'wc-product-gallery-zoom' );
  23. add_theme_support( 'wc-product-gallery-lightbox' );
  24. add_theme_support( 'wc-product-gallery-slider' );
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement