Я пытаюсь создать кнопку «Предложить свою цену», которая открывает мою пользовательскую страницу «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}