• Hi,
    I have installed the free version of (YITH WooCommerce Quick View) plug-in and it showing the product price as multiple times on the popup. Could you please let me know how to fix it.

    • This topic was modified 6 years, 9 months ago by Shamjith V.

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

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

    (@yithemes)

    Hi. ??
    you can remove price using this code

    add_action( 'init', 'yithemes_quick_view_remove_action' );
    function yithemes_quick_view_remove_action(){
        remove_action( 'yith_wcqv_product_summary', 'woocommerce_template_single_price', 15 );
    }

    simply paste and copy this code into child theme functions.php.

    • This reply was modified 6 years, 9 months ago by YITHEMES.
    Thread Starter Shamjith V

    (@shamjith)

    Hi,

    I have added the shared code in the theme function, but it does not work.
    Still the multiple price displayed on the popup.
    https://www.dropbox.com/s/ws758h06gtaz57w/Screenshot%20%285%29.png?dl=0
    You can mouse over any product and there will be a quick view icon. Please check the website https://metropolis.sweans.org

    Plugin Author YITHEMES

    (@yithemes)

    Hi there,

    probably your theme use a different hook for this and for this reason my code doesn’t works. You can try to hide it by CSS code. Please, go in Appearance > Customize > Additional CSS and past this css rule:

    #yith-quick-view-modal form.cart .price {
        display: none;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Showing Product Price as multiple times on the quickview popup’ is closed to new replies.