
dew0406
Members-
Posts
17 -
Joined
-
Last visited
Everything posted by dew0406
-
Hi all, I want to display a custom text in order-payment.tpl if product-id is 10. The following code does not work: {if $product.id_product == 10} TEST {/if} Any ideas? Thanks Andi
-
Hi, I need a Prestashop developer on an hourly basis for several projects. You should have the following skills: - Theme customization - HTML/CSS - Template-Engine knowledge - PHP - Module modification - etc. If you have such skills please send me a message giving some reference-projects and your wage rate per hour. Long-term cooperation possible! Thanks Andi
-
Hi all, I also had the pleasure to work with Oexo France. Very great job, rapid realization, very nice contact. Absolutely recommendable! Thank you very much.
-
Hi guys, I have a PS 1.6.0.x installation that was developped by a third party. After installing the module "EU-Legal" for the German market there are two bugs: 1. After choosing the carrier in order-process a blank site is given. After turning on debug-mode I found out an error message something like this: Fatal Error: Unable to load template file /modules/eu_legal/views/templates/themes/default-bootstrap/order-address.tpl 2. Two hooks within the template are missing. One is needed in order to display the delivery-time on product-list and product-detail site. Can you please give me a quote? Thanks in advance. Andi
-
Nein, diese Datei gibt ja die Zusammenfassung für die Bestätigungsseite (bzw overview vor Betätigen des "kaufen" button) aus. Der gesuchte Ausdruck "Pay by Bank Wire" ist hier nicht vorhanden. Es ist wirklich zum Verzweifeln...
-
Klappt einfach nicht. Was mich wundert ist, dass ich die englischen Texte angezeigt bekommen obwohl ich die deutsche Übersetzung hardcoded eingefügt habe: modules/bankwire/views/templates/hook/payment.tpl <p class="payment_module"> <a href="{$link->getModuleLink('bankwire', 'payment')|escape:'html'}" title="{l s='Zahlung per Vorkasse' mod='bankwire'}"> <img src="{$this_path_bw}bankwire.jpg" alt="{l s='Zahlung per Vorkasse' mod='bankwire'}" width="86" height="49"/> {l s='Zahlung per Vorkasse' mod='bankwire'} <span>{l s='(order processing will be longer)' mod='bankwire'}</span> </a> </p> ebenfalls in /themes/{meinTheme}/modules/bankwire/views/templates/hook <p class="payment_module"> <a class="bankwire" href="{$link->getModuleLink('bankwire', 'payment')|escape:'html':'UTF-8'}" title="{l s='Zahlung per Vorkasse (Banküberweisung)' mod='bankwire'}"> {l s='Zahlung per Vorkasse (Banküberweisung)' mod='bankwire'} <span>{l s='' mod='bankwire'}</span> </a> </p> Das heißt also, dass Prestashop den Inhalt nach Installation von EU Legal Modul irgendwo anders her nimmt, ich weiß nicht wo...
-
Danke für den Hinweis, funktioniert aber leider nicht. Der Text wird weiterhin auf Englisch ausgegeben :/
-
Ich verwende folgendes Theme: http://www.templatemela.com/demo/PRS050122/ Das habe ich allerdings vom Style her ziemlich stark customized. In die Template-Engine habe ich jedoch nicht eingegriffen.
-
Pay by Bankwire und Pay by Cash on Delivery (COD) hab die entsprechenden Stellen im Ordner /modules/bankwire bzw. modules/cashondelivery angepasst, aber ohne Effekt. Cache selbstverständlich gelöscht. Muss damit zu tun haben, dass das EU Legal Modul diese übersteuert...
-
Das hab ich schon versucht, klappt leider nicht, da der Webhoster das scheinbar nicht zulässt. Hast du eine Idee, wie ich die Übersetzung hardcoded lösen kann? Ist ein einsprachiger Shop, ist also kein Problem. Kenn mich eigentlich sehr gut mit Prestashop aus, hab schon etliche custom shops aufgesetzt, aber dieser kleine Schnipsel bringt mich zur Verzweifelung...
-
Und wo kann ich den o.g. Text direkt im Quellcode anpassen? Ich kann die Übersetzungsfunktion im BO nicht nutzen, da dies die PHP Konfiguration des Webservers das nicht zulässt (max_input_vars) Ich habe schon etliche Dateien angepasst, leider ohne Erfolg (order-payment.tpl / payment.tpl) Kann mir jemand helfen? Danke vorab und LG
-
Hallo zusammen, wie muss ich die product.tpl anpassen, damit alle Produktbilder (3 Stück) untereinander angezeigt werden? Ich finde den Befehl/String nicht, mit dem ich "Bild2" und "Bild3" requesten kann. Aktuell wird das Galeriebild 3x untereinander angezeigt. Wer kann mir dabei helfen? Vielen Dank vorab und Grüße!
-
Hi all, I would like to display all three product images as thickbox on the product-page. Please see here: At the moment the "gallery-image" is displayed three times instead of all three product images. How do I have to edit the following code in order to get "image-2" and "image-3"? <div id="image-block" class="clearfix"> <!-- {if $product->new} <span class="new-box"> <span class="new-label">{l s='New'}</span> </span> {/if} {if $product->on_sale} <span class="sale-box no-print"> <span class="sale-label">{l s='Sale!'}</span> </span> {elseif $product->specificPrice && $product->specificPrice.reduction && $productPriceWithoutReduction > $productPrice} <span class="discount">{l s='Reduced price!'}</span> {/if} {if $have_image} --> <span id="view_full_size"> {if $jqZoomEnabled && $have_image && !$content_only} <a class="jqzoom img-product" title="{if !empty($cover.legend)}{$cover.legend|escape:'html':'UTF-8'}{else}{$product->name|escape:'html':'UTF-8'}{/if}" rel="gal1" href="{$link->getImageLink($product->link_rewrite, $cover.id_image, 'thickbox_default')|escape:'html':'UTF-8'}" itemprop="url"> <img itemprop="image" src="{$link->getImageLink($product->link_rewrite, $cover.id_image, 'thickbox_default')|escape:'html':'UTF-8'}" title="{if !empty($cover.legend)}{$cover.legend|escape:'html':'UTF-8'}{else}{$product->name|escape:'html':'UTF-8'}{/if}" alt="{if !empty($cover.legend)}{$cover.legend|escape:'html':'UTF-8'}{else}{$product->name|escape:'html':'UTF-8'}{/if}"/> </a> {else} <img id="bigpic" class="img-product" itemprop="image" src="{$link->getImageLink($product->link_rewrite, $cover.id_image, 'thickbox_default')|escape:'html':'UTF-8'}" title="{if !empty($cover.legend)}{$cover.legend|escape:'html':'UTF-8'}{else}{$product->name|escape:'html':'UTF-8'}{/if}" alt="{if !empty($cover.legend)}{$cover.legend|escape:'html':'UTF-8'}{else}{$product->name|escape:'html':'UTF-8'}{/if}" width="{$largeSize.width}" height="{$largeSize.height}"/> {if !$content_only} <span class="span_link no-print"></span> {/if} {/if} </span> {else} <span id="view_full_size"> <img itemprop="image" src="{$img_prod_dir}{$lang_iso}-default-large_default.jpg" id="bigpic" alt="" title="{$product->name|escape:'html':'UTF-8'}" width="{$largeSize.width}" height="{$largeSize.height}"/> {if !$content_only} <span class="span_link"> {l s='View larger'} </span> {/if} </span> {/if} </div>