【发布时间】:2018-09-15 18:10:36
【问题描述】:
我正在尝试制作一个“提供您的价格”按钮来打开我的自定义页面'offer-price.tpl'。问题是如何通过单击按钮 (product-offer-price.tpl) 打开我的自定义报价页面? PS 1.7版
OfferPriceController.php:
<?php
class OfferPriceControllerCore extends FrontController
{
public $php_self = 'offerprice';
public $ssl = true;
public function initContent()
{
parent::initContent();
$this->setTemplate('offer-price');
}
}
offer-price.tpl:
{extends file=$layout}
product-offer-price.tpl:
<div class="offer">
<button
class="btn btn-primary offer-price"
data-button-action="offer-price"
type="submit">
{l s='Offer your price'}
</button>
</div>
product.tpl:
{block name='offer_price'}
{include file='catalog/_partials/product-offer-price.tpl'}
{/block}
【问题讨论】:
标签: prestashop