So habe es eben gefunden für VM 1.1.1
In der ps_product.php Zeile 2088
Code:
if( !$hide_tax && $auth["show_price_including_tax"] == 1 && VM_PRICE_SHOW_INCLUDINGTAX) {
$text_including_tax = $VM_LANG->_('PHPSHOP_INCLUDING_TAX');
eval ("\$text_including_tax = \"$text_including_tax\";");
}}
Erweitern nach
Code:
if( !$hide_tax && $auth["show_price_including_tax"] == 1 && VM_PRICE_SHOW_INCLUDINGTAX) {
$text_including_tax = $VM_LANG->_('PHPSHOP_INCLUDING_TAX');
eval ("\$text_including_tax = \"$text_including_tax\";");
}}
else { $text_including_tax = "(exkl. MwSt.)";
eval ("\$text_including_tax = \"$text_including_tax\";"); }
Und dann gibt es ja noch Probleme mit den unterschiedlichen Kundengruppen, dazu https://dev.virtuemart.net/cb/issue/2014
Lesezeichen