Jump to content

sueshi

Members
  • Posts

    34
  • Joined

  • Last visited

Profile Information

  • Activity
    Agency

sueshi's Achievements

Newbie

Newbie (1/14)

  • First Post Rare
  • Collaborator Rare
  • Week One Done Rare
  • One Month Later Rare
  • One Year In Rare

Recent Badges

2

Reputation

  1. Wir haben uns nun für das Addon (OSS Lieferland Auswahl Modul) von Silbersaiten entschieden, d.h. eine Abfrage nach dem Lieferland gleich beim Einstieg in den Shop. Dann werden dem User die jeweiligen Endpreise (entsprechend ihrem Steuersatz) angezeigt. Installation mit Support hat super geklappt.
  2. Hatte ich, bin aber auf was draufgekommen: Bundesland war ebenfalls nötig. Jetzt ist es so, dass der Shop anfangs österr. Bruttopreise zeigt, sobald ein Interessent aber in den Bestellvorgang eingestiegen ist und das Lieferland ausgewählt hat, werden im Frontend die jeweiligen Bruttopreise angezeigt. So lange, bis das Lieferland im Bestellprozess geändert wird. Darauf reagiert der Shop also echt schnell. Im Grunde hilft das ab jetzt nicht wirklich, wenn man aktuell ja für alle Länder denselben Bruttopreis anzeigen muss. Was meiner Meinung nach eine fiese Benachteiligung ist, dann wird sich jeder Onlinehändler gut überlegen, ob er in ein Land mit hoher MwSt. liefern soll ... Aber ich bin ja schon froh, dass ich wenigstens diesen Bug gefunden habe.
  3. Ich habe ihn als österr. Standort installiert. Daher sollte doch im Frontend der Bruttopreis mit 20 % MwSt. angezeigt werden. Sobald ich aber bei der Steuerregel für Deutschland den deutschen Steuersatz einsetze, wird dieser im Frontend über alle Artikel gelegt. Am Cache kanns nicht liegen, den lösche ich sowieso schon bald minütlich. Habe übrigens drei Shops installiert, die alle vor der neuen Steuerregelung mit 20 % MwSt. einwandfrei gelaufen sind. Und in allen dreien zeigt sich dasselbe Verhalten. Es ist nicht möglich, ab jetzt für die verschiedenen Länder die unterschiedlichen Steuersätze bei Bestellungen anzuwenden UND im Frontend die Bruttopreise für Österreich anzuzeigen. Im Bestellvorgang läuft es ja richtig - deutsches Lieferziel -> deutsche Steuer, österr. Lieferziel -> österr. Steuer usw. Im Frontend gilt aber IMMER 19% ...
  4. Stehe vor demselben Problem - hat wer einen Tipp für mich? PS 1.7.6 Habe mir testweise auf einem anderen Server den Demoshop PS 1.7.7 installiert. Wenn ich in den Steuerregeln für "Standard AT 20%" bei Deutschland die 19% eingebe, hab ich auch hier im ganzen Frontend die deutsche Preisanzeige. Selbst wenn ich als Standort Italien wähle (die haben 22 %), sehe ich im Frontend immer noch die deutschen Bruttopreise ... Bin ich zu blöd oder die Software?
  5. Using PS 1.6.1 for nearly 3 years without any problem, but now something weird occurs: When editing cms page and inserting image from filemanager I have to wait up to 20 seconds till the content of filemanager is loaded. First I thought there must be some js or php file missing, but accidentally I realized that it takes only such a long time. Can the size of the content be a problem? I can´t believe this because another customer has many more fotos and some with rather high resolution and is not facing this problem.
  6. Danke, das war´s. Warum ich es im Backend nicht wechseln konnte, weiß ich nicht, sowohl JA als auch NEIN sind nicht anzuklicken, bei Mouseover kommt bei beiden das Halteverbotszeichen. Aber egal, jetzt sind sie da ...
  7. Hilfe! Bevor ich gleich aus dem Fenster springe - in welchem Datenbankeintrag ist die Funktion der Varianten aktiviert/deaktiviert? Über die Shopeinstellungen -> Leistung kann ich sie nämlich nicht aktiveren ... Suche nun schon eine gute Stunde und bin kurz vor dem Ausrasten PS 1.7.3
  8. I have a mysterious problem with the addon ba_ajax_search in Prestashop 1.6.0.9 and seem not to be able to find the cause. Long time it worked, recently I had to change server and php version to 7.0: Search basically is working correctly, but only on homepage the preview of results does not show up. I have spent some hours on this with not the least success! The error shown in console: www.derweinladen.online/:1007 Uncaught SyntaxError: Unexpected token , ajax_search.js:80 Uncaught ReferenceError: ba_search_baseDir is not defined How can I find this "unexpected token ,"?
  9. Seit einiger Zeit beobachte ich in einem der Shops (Prestashop 1.6.1.1), die ich betreue, ein mysteriöses Verhalten, das sonst bei keinem Shop auftritt: Wenn ich mir alle Kategorien anzeigen lasse, eine auswähle, darin ein Produkt bearbeite und speichere, merkt sich Prestashop nicht mehr den aktuellen "Standort", sondern springt immer auf HOME, d.h. der Kategoriebaum ist wieder geschlossen. Das ist urnervig, wenn man eine ganze Reihe Produkte einer bestimmten Kategorie bearbeiten will ... Ähnliches passiert beim Filtern nach einem Produktnamen. Die Filteroptionen werden nicht mehr mitgegeben, d.h. nach dem Speichern beginnt man wieder bei Null ... Jemandem schon sowas untergekommen?
  10. For everybody still fighting this: Open product.tpl Look for "<!-- Out of stock hook -->" Change "{$HOOK_PRODUCT_OOS}" to "<!-- {$HOOK_PRODUCT_OOS} -->" (just 2 lines below) Right below enter: <!-- Begin insert --> <script type="text/javascript">{literal} // <![CDATA[ oosHookJsCodeFunctions.push('oosHookJsCodeMailAlert'); function clearText() { if ($('#oos_customer_email').val() == '{/literal}{l [email protected]' mod='mailalerts'}{literal}') $('#oos_customer_email').val(''); } function oosHookJsCodeMailAlert() { $.ajax({ type: 'POST', url: "{/literal}{$link->getModuleLink('mailalerts', 'actions', ['process' => 'check])}{literal}", data: 'id_product={/literal}{$id_product}{literal}&id_product_attribute='+$('#idCombination').val(), success: function (msg) { if ($.trim(msg) == '0') { $('#mailalert_link').show(); $('#oos_customer_email').show(); } else { $('#mailalert_link').hide(); $('#oos_customer_email').hide(); } } }); } function addNotification() { $.ajax({ type: 'POST', url: "{/literal}{$link->getModuleLink('mailalerts', 'actions', ['process' => 'add'])}{literal}", data: 'id_product={/literal}{$id_product}{literal}&id_product_attribute='+$('#idCombination').val()+'&customer_email='+$('#oos_customer_email').val()+'', success: function (msg) { if ($.trim(msg) == '1') { $('#mailalert_link').hide(); $('#oos_customer_email').hide(); $('#oos_customer_email_result').html("{/literal}{l s='Request notification registered' mod='mailalerts'}{literal}"); $('#oos_customer_email_result').css('color', 'green').show(); } else if ($.trim(msg) == '2' ) { $('#oos_customer_email_result').html("{/literal}{l s='You already have an alert for this product' mod='mailalerts'}{literal}"); $('#oos_customer_email_result').css('color', 'red').show(); } else { $('#oos_customer_email_result').html("{/literal}{l s='Your e-mail address is invalid' mod='mailalerts'}{literal}"); $('#oos_customer_email_result').css('color', 'red').show(); } } }); return false; } $(document).ready(function() { oosHookJsCodeMailAlert(); $('#oos_customer_email').bind('keypress', function(e) { if(e.keyCode == 13) { addNotification(); return false; } }); }); {/literal} //]]> </script> <!-- MODULE MailAlerts --> {if isset($email) AND $email} <input type="text" id="oos_customer_email" name="customer_email" size="20" value="{l s='[email protected]' mod='mailalerts'}" class="mailalerts_oos_email" onclick="clearText();" /><br /> {/if} <a href="#" title="{l s='Notify me when available' mod='mailalerts'}" onclick="return addNotification();" id="mailalert_link" rel="nofollow">{l s='Notify me when available' mod='mailalerts'}</a> <span id="oos_customer_email_result" style="display:none;"></span> <!-- END : MODULE MailAlerts --> <!-- End insert --> To get a list with all the notifications look for "SQL queries" in left menue click "New query" enter name for query enter this code: SELECT ps_customer.lastname as Customer, ps_mailalert_customer_oos.customer_email as Email, ps_product_lang.name as Product from ps_mailalert_customer_oos LEFT JOIN ps_customer ON ps_customer.id_customer = ps_mailalert_customer_oos.id_customer LEFT JOIN ps_product_lang ON ps_product_lang.id_product = ps_mailalert_customer_oos.id_product order by ps_mailalert_customer_oos.id_product Then you only have to click on the new query to see a table with all requests.
  11. Just to make it complete: I needed VAT number on every invoice pdf, as long as existing. So I added right after {$invoice_address} in the invoice template: So it only shows when customers have entered their VAT
  12. The same solution works perfectly for me on product_list page, but not in the product_list presented in search.tpl. In search results the whole if-else statement is completely ignored. Please, can anyone explain why?
  13. Please, could someone tell me how to get the product ref into the "Add Product" select menu when editing orders in PS 1.6? Just like the look of adding accessories in product editing ... And in addition, it would be very useful, if only active products where shown... Many thanks in advance, I´ve been looking for a solution a rather long time!
  14. I have a similar problem with AdminOrders: Somehow the filter for customer seems to be case sensitive. Where and how should I change this?
×
×
  • Create New...