Display product attribute archive links

You will need to add this code to your child theme’s functions.php file or via a plugin that allows custom functions to be added, such as the Code snippets plugin. Please don’t add custom code directly to your parent theme’s functions.php file as this will be wiped entirely when you update the theme.

Display product attribute archive links

Display WooCommerce product attribute archive links on the product page, right below the add to cart button.

https://gist.github.com/woogists/13939b07ec145fb06cf8b1b51a8a035b

Also remember to add the pa_ prefix to the attribute. An example would be: pa_color — or it wouldn’t work.

If you’d like to display this on the archive page, replace the add_action( 'woocommerce_product_meta_end', 'wc_show_attribute_links' ); with the following hook:

add_action( 'woocommerce_shop_loop_item_title', 'wc_show_attribute_links' );


One response to “Display product attribute archive links”

  1. […] FONTE: http://docs.woo.com/document/display-product-attribute-archive-links/ […]

Leave a Reply

Your email address will not be published. Required fields are marked *