こんにちは、このコードを使用して、対応する画像のカテゴリを表示しました。私は放火犯を使用して、src属性を見てPrestaShopの1.4.4カテゴリ画像がプレストーシャップに表示されていません
<ul>
{foreach from=$blockCategTree.children item=child name=blockCategTree}
{if $smarty.foreach.blockCategTree.last}
{include file="$branche_tpl_path" node=$child last='true'}
{else}
{include file="$branche_tpl_path" node=$child}
{/if}
<img src="{$link->getCatImageLink($category->link_rewrite, $category->id_image, 'category')}" alt="{$category->name|escape:'htmlall':'UTF-8'}" title="{$category->name|escape:'htmlall':'UTF-8'}" id="categoryImage" />
{/foreach}
</ul>
を使用しています、それはthis- /prestashop/img/c/-category.jpg
のようなパスを示しており、私はこのような希望します"/prestashop/img/c/6-category.jpg" ここ6は画像IDです。私は上記のようなURLを取得するコードをどのように使用できますか?