You may pay someone to create your store, or you visit our seminar and become a professional yourself with the silver certification
$tax = shopFunctionsF::getTaxNameWithValue(vmText::_ ('MY_NAME_FOR_TAX'),$taxd['calc_value']);
//if($vmUserTable->user_is_vendor){
// $attrib['unpublished'] = 1;
//}
Quote from: andrai2 on October 24, 2024, 21:31:21 PMSo at curent state i think it should be marketed a "product for professionals" who wants to invest some time not drag and drop.
QuoteWhere does the shopping cart module come from?\components\com_virtuemart\views\cart\tmpl\default_pricelist.php
<?php if (VmConfig::get ('show_tax')) {
$tax = vmText::_ ('COM_VIRTUEMART_CART_SUBTOTAL_TAX_AMOUNT');
if(!empty($this->cart->cartData['VatTax'])){
if(count($this->cart->cartData['VatTax']) < 2) {
reset($this->cart->cartData['VatTax']);
$taxd = current($this->cart->cartData['VatTax']);
$tax = shopFunctionsF::getTaxNameWithValue(vmText::_($taxd['calc_name']),$taxd['calc_value']);
}
}
?>
<th class="vm-cart-item-tax" ><?php echo "<span class='priceColor2'>" . $tax . '</span>' ?></th>
The word VAT is displayed in the cart as 'calc_name' according to the VM_VALUE_ADDED_TAX language.<td>
<span class="uk-hidden@m uk-margin-small-right md-color-grey-500"
uk-tooltip="<?php echo vmText::_('COM_VIRTUEMART_NAME') ?>"
uk-icon="icon: pencil"></span>
<a href="<?php echo $editlink; ?>"><?php echo vmText::_($row->calc_name); ?></a>
</td>
But the word VAT is not displayed in Product pricing (Admin panel)<td>
<span uk-tooltip="<?php echo vmText::_('COM_VIRTUEMART_RULES_EFFECTING_TIP') ?>">
<?php echo vmText::_('COM_VIRTUEMART_TAX_EFFECTING') . '<br />' . $this->taxRules ?>
</span>
</td>
Here it is output via taxRules, but not as VAT but as VM_VALUE_ADDED_TAX.Page created in 0.115 seconds with 13 queries.