• Resolved HungryJos

    (@hungryjos)


    Thank you for this plugin! Working great!
    I setup Woocommerce to show prices excluding VAT and in my default prices I have a suffix (excl. VAT)
    This does not show on the total price with your plugin. Is there a filter or function to add a suffix after the total price? Or could you include this Woocommerce functionality in the plugin?

Viewing 1 replies (of 1 total)
  • Plugin Author autocircle

    (@autocircle)

    Hello sir,

    I have updated my plugin as your need. Now you can show suffix/prefix with these filters.

    apply_filters( 'wcptp_prefix', __return_false() );
    apply_filters( 'wcptp_suffix', __return_false() );

    Here an example:

    add_filter( 'wcptp_suffix', function(){
    return "(excl. VAT)";
    });

Viewing 1 replies (of 1 total)
  • The topic ‘Suffix after total price’ is closed to new replies.