• Resolved databell96

    (@databell96)


    I’m trying to find a way to remove the product meta data from the Quick View window. Thought it would be as simple as doing a display:none; to the class for that area, but not the case. It’s still there. So how can I remove it?

    The page I need help with: [log in to see the link]

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

    (@yithemes)

    Hi,
    you can use this custom code to remove the product meta from Quick View.

    if( ! function_exists( 'yith_wcqv_custom_template_action' ) ) {
    	function yith_wcqv_custom_template_action(){
    		remove_action( 'yith_wcqv_product_summary', 'woocommerce_template_single_meta', 30 );
    	}
    	add_action( 'init', 'yith_wcqv_custom_template_action', 20 );
    }

    simply copy and paste this code in the functions.php of your theme.
    Let me know! ??

    Thread Starter databell96

    (@databell96)

    Thank you! That worked out great.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove Product Meta from Quick View window’ is closed to new replies.