Jump to content

Kennzeichnung von Produkten


Mad88

Recommended Posts

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

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

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 by CarlaL (see edit history)
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...