• Resolved stylebutton

    (@stylebutton)


    Hi,

    is it possible to insert a short text inklusive link under the total price at product page?
    In germany we have to give a VAT-hint near prices. So it would be fine to have a third row at the table in <div id=”ppom-price-container”>.
    Or is it possible to insert text in the <th class=”ppom-label-item”>…</th>?*
    Maybe also under the price container div.

    Thanks
    Holger

    * Now it is rendered as
    <th class="ppom-label-item">Gesamtpreis:</th>
    If we have anything like this, it would be ok:

    <th class="ppom-label-item">Gesamtpreis:<br>
    <span style="font-size:0.5em;font-weight:normal">inkl. MwSt. zuzügl. <a href="#">Versand</a></span></th>
    • This topic was modified 5 years, 2 months ago by stylebutton.
    • This topic was modified 5 years, 2 months ago by stylebutton.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @stylebutton,

    please add following code into your theme’s functions.php:

    add_filter('ppom_input_vars', 'ppom_change_label', 10, 2);
    function ppom_change_label($vars, $product){
        
        $vars['total_without_fixed_label'] = 'Gesamtpreis: <span style="font-size:0.5em;font-weight:normal">inkl. MwSt. zuzügl. <a href="#">Versand</a></span>';
        return $vars;
    }
    Thread Starter stylebutton

    (@stylebutton)

    Thanks for snippet, works perfect ??

    Cheers.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘insert little text under total price at product page’ is closed to new replies.