Onur AYDIN Posted August 16, 2013 Share Posted August 16, 2013 merhaba, ps 1.5.4.1 kullanıyorum. bazı kategorideki ürünlerimizin belli bir fiyatı yok. onun için bu kategorideki ürünlerin sayfasında 50 TL yerine "Fiyat Sorunuz" yazsın istiyorum. bunu nasıl yapabilirim? Link to comment Share on other sites More sharing options...
MEG Venture Posted August 20, 2013 Share Posted August 20, 2013 Temanızın product.tpl dosyasını buraya iliştirebilir misiniz? themes>your_theme>product.tpl olması lazım. Link to comment Share on other sites More sharing options...
bera_ramazan Posted August 21, 2013 Share Posted August 21, 2013 Temanızın product-list.tpl, product.tpl ve homefeatured.tpl den price kısımlarını şu şekilde düzenleyin <a href="{$link->getPageLink('contact', true)}" title="{l s='Fiyati Sorun'}">{l s='Contact'}</a> 1 Link to comment Share on other sites More sharing options...
Onur AYDIN Posted August 22, 2013 Author Share Posted August 22, 2013 product-list.tpl ve product.tpl dosyalarını ekledim. ben ilgili satrıları bulamadım bu dosyalarda. birde ben tüm siteyi etkileyecek birşey değil, sadece belirleyeceğim kategorilerdeki ürünlerde bunu istiyorum. dosya.zip Link to comment Share on other sites More sharing options...
MEG Venture Posted August 22, 2013 Share Posted August 22, 2013 Merhaba Şöyle yapalım mı? fiyatı 0 olan ürünler yerine "Fiyat Sorunuz" yazsın. Link to comment Share on other sites More sharing options...
bera_ramazan Posted August 22, 2013 Share Posted August 22, 2013 (edited) Yaptığım Kod: {if $product.price >0} .... {else} buraya yazamasını istediğiniz yazıyı yazıyorsunuz {/if} dosya.zip Edited August 22, 2013 by www.gozdesm.com (see edit history) 1 Link to comment Share on other sites More sharing options...
safa Posted August 22, 2013 Share Posted August 22, 2013 Yaptığım Kod: {if $product.price >0} .... {else} buraya yazamasını istediğiniz yazıyı yazıyorsunuz {/if} aynı şekilde kategorilerin id leri alınarakta yapılabilir Link to comment Share on other sites More sharing options...
Onur AYDIN Posted August 22, 2013 Author Share Posted August 22, 2013 ben dediğiniz kodları bulamıyorum. daha doğrusu bulur gibi oluyorum emin olamıyorum rica etsem ilgili dosyayı değiştirip ek olarak eklermisiniz. test sitesine yükleyeyim. teşekkürler hepinize. Link to comment Share on other sites More sharing options...
bera_ramazan Posted August 24, 2013 Share Posted August 24, 2013 ben dediğiniz kodları bulamıyorum. daha doğrusu bulur gibi oluyorum emin olamıyorum rica etsem ilgili dosyayı değiştirip ek olarak eklermisiniz. test sitesine yükleyeyim. teşekkürler hepinize. ben zaten düzenleyip te yükledim fiyatı sorun olması için ürünün fiyatının 0 olması gerekir. ama eğer öyle değilde hep sorun olsun istiyorsanız. product-list.tpl 52. satırda {if isset($product.show_price) && $product.show_price && !isset($restricted_country_mode)}<span class="price" style="display: inline;">{if !$priceDisplay}{if $product.price >0}{convertPrice price=$product.price}{else}<a href="{$link->getPageLink('contact', true)}" title="{l s='Contact'}">{l s='Ask for price'}</a>{/if}{else}{convertPrice price=$product.price_tax_exc}{/if}</span><br />{/if} bulunan kodu şu şekide değiştirin {if isset($product.show_price) && $product.show_price && !isset($restricted_country_mode)}<span class="price" style="display: inline;"><a href="{$link->getPageLink('contact', true)}" title="{l s='Ask for price'}">{l s='Ask for price'}</a></span><br />{/if} product.tpl de ise 385. satırda bulunan <p class="our_price_display"> {if $priceDisplay >= 0 && $priceDisplay <= 2} {if $productPrice >0} <span id="our_price_display">{convertPrice price=$productPrice}</span> <!--{if $tax_enabled && ((isset($display_tax_label) && $display_tax_label == 1) OR !isset($display_tax_label))} {if $priceDisplay == 1}{l s='tax excl.'}{else}{l s='tax incl.'}{/if} {/if}--> {else} <a href="{$link->getPageLink('contact', true)}" title="{l s='Contact'}">{l s='Ask for price'}</a> {/if} {/if} </p> kodu bu şekilde dğiştirin <p class="our_price_display"> {if $priceDisplay >= 0 && $priceDisplay <= 2} <a href="{$link->getPageLink('contact', true)}" title="{l s='Ask for price'}">{l s='Ask for price'}</a> {/if} </p> 2 Link to comment Share on other sites More sharing options...
SametBCKC Posted June 13, 2014 Share Posted June 13, 2014 iyi günler arkadaşlar Prestashop 1.6 kullanıyorum benim ürün fiyatlarımın hepsi sabit. Örn;Şeker 10.00 Euro Çay 20.00 TL Tuz 15.00 USD Bu şekilde elle döviz girip fiyatını belirlemek istiyorum. pshop'un sunmuş olduğu kur sistemi fiyatlarımın belirsizleşmesine sebep oluyor. ve kuru merkez bankasının efektif satışından kullanıyoruz o yüzden döviz olarak yazmamız bizim için daha kullanışlı bunu nasıl sağlayabiliriz? Şimdiden teşekkür ederim. Link to comment Share on other sites More sharing options...
kemalettinsari Posted July 7, 2015 Share Posted July 7, 2015 Merhaba bu kodlar sadece 1.5.4.1 surumunde mi calisiyor yoksa diger surumlerde de ornegin 1.6.x.x te de kullanabilirmiyiz? Link to comment Share on other sites More sharing options...
gokturk Posted January 22, 2018 Share Posted January 22, 2018 Aynı soruyu bende merak ediyorum arkadaşlar, fiyatı sıfır olan ürünlere Fiyat Sorunuz yapmak için gereken kodu 1.6.x içinde biri tarif etse süper olur. Link to comment Share on other sites More sharing options...
bera_ramazan Posted February 7, 2018 Share Posted February 7, 2018 On 23.01.2018 at 12:12 AM, gokturk said: Aynı soruyu bende merak ediyorum arkadaşlar, fiyatı sıfır olan ürünlere Fiyat Sorunuz yapmak için gereken kodu 1.6.x içinde biri tarif etse süper olur. mantığı aynı sadece $poduct.price değil $productPrice yapmalısın 1 Link to comment Share on other sites More sharing options...
hewal02 Posted June 6, 2019 Share Posted June 6, 2019 Merhabalar En son surumu kullaniyorum. Bunu nasil yapariz? Link to comment Share on other sites More sharing options...
gokturk Posted September 9, 2020 Share Posted September 9, 2020 (edited) On 2/8/2018 at 12:11 AM, bera_ramazan said: mantığı aynı sadece $poduct.price değil $productPrice yapmalısın Üstad benim temada biraz çıkamadım işin içinden, şimdi tekrar aklıma gelince deneyeyim dedim. Price kodlarım şu şekilde bir yol gösterirseniz sevinirim. Fiyat Sorunuz Yazsın ama tıklayınca o ürünün içeriğini açsın, iletişim sayfasına gitsin istemiyorum. product-list.tpl product.tpl Edited September 9, 2020 by gokturk (see edit history) Link to comment Share on other sites More sharing options...
lonely2134 Posted September 25, 2020 Share Posted September 25, 2020 On 8/22/2013 at 6:36 PM, bera_ramazan said: Yaptığım Kod: {if $product.price >0} .... {else} buraya yazamasını istediğiniz yazıyı yazıyorsunuz {/if} dosya.zip 10.23 kB · 18 downloads Bu çalışıyor mu acaba? 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