Mad88 Posted March 3, 2015 Share Posted March 3, 2015 Hallo zusammen, ich hoffe ich greife nicht schon wieder ein Thema auf was schon geklärt wurde aber ich habe nichts hilfreiches gefunden. Ich habe einen Onlineshop für Secondhandsachen aber nicht alles ist Secondhand. Ich würde gerne die Produkte markieren, die tatsächlich neu sind. Aber nicht neu reingestellt sondern neu neu. Diese Kennzeichnung soll auch permanent im Produktbild auftauchen. Gibt es ein Modul dafür? Vielen Dank für eure Hilfe Link to comment Share on other sites More sharing options...
Rundblick Posted March 4, 2015 Share Posted March 4, 2015 Du kannst das über den Artikelzustand lösen. Das kleine Bild neu, bezieht sich ja auf neu eingestellte Artikel. Link to comment Share on other sites More sharing options...
Mad88 Posted March 4, 2015 Author Share Posted March 4, 2015 Aber ist das nicht zeitabhängig? Also nur für eine bestimme Zeit erscheint das "neu"? Und ich will ja auch nicht das alle Artikel markiert werden, nur einige... Link to comment Share on other sites More sharing options...
CarlaL Posted March 4, 2015 Share Posted March 4, 2015 Bei Katalog/Artikel/informationen kannst du für jeden Artikel den Zustand individuell einstellen. Die Optionen sind Neu / Verwendet / Überholt. Da würde ich dann einfach die entsprechende Sprachdatei anpassen themes/deinTemplateVerzeichnis/lang Wenn du NUR die neuen Artikel kennzeichnen möchtest, die anderen aber ohne Kennzeichnung bleiben sollen, dann musst du hier ansetzen themes/deinTemplateVerzeichnis/product.tpl {if !$product->is_virtual && $product->condition} <p id="product_condition"> <label>{l s='Condition:'} </label> {if $product->condition == 'new'} <link itemprop="itemCondition" href="http://schema.org/NewCondition"/> <span class="editable">{l s='New product'}</span> {elseif $product->condition == 'used'} <link itemprop="itemCondition" href="http://schema.org/UsedCondition"/> <span class="editable">{l s='Used'}</span> {elseif $product->condition == 'refurbished'} <link itemprop="itemCondition" href="http://schema.org/RefurbishedCondition"/> <span class="editable">{l s='Refurbished'}</span> {/if} </p> {/if} Gruß, Carla Link to comment Share on other sites More sharing options...
Mad88 Posted March 7, 2015 Author Share Posted March 7, 2015 Was muss ich da umschreiben? Link to comment Share on other sites More sharing options...
CarlaL Posted March 7, 2015 Share Posted March 7, 2015 (edited) Probiers mal so (ungetestet - bin auch neu hier und noch nicht so ganz drin in der PS-Syntax, aber so müsste es funktionieren) {if !$product->is_virtual && $product->condition == 'new' } <p id="product_condition"> <label>{l s='Condition:'} </label> <link itemprop="itemCondition" href="http://schema.org/NewCondition"/> <span class="editable">{l s='New product'}</span> </p> {/if} Wenn du den Text "Zustand" nicht brauchst, dann lass die Zeile mit <label> weg. Gruß, Carla Edited March 7, 2015 by CarlaL (see edit history) 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