Мне нужно иметь ярлык «новый» на продуктах, которые были добавлены недавно. Я сделал это на extension/module/latest.tpl
, но я бы хотел, чтобы этот ярлык работал и на других страницах, например product/product.tpl
, product/category
и так далее…
Как я могу сделать это без покупки каких-либо расширений?
ОБНОВИТЬ
/controller/product/category.php
/*start added part*/
if(strtotime($result['date_added']) > (time() - (60*60*24*10) )){
//(note that 10 means ten days, to consider a product as a new product, you can change it based on your need.)
$is_new = true;
} else {
$is_new = false;
}
/*end added part*/$data['products'][] = array(
'is_new' => $is_new, //added code
'product_id' => $result['product_id'],
'thumb' => $image,
'name' => $result['name'],
'description' => utf8_substr(strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8')), 0, $this->config->get($this->config->get('config_theme') . '_product_description_length')) . '..',
'price' => $price,
'special' => $special,
'tax' => $tax,
'minimum' => $result['minimum'] > 0 ? $result['minimum'] : 1,
'rating' => $result['rating'],
'href' => $this->url->link('product/product', 'path=' . $this->request->get['path'] . '&product_id=' . $result['product_id'] . $url)
);
}
И это то, что я сделал в product / category.tpl
<?php foreach ($products as $product) { ?>
<div class="product-layout product-list col-xs-12">
<div class="product-thumb">
<div class="image"><a href="<?php echo $product['href']; ?>"><img src="<?php echo $product['thumb']; ?>" alt="<?php echo $product['name']; ?>" title="<?php echo $product['name']; ?>" class="img-responsive" /></a></div>
<div>
<div class="caption">
<h4><a href="<?php echo $product['href']; ?>"><?php echo $product['name']; ?></a></h4>
<?php if($product['is_new']){ ?><span>NEW</span><?php } ?>
<p><?php echo $product['description']; ?></p>
<?php if ($product['price']) { ?>
Вы можете сравнить продукт date_added
с текущим временем, вам нужно изменить два файла для категории:
Первый файл: catalog/controller/product/category.php
находить:
$data['products'][] = array(
добавьте перед этим:
if(strtotime($result['date_added']) > (time() - (60*60*24*10) )){
$is_new = true;
} else {
$is_new = false;
}
(Обратите внимание, что 10
означает десять дней, чтобы рассматривать продукт как новый продукт, вы можете изменить его в зависимости от ваших потребностей.)
добавить после этого:
'is_new' => $is_new,
Теперь этот раздел должен быть таким:
if(strtotime($result['date_added']) > (time() - (60*60*24*10) )){
$is_new = true;
} else {
$is_new = false;
}
$data['products'][] = array(
'is_new' => $is_new,
'product_id' => $result['product_id'],
'thumb' => $image,
'name' => $result['name'],
'description' => utf8_substr(strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8')), 0, $this->config->get($this->config->get('config_theme') . '_product_description_length')) . '..',
'price' => $price,
'special' => $special,
'tax' => $tax,
'minimum' => $result['minimum'] > 0 ? $result['minimum'] : 1,
'rating' => $result['rating'],
'href' => $this->url->link('product/product', 'path=' . $this->request->get['path'] . '&product_id=' . $result['product_id'] . $url),
);
Второй файл: catalog/view/theme/default/template/product/category.tpl
добавить этот код внутри foreach
цикл продуктов, например, до: <p><?php echo $product['description']; ?></p>
:
<?php if($product['is_new']){ ?><span class="new-product">NEW</span><?php } ?>
Я создал XML-скрипт для vqmod:
<?xml version="1.0" encoding="UTF-8"?>
<modification>
<id>Products New Label</id>
<version>2.x</version>
<vqmver required="true">2.6.0</vqmver>
<author>[email protected]</author>
<file name="catalog/controller/product/category.php">
<operation error="skip">
<search position="replace"><![CDATA[$data['products'][] = array(]]></search>
<add><![CDATA[
if(strtotime($result['date_added']) > (time() - (60*60*24*10) )){
$is_new = true;
} else {
$is_new = false;
}
$data['products'][] = array(
'is_new' => $is_new,
]]></add>
</operation>
</file>
<file name="catalog/view/theme/*/template/product/category.tpl">
<operation error="skip">
<search position="before"><![CDATA[<p><?php echo $product['description']; ?></p>]]></search>
<add><![CDATA[
<?php if($product['is_new']){ ?><span class="new-product">NEW</span><?php } ?>
]]></add>
</operation>
</file>
</modification>
Других решений пока нет …