• Resolved RyanLV

    (@ryanlv)


    Hi.

    How does one add existing product attributes to the Quick View?
    Meaning – the weight, color, and all that good stuff, that you can normaly see in the product page under – More info.

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author YITHEMES

    (@yithemes)

    Hi,
    you can use this action hook “yith_wcqv_product_summary” to add info on quick view.
    For example you can use a code like this for add weight dimensions and other info

    add_action('yith_wcqv_product_summary', 'my_qv_custom_data', 35);
    function my_qv_custom_data() {
        global $product;
        wc_display_product_attributes( $product );
    };

    Try and let me know.
    Regards.

    Thread Starter RyanLV

    (@ryanlv)

    Yes! That is exactly what I was looking for.
    Thanks a ton!

    Time to learn PHP myself thou 😀

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Adding product attributes to the Quick View’ is closed to new replies.