esermeric Posted March 20, 2017 Share Posted March 20, 2017 (edited) Merhaba arkadaşlar, ürünlerin üzerinde marka resminin gözükmesini istiyorum nasıl yapabilirim. Yardımcı olursanız sevinirim. www.fixparca.com Edited March 20, 2017 by esermeric (see edit history) Link to comment Share on other sites More sharing options...
esermeric Posted March 22, 2017 Author Share Posted March 22, 2017 Yardımcı olabilecek kimse yok mu?? Link to comment Share on other sites More sharing options...
Şahin YILDIZ Posted March 22, 2017 Share Posted March 22, 2017 Kodlama yeteneğiniz var ise aşağıdaki google arama linki ile istediğiniz kodlara ulaşabilirsiniz... https://www.google.com.tr/webhp?sourceid=chrome-instant&rlz=1C1NHXL_trTR712TR712&ion=1&espv=2&ie=UTF-8#q=prestashop+display+manufacturer+product+list&* Link to comment Share on other sites More sharing options...
esermeric Posted March 23, 2017 Author Share Posted March 23, 2017 Marka logolarının gözükmesini sağladım fakat resimde gözüktüğü gibi logolar kaymış vaziyette. {* * 2007-2015 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA <[email protected]> * @copyright 2007-2015 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} {if isset($products) && $products} {if !isset($product_style)} {$product_style = Configuration::get('PTS_CP_PRODUCT_STYLE')} {/if} {*define numbers of product per line in other page for desktop*} {if Configuration::get('PTS_CP_PRODUCTS_ITEMROW')} {assign var='nbItemsPerLine' value=Configuration::get('PTS_CP_PRODUCTS_ITEMROW')} {assign var='nbItemsPerLineTablet' value=Configuration::get('PTS_CP_PRODUCTS_ITEMROW')} {else} {assign var='nbItemsPerLine' value=3} {assign var='nbItemsPerLineTablet' value=3} {/if} {assign var='nbItemsPerLineMobile' value=2} {*define numbers of product per line in other page for tablet*} {assign var='nbLi' value=$products|@count} {math equation="nbLi/nbItemsPerLine" nbLi=$nbLi nbItemsPerLine=$nbItemsPerLine assign=nbLines} {math equation="nbLi/nbItemsPerLineTablet" nbLi=$nbLi nbItemsPerLineTablet=$nbItemsPerLineTablet assign=nbLinesTablet} {math equation="nbLi/nbItemsPerLine" nbLi=12 nbItemsPerLine=$nbItemsPerLine assign=colLap} {math equation="nbLi/nbItemsPerLine" nbLi=12 nbItemsPerLine=$nbItemsPerLineTablet assign=colTablet} {math equation="nbLi/nbItemsPerLine" nbLi=12 nbItemsPerLine=$nbItemsPerLineMobile assign=colMobile} <!-- Products list --> <script type="text/javascript"> var colLap = {$colLap}; var colTablet = {$colTablet}; var colMobile = {$colMobile}; </script> {if $product.unit_price_ratio > 0} {math equation="pprice / punit_price" pprice=$product.price punit_price=$product.unit_price_ratio assign=unit_price} <span class="unit_price">{convertPrice price=$unit_price} / {$product.unity|escape:'html':'UTF-8'}</span> {/if} <ul{if isset($id) && $id} id="{$id}"{/if} class="list-unstyled row product_list products-block grid clearfix {if isset($class) && $class} {$class}{/if} {if isset($product_style) && !empty($product_style)}{$product_style}{else} style1{/if}"> {foreach from=$products item=product name=products} <!--module manufacturerLogo---> {*hook h="DisplayILabsManufacturerLogo" product=$products type=product*} {assign var=logos value=(int)Configuration::get('manufacturerlogo_name')} {if isset($logos) && $logos==1} {Manufacturer::getNameById($product.id_manufacturer)} {/if} <a href="{$base_dir}index.php?id_manufacturer={$product.id_manufacturer}&controller=manufacturer&id_lang={Tools::getValue('id_lang')}"> <img src="{$base_dir}img/m/{$product.id_manufacturer}-small_default.jpg" alt="{Manufacturer::getNameById($product.id_manufacturer)}" title="{Manufacturer::getNameById($product.id_manufacturer)}"> </a> <!--end module---> {math equation="(total%perLine)" total=$smarty.foreach.products.total perLine=$nbItemsPerLine assign=totModulo} {math equation="(total%perLineT)" total=$smarty.foreach.products.total perLineT=$nbItemsPerLineTablet assign=totModuloTablet} {math equation="(total%perLineT)" total=$smarty.foreach.products.total perLineT=$nbItemsPerLineMobile assign=totModuloMobile} {if $totModulo == 0}{assign var='totModulo' value=$nbItemsPerLine}{/if} {if $totModuloTablet == 0}{assign var='totModuloTablet' value=$nbItemsPerLineTablet}{/if} {if $totModuloMobile == 0}{assign var='totModuloMobile' value=$nbItemsPerLineMobile}{/if} <li class="owl-wrapper col-xs-cus-12 col-xs-{$colMobile} col-sm-{$colTablet} col-md-{$colLap} col-lg-{$colLap}{if $smarty.foreach.products.iteration%$nbItemsPerLine == 1} first-in-line{/if}{if $smarty.foreach.products.iteration%$nbItemsPerLineTablet == 1} first-item-of-tablet-line{/if}{if $smarty.foreach.products.iteration%$nbItemsPerLineMobile == 1} first-item-of-mobile-line{/if}" data-col-lg="{$colLap}" data-col-md="{$colLap}" data-col-sm="{$colTablet}" data-col-xs="{$colMobile}"> <div class="item clearfix"> {if isset($product_style) && !empty($product_style)} {include file="$tpl_dir./sub/product/{$product_style}.tpl" product=$product class=''} {else} {include file="$tpl_dir./sub/product/style1.tpl" product=$product class=''} {/if} </div> </li> {/foreach} </ul> {addJsDefL name=min_item}{l s='Please select at least one product' js=1}{/addJsDefL} {addJsDefL name=max_item}{l s='You cannot add more than %d product(s) to the product comparison' sprintf=$comparator_max_item js=1}{/addJsDefL} {addJsDef comparator_max_item=$comparator_max_item} {addJsDef comparedProductsIds=$compared_products} {/if} Link to comment Share on other sites More sharing options...
esermeric Posted March 23, 2017 Author Share Posted March 23, 2017 En sonunda logoları yerlerine düzgün oturtmayı başardım. Şu anda logosu olmayan ürünlerde soru işareti gözüküyor. Soru işaretini nasıl kaldırabilirim yani sadece logosu yüklü olanlarda resim gözüksün diğer ürünlerde Sadece üretici metin olarak yazsın. 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