Virtuemart - 将“添加到购物车”更改为链接到其他地方

时间:2013-10-08 17:04:18

标签: php joomla2.5 virtuemart

我希望我的virtuemart 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

    ?>

非常感谢任何帮助!

谢谢!

1 个答案:

答案 0 :(得分:0)

(components / com_virtuemart / views / productdetails / tmpl / default_addtocart.php)是PHP寻找的。

在第123行及其周围出现以下行:

<span class="addtocart-button">
    <?php echo shopFunctionsF::getAddToCartButton ($this->product->orderable);
      // Display the add to cart button END  ?>
</span>

将PHP回显更改为:

<a href="yourwebsite.com/thelinkyouwanthere.php">Buy Product</a>

或类似的东西。

<span class="addtocart-button">
    <a href="yourwebsite.com/thelinkyouwanthere.php">Buy Product</a>
</span>

希望这有帮助。