• Resolved overyah

    (@overyah)


    Dear Storefront Experts,

    Is there a way to enable the German pricing rule in Storefront that I’m not aware of?

    As per german?PAngV?rule the additional costs and delivery status must be shown near the product price and for that I am using below code in the fun php , but with that code the Delivery-status and VAT details also appear near the virtual and digital product prices.

    
    add_filter( 'woocommerce_get_price_html', 'custom_price_message' );
        function custom_price_message( $price ) {
        $vat = ' <p><a >(zzgl. Versand)</a> ?? Sofort lieferbar</p>';
        return $price . $vat;
        }

    I went through few threads like https://stackoverflow.com/questions/45490090/displaying-prices-without-tax-only-in-certain-product-categories but seems its just related to specific categories and not to over all virtual and digital products Please help me , to remove that message from digital and virtual products and kindly let the word “TAX Free” appear close to the prices on digital and virtual products.

    Thanks alot for your help

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

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Exclude VAT / delivery status message on virtual and digital products’ is closed to new replies.