Prestashop:徽标有问题,我在前端看不到

时间:2018-09-29 15:17:26

标签: php prestashop

网站:www.e-veloce.com

我看不到徽标。

我试图将header.tpl中的src更改为

<a href="{$base_dir}" title="{$shop_name|escape:'html':'UTF-8'}">
<img class="logo img-responsive" src="https://www.e-veloce.com/presta/img/logo.jpg" alt="{$shop_name|escape:'html':'UTF-8'}"{if $logo_image_width} width="{$logo_image_width}"{/if}{if $logo_image_height} height="{$logo_image_height}"{/if}/>
</a>

在那之后,我看不到徽标

logo.jpg文件在presta / img / logo.jpg中-看起来不错

有什么想法吗?

发生在我获得SSL认证之后。

3 个答案:

答案 0 :(得分:1)

您指出的路径不正确,只需删除/presta/。根据您的代码,这应该可以工作:

<a href="{$base_dir}" title="{$shop_name|escape:'html':'UTF-8'}">
    <img class="logo img-responsive" src="https://www.e-veloce.com/img/logo.jpg" alt="{$shop_name|escape:'html':'UTF-8'}"{if $logo_image_width} width="{$logo_image_width}"{/if}{if $logo_image_height} height="{$logo_image_height}"{/if}/>
</a>

答案 1 :(得分:1)

使用此:

src="{$base_dir_ssl}img/logo.jpg"; // https://www.e-veloce.com/img/logo.jpg
src="{$base_dir_ssl}presta/img/logo.jpg"; // https://www.e-veloce.com/presta/img/logo.jpg

答案 2 :(得分:0)

我找到了解决方案。您需要这样做:

<img class="logo img-responsive" src="img/logo.jpg" alt="Veloce - Chemia od nas, dla Ciebie" width="367" height="54">

所以我只用https://剪切src到img / logo.jpg。

问题很普遍,我希望解决方案将来能对某人有所帮助