hello,
i tried to implement the following:
http://wcdocs.woothemes.com/codex/extending/using-custom-attributes-in-menus/
in order to use custom attributes of products in the menu
i followed the instruction and it went fine,
the only problem is that the sidebar is now being pushed to the bottom of the page.
what i did is adding the following to functions.php:
add_filter('woocommerce_attribute_show_in_nav_menus', 'wc_reg_for_menus', 1, 2);
function wc_reg_for_menus( $register, $name = '' ) {
if ( $name == 'pa_size' ) $register = true;
return $register;
}
than i
Copied woocommerce/templates/taxonomy-product_cat.php into porpulsion theme folder
Renamed the template to taxonomy-pa_size.php
can u help?














