robertrorshih Posted February 12, 2018 Share Posted February 12, 2018 Добрый день! PS 1.7 Имеется два вопроса: 1. Собственно первый, как сделать кликабельным номер телефона 2. Где можно поменять слова для шаблона информация о магазине, хочу заменить слова "Позвоните нам" и "Факс" на свои. Спасибо, за подсказки. Link to comment Share on other sites More sharing options...
Kerm Posted February 12, 2018 Share Posted February 12, 2018 <a href="tel:+74957777777">+7 495 777 77 77</a> Link to comment Share on other sites More sharing options...
robertrorshih Posted February 12, 2018 Author Share Posted February 12, 2018 10 minutes ago, Kerm said: <a href="tel:+74957777777">+7 495 777 77 77</a> Спасибо, вопрос куда это вставить? Link to comment Share on other sites More sharing options...
robertrorshih Posted February 13, 2018 Author Share Posted February 13, 2018 Нет идей? Link to comment Share on other sites More sharing options...
savvato Posted February 13, 2018 Share Posted February 13, 2018 1)В шаблоне, где этот номер выведен 2)В Локализация->Переводы Link to comment Share on other sites More sharing options...
robertrorshih Posted February 16, 2018 Author Share Posted February 16, 2018 Спасибо за наводки, Можно подробнее про шаблон, так как не понял про что Вы. Нужно код править? Link to comment Share on other sites More sharing options...
stroy-st.ru Posted December 10, 2018 Share Posted December 10, 2018 (edited) Если кому-то еще будет нужно. PrestaShop 1.6 Для того, что бы номер телефона в шапке сайта стал кликабельным, нужно: В файл : ваш домен/themes/ваша тема/modules/blockcontact/nav.tpl <div id="contact-link" {if isset($is_logged) && $is_logged} class="is_logged"{/if}> <a href="{$link->getPageLink('contact', true)|escape:'html':'UTF-8'}" title="{l s='Contact us' mod='blockcontact'}">{l s='Contact us' mod='blockcontact'}</a> </div> {if $telnumber} <span class="shop-phone{if isset($is_logged) && $is_logged} is_logged{/if}"> <i class="icon-phone"></i>{l s='Call us now:' mod='blockcontact'} <strong>{$telnumber}</strong> </span> {/if} добавить тег tel <i class="icon-phone"></i>{l s='Call us now:' mod='blockcontact'} <a href="tel:{$telnumber}"> <strong>{$telnumber}</strong> </a> Edited December 10, 2018 by stroy-st.ru (see edit history) 2 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now