AlexLSL
Постоялец
- Регистрация
- 23 Фев 2017
- Сообщения
- 81
- Реакции
- 53
Может это, настройки Престы: Настройки - ОбщееПожалуйста подскажите как исправить данный косяк?
Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
Может это, настройки Престы: Настройки - ОбщееПожалуйста подскажите как исправить данный косяк?
А можно подробнее что это за модуль?Отзывы о товаре 3.6.1
Я так понимаю стандартный бесплатный, шёл вместе с престой, только он был не установленный.А можно подробнее что это за модуль?
. Такая же проблема, временно решил отключением модуля Товары в той же категории v1.8.1Он не корректно подхватывает название и описание товара в форму
Отключение или удаление, он у меня и так отключен.. Такая же проблема, временно решил отключением модуля Товары в той же категории v1.8.1
Достаточно отключения. Как я понял, модуль Отзывы о товаре 3.6.1, берет наименование из последнего объявленного на странице товара. В моем случае это был последний товар из модуля Товары в той же категории v1.8.1.Отключение или удаление, он у меня и так откоючен.
<div class="product clearfix col-xs-12 col-sm-6">
<img src="{$productcomment_cover_image}" height=100% width=100% alt="{$product->name|escape:'html':'UTF-8'}" />
<div class="product_desc">
<p class="product_name">
<strong>{if isset($product->name)}{$product->name}{else}{$product.name}{/if}</strong>
</p>
{if isset($product->description_short)}{$product->description_short}{else}{$product.description_short}{/if}
</div>
</div>
<strong>{if isset($product->name)}{$product->name}{else}{$product.name}{/if}</strong>
<strong>{if isset($product->name)}{$product->name}{else}{123}{/if}</strong>
<div class="product clearfix col-xs-12 col-sm-6">
<img src="{$productcomment_cover_image}" height=100% width=100% alt="{$product->name|escape:'html':'UTF-8'}" />
<div class="product_desc">
<p class="product_name">
<strong>{if isset($product->name)}{$product->name}{else}{123}{/if}</strong>
</p>
{if isset($product->description_short)}{$product->description_short}{else}{$product.description_short}{/if}
</div>
</div>
$this->context->smarty->assign(array(
'logged' => $this->context->customer->isLogged(true),
'action_url' => '',
'product' => $product,
'comments' => ProductComment::getByProduct((int) Tools::getValue('id_product'), 1, null, $this->context->cookie->id_customer),
'criterions' => ProductCommentCriterion::getByProduct((int) Tools::getValue('id_product'), $this->context->language->id),
'averages' => $averages,
'product_comment_path' => $this->_path,
'averageTotal' => $averageTotal,
'allow_guests' => (int) Configuration::get('PRODUCT_COMMENTS_ALLOW_GUESTS'),
'too_early' => ($customerComment && (strtotime($customerComment['date_add']) + Configuration::get('PRODUCT_COMMENTS_MINIMAL_TIME')) > time()),
'delay' => Configuration::get('PRODUCT_COMMENTS_MINIMAL_TIME'),
'id_product_comment_form' => (int) Tools::getValue('id_product'),
'secure_key' => $this->secure_key,
'productcomment_cover' => (int) Tools::getValue('id_product').'-'.(int) $image['id_image'],
'productcomment_cover_image' => $cover_image,
'mediumSize' => Image::getSize(ImageType::getFormatedName('medium')),
'nbComments' => (int) ProductComment::getCommentNumber((int) Tools::getValue('id_product')),
'productcomments_controller_url' => $this->context->link->getModuleLink('productcomments'),
'productcomments_url_rewriting_activated' => Configuration::get('PS_REWRITING_SETTINGS', 0),
'moderation_active' => (int) Configuration::get('PRODUCT_COMMENTS_MODERATE'),
));
Разобрался: объявил переменныеОн не корректно подхватывает название и описание товара в форму(берет с другого случайного товара)
$this->context->smarty->assign(array(
'logged' => $this->context->customer->isLogged(true),
'action_url' => '',
'product' => $product,
'comments' => ProductComment::getByProduct((int) Tools::getValue('id_product'), 1, null, $this->context->cookie->id_customer),
'criterions' => ProductCommentCriterion::getByProduct((int) Tools::getValue('id_product'), $this->context->language->id),
'averages' => $averages,
'product_comment_path' => $this->_path,
'averageTotal' => $averageTotal,
'allow_guests' => (int) Configuration::get('PRODUCT_COMMENTS_ALLOW_GUESTS'),
'too_early' => ($customerComment && (strtotime($customerComment['date_add']) + Configuration::get('PRODUCT_COMMENTS_MINIMAL_TIME')) > time()),
'delay' => Configuration::get('PRODUCT_COMMENTS_MINIMAL_TIME'),
'id_product_comment_form' => (int) Tools::getValue('id_product'),
'secure_key' => $this->secure_key,
'productcomment_cover' => (int) Tools::getValue('id_product').'-'.(int) $image['id_image'],
'productcomment_cover_image' => $cover_image,
'mediumSize' => Image::getSize(ImageType::getFormatedName('medium')),
'nbComments' => (int) ProductComment::getCommentNumber((int) Tools::getValue('id_product')),
'productcomments_controller_url' => $this->context->link->getModuleLink('productcomments'),
'productcomments_url_rewriting_activated' => Configuration::get('PS_REWRITING_SETTINGS', 0),
'moderation_active' => (int) Configuration::get('PRODUCT_COMMENTS_MODERATE'),
'product_name' =>$product->name,
'product_description_short' =>$product->description_short,
{if isset($product) && $product}
<div class="product clearfix col-xs-12 col-sm-6">
<img src="{$productcomment_cover_image}" height=100% width=100% alt="{$product->name|escape:'html':'UTF-8'}" />
<div class="product_desc">
<p class="product_name">
<strong>{if isset($product->name)}{$product->name}{else}{$product_name}{/if}</strong>
</p>
{if isset($product->description_short)}{$product->description_short}{else}{$product_description_short}{/if}
</div>
</div>
{/if}