Advertisement
lorro

WooCommerce - Show attributes at short description location

Dec 12th, 2016
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. <?php
  2.   // show attributes where short description normally goes
  3.   // code goes in functions.php for your child theme
  4.   remove_action ( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
  5.   add_action ( 'woocommerce_single_product_summary', 'show_attributes', 20 );
  6.   function show_attributes() {
  7.     global $product;
  8.     $product->list_attributes();
  9.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement