Hover product woocommerce

0

Good morning, I was investing to make an online store, and I need to know how I can do so that when I hover over a product I show the available sizes. Something similar to what you see on this website: link

Is this setting available in the woocommerce adding attributes maybe?

How would you do to make this size? Suggestions are welcome. !

    
asked by Antonio Ángel Estrada Pérez 05.04.2017 в 18:27
source

1 answer

1

in this case you must edit your template, and use the wordpress functions that lend themselves to this.

Once you have located the file that lists the products, add:

global $product; $sizes = $product->get_attribute( 'sizes' );

Thus the variable $sizes will give you the sizes of that product in particular, so it is enough to organize the CSS and ready:)

    
answered by 05.04.2017 / 23:25
source