Kulebyaka Posted March 17, 2014 Share Posted March 17, 2014 (edited) В демо-шаблоне prestashop 1.6 все кликабельные картинки ведут на сайт prestashop/ Иду в админку>Модули>Theme configurator v0.3 - by PrestaShop> Редактирую ссылку к банерам>сохраняю - фокус не удался. Восстановлены ссылки на prestashop. Как заставить сохранять изменения? Edited March 17, 2014 by Kulebyaka (see edit history) Link to comment Share on other sites More sharing options...
marik777tir Posted March 19, 2014 Share Posted March 19, 2014 видимо пока ошибка в самой системе, может ее устраняют, но я нашла временное решение.на хостинге идете в корень сайта/modules/themeconfigurator/views/templates/hook и исправляете саму ссылку в хуке , в файле hook.tpl находите красным выделяю и вставляете туда свою ссылку. у меня сработало таким способом. {if $page_name =='index'} {if isset($htmlitems) && $htmlitems} <div id="htmlcontent_{$hook|escape:'htmlall':'UTF-8'}"> <ul class="htmlcontent-home clearfix row"> {foreach name=items from=$htmlitems item=hItem} <li class="htmlcontent-item-{$smarty.foreach.items.iteration|escape:'htmlall':'UTF-8'} col-xs-4"> {if $hItem.url} <a href="" class="item-link"{if $hItem.target == 1} onclick="return !window.open(this.href);"{/if} title="{$hItem.title|escape:'htmlall':'UTF-8'}"> {/if} {if $hItem.image} <img src="{$link->getMediaLink("`$module_dir`img/`$hItem.image`")}" class="item-img" title="{$hItem.title|escape:'htmlall':'UTF-8'}" alt="{$hItem.title|escape:'htmlall':'UTF-8'}" width="{if $hItem.image_w}{$hItem.image_w|intval}{else}100%{/if}" height="{if $hItem.image_h}{$hItem.image_h|intval}{else}100%{/if}"/> {/if}.............далее Link to comment Share on other sites More sharing options...
marik777tir Posted March 19, 2014 Share Posted March 19, 2014 видимо пока ошибка в самой системе, может ее устраняют, но я нашла временное решение. на хостинге идете в корень сайта/modules/themeconfigurator/views/templates/hook и исправляете саму ссылку в хуке , в файле hook.tpl находите красным выделяю и вставляете туда свою ссылку. у меня сработало таким способом. {if $page_name =='index'} {if isset($htmlitems) && $htmlitems} <div id="htmlcontent_{$hook|escape:'htmlall':'UTF-8'}"> <ul class="htmlcontent-home clearfix row"> {foreach name=items from=$htmlitems item=hItem} <li class="htmlcontent-item-{$smarty.foreach.items.iteration|escape:'htmlall':'UTF-8'} col-xs-4"> {if $hItem.url} <a href="вашассылка" class="item-link"{if $hItem.target == 1} onclick="return !window.open(this.href);"{/if} title="{$hItem.title|escape:'htmlall':'UTF-8'}"> {/if} {if $hItem.image} <img src="{$link->getMediaLink("`$module_dir`img/`$hItem.image`")}" class="item-img" title="{$hItem.title|escape:'htmlall':'UTF-8'}" alt="{$hItem.title|escape:'htmlall':'UTF-8'}" width="{if $hItem.image_w}{$hItem.image_w|intval}{else}100%{/if}" height="{if $hItem.image_h}{$hItem.image_h|intval}{else}100%{/if}"/> {/if}.............далее Link to comment Share on other sites More sharing options...
Recommended Posts