-1

当人们点击“添加到购物车”按钮时,我希望我的 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

    ?>

任何帮助深表感谢!

谢谢!

4

1 回答 1

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>

希望这可以帮助。

于 2013-10-21T12:30:46.267 回答