Jump to content

pelingier

Members
  • Posts

    10
  • Joined

  • Last visited

pelingier's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. I checked and the theme that i am using is only a other css file above the default al the other files are not changed.
  2. Yes you are right i used the theme from http://www.prestasho...t-or-grid-view/ and adjust the colors & made the theme from 3 colums to 2 colums
  3. Hi Sorry to start a new topic but i didn't find a answer in the other topic's. I have installed prestashop PrestaShop™ 1.5.4.0 . And i want to apply a catalogue price rules that gives 50% of reduction to al product. i made the rules but the price that prestashop is showing in the product list is not the correct price for example : price = 90 euro -> reduction = 50% normally new price = 45 euro's prestashop shows old price 90 euro's and new price = 67,5 euro's ?? But wen i add the product to my cart it shows the correct price 45 euro's does anyone know the solution to this problem? the site is http://www.aliceenmaurice.be/webshop Thx in advance
  4. Hey is is posible to also show the subcategorie in the result box from the search module for example: wen i type lays snoepartikelen > chips > lays ... Where snoepartikelen is the parent and chips is the subcategorie Now i only get snoepartikelen > lays ... Thx.
  5. Hey I added <p class="product_desc"><a>EAN CODE: {$product.ean13} </a></p> to product-list.tpl after <h3>{if isset($product.new) && $product.new == 1}<span class="new">{l s='New'}</span>{/if}<a title="{$product.name|escape:'htmlall':'UTF-8'}">{$product.name|escape:'htmlall':'UTF-8'}</a></h3> To show my product EAN code maybe you can change ean13 into reference
  6. Misschien firebug gebruiken om passende css aan te maken http://getfirebug.com/
  7. Je kan firefox plugin firebug gebruiken om te weten te komen waar je het kan aanpassen in de css files http://getfirebug.com/
  8. Hey thanks works great but is it also possible to redirect to the sub category product list?
  9. Hey I don't know if it helps but to show my product reference I used this code <p class="product_desc"><a>Art nr: {$product.reference}</a></p> <p class="product_desc"><a title="{$product.description_short|truncate:360:'...'|strip_tags:'UTF-8'|escape:'htmlall':'UTF-8'}">{$product.description_short|truncate:360:'...'|strip_tags:'UTF-8'}</a></p>
  10. Hey you can hide the prices when somebody isn't logged in just add {if $logged} {/if} to you're product-list.tpl and product.tpl file in the themes directory example : {if $logged} <!-- -> code hier boven is om prijzen & in winkel kar steken weg te doen ! --> <div> {if isset($product.show_price) && $product.show_price && !isset($restricted_country_mode)}<span class="price" style="display: inline;">{if !$priceDisplay}{convertPrice price=$product.price}{else}{convertPrice price=$product.price_tax_exc}{/if}</span><br />{/if} {if isset($product.available_for_order) && $product.available_for_order && !isset($restricted_country_mode)}<span class="availability"></span>{/if} </div> {/if}
×
×
  • Create New...