rethus Posted June 23, 2014 Share Posted June 23, 2014 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 More sharing options...
BluTiGeS Posted June 24, 2014 Share Posted June 24, 2014 Das ist die Lieferzeit bei dem Produkt Link to comment Share on other sites More sharing options...
eleazar Posted June 25, 2014 Share Posted June 25, 2014 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_now = Nachricht, wenn auf Lager available_later = Nachricht, falls nicht am Lager, aber lieferbar Link to comment Share on other sites More sharing options...
rethus Posted June 30, 2014 Author Share Posted June 30, 2014 Thank you. Is there a way to switch this field for each Product? Maybe in the DB? Link to comment Share on other sites More sharing options...
eleazar Posted June 30, 2014 Share Posted June 30, 2014 There's always a way. Use PHPMyAdmin or the free Prestashop module phpmyadmin (Love it!) with an SQL statement like e.g. UPDATE `ps_product_lang` SET `available_now` = "2-3 Werktage" WHERE `available_now` = "whatever" Maybe you got to modify the ps prefix. 1 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