Neu -> Vat_info ändern

Fries

Gut bekanntes Mitglied
26. August 2021
302
16
Hallo zusammen,

kann mir jemand sagen, wo ich die vat_info ändern kann? in der productdetails/price.tpl ist es leider nicht.


Danke schonmal !
Unbenannt5.png
 

misterGST

Sehr aktives Mitglied
23. September 2007
363
41
Hallo Fries,

versuche es mal hier: ... \templates\NOVA\productdetails\price.tpl

LG Georg

Edit: Dort hast Du schon gesucht . Aber dort fand ich "vat_info" (Zeile 83)...?
 
  • Gefällt mir
Reaktionen: Fries

Fries

Gut bekanntes Mitglied
26. August 2021
302
16

MHillmann

Moderator
Mitarbeiter
11. Oktober 2018
1.347
502
Habe aber nicht viel getestet, also ka ob da in irgendwelchen Konstellationen irgendwo dann Leerzeichen fehlen
HTML:
{block name='snippets-shipping-tax-info'}
    {strip}
    {block name='snippets-shipping-tax-info-content'}
        {block name='snippets-shipping-tax-info-tax-data'}
            {if !empty($taxdata.text)}
                {$taxdata.text}
            {else}
                {if $Einstellungen.global.global_ust_auszeichnung === 'auto'}
                    {if $taxdata.net}
                        {lang key='excl' section='productDetails'}
                    {else}
                        {lang key='incl' section='productDetails'}
                    {/if}
                     {$taxdata.tax}% {lang key='vat' section='productDetails'}
                {elseif $Einstellungen.global.global_ust_auszeichnung === 'autoNoVat'}
                    {if $taxdata.net}
                        {lang key='excl' section='productDetails'}
                    {else}
                        {lang key='incl' section='productDetails'}
                    {/if}
                     {lang key='vat' section='productDetails'}
                {elseif $Einstellungen.global.global_ust_auszeichnung === 'endpreis'}
                    {lang key='finalprice' section='productDetails'}
                {/if}
            {/if}
        {/block}
        {if $Einstellungen.global.global_versandhinweis === 'zzgl'}
            {block name='snippets-shipping-tax-info-zzgl'}
                {block name='snippets-shipping-tax-info-zzgl-comma'}
                , 
                {/block}
                {if $Einstellungen.global.global_versandfrei_anzeigen === 'Y' && $taxdata.shippingFreeCountries}
                    {block name='snippets-shipping-tax-info-zzgl-show-shipping-free'}
                        {if $Einstellungen.global.global_versandkostenfrei_darstellung === 'D'}
                            {block name='snippets-shipping-tax-info-zzgl-show-shipping-free-D'}
                                {$countries = "{foreach $taxdata.countries as $cISO => $country}<abbr title='{$country}'>{$cISO}</abbr>{if !$country@last}&nbsp;{/if}{/foreach}"}
                                {lang key='noShippingcostsTo'} {lang key='noShippingCostsAtExtended' section='basket' printf=$countries}
                                {link href="{if isset($oSpezialseiten_arr[$smarty.const.LINKTYP_VERSAND])}{$oSpezialseiten_arr[$smarty.const.LINKTYP_VERSAND]->getURL()}?shipping_calculator=0{/if}" rel="nofollow" class="shipment popup"}
                                    {lang key='shipping' section='basket'}{/link}
                            {/block}
                        {elseif isset($oSpezialseiten_arr[$smarty.const.LINKTYP_VERSAND])}
                            {block name='snippets-shipping-tax-info-zzgl-show-shipping-free-free-link'}
                                {link href="{$oSpezialseiten_arr[$smarty.const.LINKTYP_VERSAND]->getURL()}?shipping_calculator=0"
                                    rel="nofollow"
                                    class="shipment popup"
                                    data-toggle="tooltip"
                                    data-placement="left"
                                    title="{$taxdata.shippingFreeCountries}, {lang key='else'} {lang key='plus' section='basket'} {lang key='shipping' section='basket'}"
                                }
                                    {lang key='noShippingcostsTo'}
                                {/link}
                            {/block}
                        {/if}
                    {/block}
                {elseif isset($oSpezialseiten_arr[$smarty.const.LINKTYP_VERSAND])}
                    {block name='snippets-shipping-tax-info-zzgl-special-page'}
                        {lang key='plus' section='basket'}
                        {link href="{$oSpezialseiten_arr[$smarty.const.LINKTYP_VERSAND]->getURL()}?shipping_calculator=0"
                            rel="nofollow"
                            class="shipment popup"}
                            {lang key='shipping' section='basket'}
                        {/link}
                    {/block}
                {/if}
            {/block}
        {elseif $Einstellungen.global.global_versandhinweis === 'inkl'}
            {block name='snippets-shipping-tax-info-inkl'}
                , {lang key='incl' section='productDetails'} {link href="{if isset($oSpezialseiten_arr[$smarty.const.LINKTYP_VERSAND])}{$oSpezialseiten_arr[$smarty.const.LINKTYP_VERSAND]->getURL()}{/if}" rel="nofollow" class="shipment"}{lang key='shipping' section='basket'}{/link}
            {/block}
        {/if}
    {/block}

    {block name='snippets-shipping-tax-info-shipping-class'}
        {if !empty($taxdata.shippingClass) && $taxdata.shippingClass !== 'standard' && $Einstellungen.global.global_versandklasse_anzeigen === 'Y'}
            ({$taxdata.shippingClass})
        {/if}
    {/block}
    {/strip}
{/block}
 
  • Gefällt mir
Reaktionen: Fries

Ähnliche Themen