• Resolved Jon Fergus

    (@jon-fergus)


    Hi. We don’t want any mention of taxes on our site. Is there some way to hide that text? If not, can you change the way you added the (Tax Excluded) text in some way that will allow us to hide it using css?

    Maybe make it an :after pseudo-element to the discount total, or in your echo function enclose it in a <p> tag with a unique class and float it right to get the same appearance, or something like that which will allow us to hide it with css if we want.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Cristiano Zanca

    (@cristianozanca)

    Hi @jon-fergus

    As answered before in this forum here

    https://www.ads-software.com/support/topic/you-saved-is-the-total-amount/

    It’s possible to disable the “You Saved” phrase

    The explanation about Taxes it’s something that must be displayed, missing it could cause wrong expectations about the amount of savings.
    Making the next version of the plugin we can test your advices to let it be customizable

    Thread Starter Jon Fergus

    (@jon-fergus)

    Hi. Thanks for the reply. I understand we can hide the “you saved” part, but I disagree that the taxes note is something that must be displayed. Our site includes taxes in all pricing and covers this in our terms and conditions. So for us and stores like us, it’s misleading to show that note. It definitely needs to be something that is customizable.

    We love the plugin and want to use the “you saved” option, but this makes the plugin unusable for us unless I go in and edit your plugin code myself, which is what I will need to do for now.

    You don’t even need to build in a customizable option into the plugin, just enclose the text in your echo statement into a <p> tag with a class and float:right. 99% of users won’t even notice the change, but those of us who need to remove it at least then have the option.

    Here’s one easy option:

    if ( get_option('woocommerce_prices_include_tax') == 'yes'){
    
    echo __( '<p class="tax-note" style="float:right;">&nbsp;(Tax Included)</p>', 'woo-discount-price' );
    }
    elseif ( get_option('woocommerce_prices_include_tax') == 'no'){
    
    echo __( '<p class="tax-note" style="float:right;">&nbsp;(Tax Excluded)</p>', 'woo-discount-price' );
    }
    Plugin Author Cristiano Zanca

    (@cristianozanca)

    Hi @jon-fergus

    Many Thanks for the suggestion, and as said before

    Making the next version of the plugin we can test your advices to let it be customizable

    we will test it and maybe publish it in the next version of the plugin

    Thread Starter Jon Fergus

    (@jon-fergus)

    Thanks Christiano.

    Thread Starter Jon Fergus

    (@jon-fergus)

    Oh, can I also add a request, if at all possible, to show the regular and sale price also for the subtotal in the cart totals table? I think that’d make it easier for customers when they’re reviewing their totals to see their full savings.

    Thanks again for the great plugin.

    Hi Jon. Did you figure out a solution for this? We also do not charge sales tax, so by having (Excluding Taxes) show on our savings in the cart, it leads users to believe that we are going to charge them taxes when we are not and they abandon the cart. Is there a fix for this?

    Plugin Author Cristiano Zanca

    (@cristianozanca)

    Hi @wcstamps @jon-fergus,

    I’m happy to announce a new Plugin version !

    in the last 1.0.6 version there is a new setting that allow to hide “Tax Included/ecluded” text

    Please use it and check it

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Need a way to hide (Tax Excluded) text’ is closed to new replies.