如何在prestashop 1.5.x中获取附件产品的链接?

时间:2013-04-14 07:27:31

标签: php prestashop

附件是一张图片,我想在产品页面上显示。如何获得此图片的src?

<a id="single_image" href="{$img_dir}tabel_marimi/tabel_marimi.jpg"><img style="width:25px;height:20px;" src="{$img_dir}tabel_marimi/table_mini.jpg" alt="" /></a>

src必须链接到产品附件,而不是所有产品的通用链接

1 个答案:

答案 0 :(得分:0)

我知道这是一个老问题,但如果有人遇到与Prestashop 1.6.x相同的问题,这就是它的完成方式:

{if $attachments}
    {foreach from=$attachments item=attachment}
        {$attachment.file_name} // This is the picture name
    {/foreach}
{/if}

只需将src标记的img指向该路线,然后在最后添加$attachment.file_name

您可以通过制作$attachment来查看{print_r($attachment)}的所有属性。