• Resolved mikesimon1920

    (@mikesimon1920)


    Hi,

    Excellent plugin. However, I am facing an issue as I use tiered pricing on variable products, which displays it’s own subtotal as it isn’t connected with product total price.

    My question is: Is it possible to hide the total price on all variable products? As of now, I have two subtotals, one showing the ajax tiered pricing discount, and product total price showing the standard woocommerce discount range.

    Best
    Michael

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

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

    (@autocircle)

    Hello @mikesimon1920,

    Yes you can disable our plugin on specific product type page like if you don’t want to show total price on variable product page simply copy below code snippet in your active theme’s functions.php file or you can use code snippet plugin.

    
    add_filter( 'wcptp_allowed_product_type', function(){
    return array( 'simple' );
    } );
    

    You can return those products types here to show the total price section.

    I hope your issue will be solved. Let me know if you need further help at https://join.skype.com/invite/nbMUHWfJ3ybB

    Regards

    Thread Starter mikesimon1920

    (@mikesimon1920)

    Thank you. It works! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hide price on variable product’ is closed to new replies.