Search the Community
Showing results for tags 'chargé'.
-
Hi guys, i'm developping one pakaging website and i have the follow problem with th the hsipping: I want charge 6€ for <100€ inside the penisnula -> DONE I want charge 0€ for >100€ inside the peninsula -> DONE I wanna the client should ask me for the budget for <100€ out of the peninsula (Islas Baleares for example) -> DONE I want made that the client should ask me for the budget if >100€ if the shipping addres is outside of the peninsula ->FAILURE, applies the second condition
-
Hello, Can anyone know how to setup a fixed fee delivery for an order, no matter how many products are added in the cart, in prestashop 1.7.4? Thanks!
-
Bonjour, J'ai un problème: Je suis sur Prestashop 1.5 et je suis en train de faire une refonte d'un site existant (sur une version teste heureusement), j'ai des modules à supprimer pour cette refonte. Sur Google chrome et Safari, tout fonctionne impeccable, sur Firefox et IE, ça ne va pas du tout: Le site apparaît très furtivement et disparaît pour laisser une page blanche avec un lien "favoris", quand je regarde la destination de ce lien, voici ce que j'ai: javascript:addBookmark('http%3A//monsite.com/maboutique/authentification%3Fback%3Dmy-account',%20'Authentification%20-%20Motodor') Je vois également que la page n'arrête pas de tourner/charger, en regardant le debug firefox, je vois que le lien http://monsite.com/maboutique/?controller=cart&ajax=true&token=871b49292bc8353d73c825175a95d7ae&_=1413819692182 qui tourne sans arrêt ainsi qu'une police que j'ai rajouté dans le font et qui est bien présent. Je suis bloqué à ce niveau là :/ Merci d'avance pour votre aide Guillaume R. Edit: En mode debug, je n'ai aucun message d'erreur
-
Bonjour, En voulant consulter ma page sur les modules de paiement dans le back office, il m'est apparu par magie je suppose , Ceci : Le(s) module(s) suivant(s) ne peuvent pas être chargé.: [bankwire] Erreur dans le fichier de configuration: CData section not finished Le module HiPay [bankwire] Erreur dans le fichier de configuration: Premature end of data in tag description line 2 [bankwire] Erreur dans le fichier de configuration: Premature end of data in tag module line 2 [bankwire] Erreur dans le fichier de configuration: Premature end of data in tag modules line 2 [bankwire] Erreur dans le fichier de configuration: CData section not finished LeGuide.com Group, opérateur de guides shoppi [bankwire] Erreur dans le fichier de configuration: Premature end of data in tag description_full line 2 [bankwire] Erreur dans le fichier de configuration: Premature end of data in tag module line 2 [bankwire] Erreur dans le fichier de configuration: Premature end of data in tag modules line 2 [bankwire] Erreur dans le fichier de configuration: CData section not finished Le module HiPay [bankwire] Erreur dans le fichier de configuration: Premature end of data in tag description line 2 [bankwire] Erreur dans le fichier de configuration: Premature end of data in tag module line 2 [bankwire] Erreur dans le fichier de configuration: Premature end of data in tag modules line 2 Ensuite vient la page affichée normalement... Prestashop 1.5.5 Merci
-
Charge 10$ extra when a product feature is selected?
FreshCommerce posted a topic in Core developers
We are looking a way to add a fixed surcharge to every product when a certain feature is checked in the product feature list. We already know there´s the option of creating a combination and selecting specific amount for each product, but in this project with thousands of items and always the same surcharge per item, it would be much better using the "checked feature" option. Any help? -
Hi! I want to do the following. Say I wish to buy 100 invitations at $2.00 each. That would be $200.00 in total. BUT... I want to add a printing charge: a) $50.00 for digital printing or $60.00 for foil printing This fee needs to be an option on the product page and to be added only ONCE to the total of the invitations. How can I do that? Any ideas??
-
Hello, If you like to charge moneybookers payments to clients you can add this quick and dirty solution. for shop version 1.4. Open moneybookers.php ((after making a backup) Go to /* About the cart */ Around line 660. Add the folowing code att the end of the /* About the cart */ code if ($mbParams['currency'] == 'EUR') { $mbParams['amount'] = $mbParams['amount']+ 1.5; } else { $mbParams['amount'] = $mbParams['amount']+ 10; } In this case if currency is EUR, they have to pay 1.5 euro extra, otherwise 10. Good luck.