นำโลโก้ผู้ผลิตมาใส่ที่หน้าสินค้าใน prestashop

สินค้าของเราบางครั้งมีการกำหนดผู้ผลิต (manufacturer) ให้กับสินค้าด้วย เช่นเราขาย ipod ผู้ผลิตก็คือ apple บางคนก็คงอยากให้เวลาแสดงข้อมูลของสินค้ามีการแสดงโลโก้ผู้ผลิตสินค้านั่นๆด้วย วิธีการทำก็ไม่ยากครับ

ให้เราไปแก้ไขไฟล์ product.tpl ใน theme ที่เราใช้งานจากนั้นหาโค็ดดังนี้

<!-- left infos-->
    <div id="pb-left-column">
        {if $product->description_short OR $packItems|@count > 0}
        <div id="short_description_block">
            {if $product->description_short}
                <div id="short_description_content" class="rte align_justify">{$product->description_short}</div>
            {/if}
            {if $product->description}
            <p class="buttons_bottom_block"><a href="javascript:{ldelim}{rdelim}" class="button">{l s='More details'}</a></p>
            {/if}
            {if $packItems|@count > 0}
                <h3>{l s='Pack content'}</h3>
                {foreach from=$packItems item=packItem}
                    <div class="pack_content">
                        {$packItem.pack_quantity} x <a href="{$link->getProductLink($packItem.id_product, $packItem.link_rewrite, $packItem.category)}">{$packItem.name|escape:'htmlall':'UTF-8'}</a>
                        <p>{$packItem.description_short}</p>
                    </div>
                {/foreach}
            {/if}
        </div>
        {/if}

และให้เราเพิ่มโค็ดด้านล่างใส่เพิ่มต่อจากบรรทัดของโค็ดด้านบน

<div class="product_manufacturer">
<a href="manufacturer.php?id_manufacturer={$product_manufacturer->id_manufacturer}" title="{l s='See all products...'}"><img src="img/m/{$product_manufacturer->id_manufacturer}-medium.jpg" /></a>
</div>

จากนั้นบันทึกแล้วเราก็จได้ดังรูปครับ

thank : http://prestaportal.com/thread-437.html

บทความแนะนำ
    blog comments powered by Disqus