Hello, please tell me how you can display in WooCommerce wordpress a list of shoe sizes (for example) in this form - sample sizes

I was looking for plugins - but could not find anything like it ((

    1 answer 1

    Good day!

    function add_atribute() { global $product; $size = $product->get_attribute('pa_size'); echo $size; } add_action('hook_where_you_whant_show_attr' , 'add_atribute'); 

    Pay attention to get_attributes () in your case, I suppose you need it.