• Resolved UVScott

    (@uvscott)


    Greetings,

    I’ve removed Meta (SKU, Cat, Tags & Sharing) from the single product page, yet it still appears in the Quickview pop. I’m using this snippet:

    remove_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_meta’, 40 );
    remove_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_sharing’, 50 );

    How can I remove these from the Quickview popup, as well?

    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author xootix

    (@xootix)

    Hello,
    This should work.
    remove_action( ‘xoo-qv-summary’, ‘woocommerce_template_single_meta’, 30 );

    Thread Starter UVScott

    (@uvscott)

    Unfortunately, that didn’t work. Looks like it should, though.

    Thanks!

    Plugin Author xootix

    (@xootix)

    Hey,
    You directly copied it from here? I think wordpress converted into something else.
    Try this , from the code editor.
    remove_action( 'xoo-qv-summary', 'woocommerce_template_single_meta', 30 );
    If still it doesn’t work , Use CSS

    .xoo-qv-summary .product_meta {
        display: none;
    }
    • This reply was modified 7 years, 9 months ago by xootix.
    • This reply was modified 7 years, 9 months ago by xootix.
    Thread Starter UVScott

    (@uvscott)

    Thank you. The last “remove_action” worked. Must have had something to do with the way C&P worked in the previous post without the code box. Weird!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove Meta From Quickview Popup’ is closed to new replies.