Jump to content

Text in Produkt-Detail ändern {$product->available_now}


rethus

Recommended Posts

In der Detailpage habe ich eine Anzeige, dass wenn ein Produkt verfügbar ist, dies ausgegeben wird.

 

Im Sourcecode befindet sich dies in der product.tpl und sieht so aus:

<!-- availability -->
			<p id="availability_statut"{if ($product->quantity <= 0 && !$product->available_later && $allow_oosp) OR ($product->quantity > 0 && !$product->available_now) OR !$product->available_for_order OR $PS_CATALOG_MODE} style="display: none;"{/if}>
				<span id="availability_label">{l s='Availability:'}</span>
				<span id="availability_value"{if $product->quantity <= 0} class="warning_inline"{/if}>
				{if $product->quantity <= 0}
					{if $allow_oosp}
						{$product->available_later}
					{else}
						{l s='This product is no longer in stock'}
					{/if}
					{else}
						{$product->available_now}
					{/if}
				</span>
			</p>

Der springende Punkt ist, dass die Textausgabe genau dieses Smarty-Objekt ist:  {$product->available_now}

 

Ich finde aber keinen Punkt, wo dieser Text änderbar wäre. Kann mir da jemand einen Tipp geben?

Link to comment
Share on other sites

In der Detailpage habe ich eine Anzeige, dass wenn ein Produkt verfügbar ist, dies ausgegeben wird.

 

Im Sourcecode befindet sich dies in der product.tpl und sieht so aus:

<!-- availability -->
			<p id="availability_statut"{if ($product->quantity <= 0 && !$product->available_later && $allow_oosp) OR ($product->quantity > 0 && !$product->available_now) OR !$product->available_for_order OR $PS_CATALOG_MODE} style="display: none;"{/if}>
				<span id="availability_label">{l s='Availability:'}</span>
				<span id="availability_value"{if $product->quantity <= 0} class="warning_inline"{/if}>
				{if $product->quantity <= 0}
					{if $allow_oosp}
						{$product->available_later}
					{else}
						{l s='This product is no longer in stock'}
					{/if}
					{else}
						{$product->available_now}
					{/if}
				</span>
			</p>

Der springende Punkt ist, dass die Textausgabe genau dieses Smarty-Objekt ist:  {$product->available_now}

 

Ich finde aber keinen Punkt, wo dieser Text änderbar wäre. Kann mir da jemand einen Tipp geben?

 

Die Einstellung findest du beim einzelnen Artikel:

 

Katalog --> Artikel [v1.5: Produkte]--> <Produktxy> --> Mengen --> Abschnitt: Verfügbarkeits-Einstellungen

 

available_nowNachricht, wenn auf Lager

available_later = Nachricht, falls nicht am Lager, aber lieferbar

 
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...