Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. J'ai testé en local et je penses que ça pourrait foirée, mais j'ai tester sans cette condition et même problème...
  3. Postaw nowy na sub domenie, później tylko przepnij domenę na hostingu na nowy folder i zmień w bazie danych url. Jeśli nie robisz migracji produktów etc, to wystarczy.
  4. Bonjour, je n'ai pas regardé plus, mais ce genre de test est foireux dans le sens où, qu'arrive-t-il si vous ajoutez une langue à la boutique ? Il est préférable de tester l'instance de l'objet chargé ou le pagename ou le phpself, enfin, quelque chose d'unique et stable.
  5. Takie ustawienie jak to które podaje niżej daje Ci, że masz płatną dostawę 15zł dla każdego zamówienia do 2tys zł. Powyżej tej kwoty jest darmowa dostawa. I musisz wtedy dal każdego przewoźnika zrobić taką regułę. A dla Pobrania które nie chce by było darmowe ustawiasz jak na drugim zdjęciu (od 0 do jakiejś dużej kwoty)
  6. Nie bardzo rozumiem co masz na myśli. Może źle opisałem sprawę. Ja nie chce postawić sklepu opartego o prestashop 8 na podstawie starej bazy ze sklepu 1.6. Tylko chce postawić nowy czysty sklep na 8 i potem tylko podmienić je w "całości"
  7. Can I do a rollback, for the database before the update? Will it solve the problem?
  8. This is one of the core tables that is missing, check you database!
  9. Today
  10. Hi - I want to override an image in a 3rd party module under v8.1.5. How do I do this?
  11. I don't know how to do that, I can't access to my back-office at all, is this screen shot help?
  12. Enable debug mode / depend on version clear cache in VAR folder.
  13. Hello, I am having this message "500 Internal Server Error" when I am trying to open my website, back-office and the main site. This happened when I did a restore to my website after updating it to the last version with the module 1 click update. Any ideas on how I can fix the problem, and try to connect to my website ? Thanks.
  14. Asegúrate que el módulo sea compatible con tu versión. Mira si el módulo tiene alguna opción para pedidos no terminados, puede que sea parte de su configuración.
  15. Hello, Did you find the solution via Webservice for this?
  16. I would like to create a page describing various product properties, and under each text I would like to place, for example, 3 selected product thumbnails. Is there any hook I can use to do this? ----------
  17. Hi, Modify the product page template (product.tpl) in your theme to conditionally hide the shipping section or display "Shipping: N/A" for products that are only available for click and collect. You can use PHP logic to check if the product belongs to a category or has a specific attribute indicating it's only available for click and collect. If so, display "Shipping: N/A" or hide the shipping section altogether. OR Look for a module in the Prestashop marketplace that allows you to manage shipping options more granularly. Ref : https://addons.prestashop.com/en/search?search_query=shipping Hope this would help. Thanks!
  18. Bonjour tout le monde, voilà j'ai fini de développé depuis quelques jour un module qui utilise l'API Google Maps pour autocompléter les adresse, il est 100% fonctionnel en local et sur un site de test également, sous le thème de base "classic" Je l'ai donc installer directement via le BO avec le dossier de mon module en .zip et je l'ai configuré. Et à ma grande surprise, il ne fonctionne pas. Et je remarque que sur l'enregistrement de mes script, seul l'appel à l'API fonctionne, pas pas l'appel à mon fichier JS de mon module, je vous partage l'extrait ci-dessous : public function hookActionFrontControllerSetMedia() { // Vérifier si nous sommes sur la page de commande ou de l'adresse $currentUrl = $_SERVER['REQUEST_URI']; if (strpos($currentUrl, '/commande') !== false || strpos($currentUrl, '/adresse') !== false) { $this->context->controller->registerJavascript( 'module-googleadressautocomplete', 'modules/' . $this->name . '/views/js/googleadressautocomplete.js', array('position' => 'bottom', 'priority' => 10) ); $countries = Configuration::get('GOOGLEADRESSAUTOCOMPLETE_COUNTRIES'); Media::addJsDef(array('autocompleteCountries' => explode(',', $countries))); $apiKey = Configuration::get('GOOGLEADRESSAUTOCOMPLETE_APIKEY'); $this->context->controller->registerJavascript( 'google_maps_api', 'https://maps.googleapis.com/maps/api/js?key=' . $apiKey . '&callback=initAutocomplete&libraries=places', array('server' => 'remote', 'position' => 'bottom', 'priority' => 20) ); } } la seconde partie est bien prises en compte et fonctionne, le script du lien de l'API est bien charger sur ma page, mais le premier bout de code qui veut injecter mon fichier javascript de mon module n'est pas récupérer sur le site. Comment est-ce possible ? Je m'arrache les cheveux depuis hier après-midi. Si quelqu'un à déjà eu le cas, ce serais cool, merci à vous et bonne journée !
  19. Hi, Check that your email settings in Prestashop are correctly configured. Double-check the SMTP server settings (host, port, username, password, encryption) provided by your email service provider. Sometimes, incorrect SMTP settings can prevent emails from being sent. Enable debug mode in PrestaShop to get more detailed error messages. Hope this would help. Thanks!
  20. 1.6 i 8 przecież bazy danych różnią się, sama zmiana adresu sklepu nie pomoże chyba że zastosujesz zmiany w msql,
  21. Hi, In your Prestashop admin panel, go to Catalog > Products and filter products by "Out of stoc." Then, edit each product and change its visibility to "Nowhere." This will hide the products from catalog listings and search results. Instead of directly modifying the core controllers, you should override them in your custom module or theme. This allows you to maintain the original functionality while adding your custom logic. Override the templates responsible for displaying product listings in your theme. Here, you can add logic to check if the product is out of stock and conditionally display it. This way, the products will still be accessible via direct URL but won't appear in search results or catalog listings. When overriding controllers or templates, make sure to handle pagination correctly to avoid issues like missing products or incorrect page counts. Thoroughly test your changes to ensure that hiding out-of-stock products doesn't break any existing functionality and that products remain accessible via URL. Hope this would help. Thanks!
  1. Load more activity
×
×
  • Create New...