当人们点击“添加到购物车”按钮时,我希望我的 meadowmart 2 商店将他们引导至联系表格或外部链接。我希望能够更改此按钮后面的链接。这怎么可能?
到目前为止,我只在产品页面模板(components/com_virtuemart/views/productdetails/tmpl/default.php)中找到了调用模板的位置:
<?php
// Add To Cart Button
// if (!empty($this->product->prices) and !empty($this->product->images[0]) and $this->product->images[0]->file_is_downloadable==0 ) {
// if (!VmConfig::get('use_as_catalog', 0) and !empty($this->product->prices['salesPrice'])) {
echo $this->loadTemplate('addtocart');
// } // Add To Cart Button END
?>
任何帮助深表感谢!
谢谢!