-
- jatwood

-
Total Posts: 3
Joined: 2013-03-06
|
Нашел я файл, где нужно подправить
domen.com/app/code/core/Mage/Bundle/Block/Catalog/Product/View/Type/Bundle/Option.php
и засунул туда уже <a href="#">. Был бы очень признателен, если бы кто то показал, как сформировать урл
public function getSelectionQtyTitlePrice($_selection, $includeContainer = true) { $price = $this->getProduct()->getPriceModel()->getSelectionPreFinalPrice($this->getProduct(), $_selection); $this->setFormatProduct($_selection); $priceTitle = $_selection->getSelectionQty()*1 . ' x <a href="#"> ' . $this->escapeHtml($_selection->getName());
$priceTitle .= ' </a> ' . ($includeContainer ? '<span class="price-notice">' : '') . '+' . $this->formatPriceString($price, $includeContainer) . ($includeContainer ? '</span>' : '');
return $priceTitle; }
|