Jump to content

xlynx

Members
  • Posts

    97
  • Joined

  • Last visited

1 Follower

Profile Information

  • Activity
    Freelancer

xlynx's Achievements

  1. Hello, I created 2 new themes, both with the "classic" theme as parent. Multistore is enabled and each store has its own theme. The first theme loads modules from the second theme and not from the classic theme, and sometimes the second them load some modules from the first theme . For example for the first theme (store 1) with the "chrome dev tools" I get this : <!-- begin module:ps_featuredproducts/views/templates/hook/ps_featuredproducts.tpl --> <!-- begin C:\wamp64\www\presta/themes/custom2/modules/ps_featuredproducts/views/templates/hook/ps_featuredproducts.tpl --> <section>...</section> <!-- end C:\wamp64\www\presta/themes/custom2/modules/ps_imageslider/views/templates/hook/slider.tpl --> <!-- end module:ps_featuredproducts/views/templates/hook/ps_featuredproducts.tpl --> Theme 1 : parent: classic name: custom1 display_name: Custom1 Theme 2 : parent: classic name: custom2 display_name: Custom2 DEV Mode : enabled Prestashop version : 1.7.6.7 Tested on other installation with the same issue. Thanks
  2. Hey, Pouvez vous coller le contenu du fichier /home/soundmoncf/natifcoiffure/classes/Blowfish.php sur ce site : http://pastebin.com/ Choisissez dans "Syntax Highlighting" -> PHP puis cliquez sur "SUBMIT" ensuit envoyer le lien. a++
  3. Hey, 1-> Importer votre base de donnée (dans phmyadmin par exemple) 2-> Allez dans la base de donnée -> table "ps_shop_url" -> dans les colonnes "domain" et "domain_ssl" collez votre nouveau nom de domain "monsite.com" 3-> Ouvrez le fichier "/config/settings.inc.php" -> Vérifier que "_DB_USER_" et "_DB_PASSWD_" correspondent exactement au privilèges que vous avez attribuez. Si vous avez utilisez "root" sans "motdepasse" dans l’environnement de développement, vous devez ajouter un nouveau utilisateur et un mot de passe pour raison de sécurité. Good luck xlynx
  4. Hey, To remove the language iso code from the url, you can add in your .htacess this line : RewriteRule ^(.*)/img/cms/(.*)$ /img/cms/ [L,R=301] It works for me with the default cms folder. An other thing .... When I check the code source of the CMSs, I find that URLs have domain name written, and its bad if we are working on local environment and we want to export it after in a production environment. To avoid this, when we add an image in TinyMce "insert-edit image", we can change the source of the image by removing the domain name and let only "/img/cms/image.jpg". Best xlynx
  5. Hello, Commencer a nettoyer le cache de votre navigateur puis rafraîchissez le pour voir. xlynx
  6. Dans le fichier product.js dans /themes/votretheme/js/product.js : -Version 1.5 -> ligne 587 Ancien code : Commenter les lignes suivantes $('.thickbox').fancybox({ 'hideOnContentClick': true, 'transitionIn' : 'elastic', 'transitionOut' : 'elastic' }); Nouveau code : /*$('.thickbox').fancybox({ 'hideOnContentClick': true, 'transitionIn' : 'elastic', 'transitionOut' : 'elastic' });*/ -Version 1.6 -> ligne 170 Ancien code : if (typeof(contentOnly) != 'undefined' && !contentOnly) { if (!!$.prototype.fancybox) $('li:visible .fancybox, .fancybox.shown').fancybox({ 'hideOnContentClick': true, 'openEffect' : 'elastic', 'closeEffect' : 'elastic' }); } else if (typeof ajax_allowed != 'undefined' && !ajax_allowed) $('#buy_block').attr('target', '_top'); Nouveau code : if (typeof(contentOnly) != 'undefined' && !contentOnly) { /*if (!!$.prototype.fancybox) $('li:visible .fancybox, .fancybox.shown').fancybox({ 'hideOnContentClick': true, 'openEffect' : 'elastic', 'closeEffect' : 'elastic' });*/ if (typeof ajax_allowed != 'undefined' && !ajax_allowed) $('#buy_block').attr('target', '_top'); } Utilisez ensuite le "css" pour cacher le button "Agrandir l'image" . Good luck xlynx
  7. Oups, désolé j'ai oublier de vous poster le module à configurer en question .... http://prntscr.com/7arwws Merci Patricia a+++
  8. Il faut éditer le fichier product.js dans /themes/votretheme/js/product.js Je vous enverrais le code dés que je peux xlynx
  9. Hello, Il faut les supprimés dans les 2 langues : http://prntscr.com/7apdid | http://prntscr.com/7apdmm xlynx
  10. Hello, Préférences -> Produits : Sélectionnez "Non" pour "Activer JqZoom au lieu de Thickbox sur les pages produits" dans la section "Page produit" . puis enregistrez. xlynx
  11. Hey, The bug happens only with the default image and cms, when I add images in the tinymce, the links are correct in the front office. Best xlynx
  12. Hello, I am running the last version of prestashop (1.6.0.14) and some images are not showing, The bug appears on cms pages and only when friendly url is enabled. An other user had the same issue, and had updated his prestashop and the bug disappear, but i am running the last version and the bug is sill here. Post from Acido : https://www.prestashop.com/forums/topic/317154-images-not-showing/ Unfortunately this fix doesn't work to me. All the image that i upload to the cms page, are pointed to www.domain.com/en/img/cms/image.jpg By change the language, the url change pointing to the new language, example: www.domain.com/en/img/cms/image.jpg That it's what ruin the image url which is www.domain.com/img/cms/image.jpg The image path include the language iso code like (en or de), its why it fails to load images. Any help is welcome! Thanks in advance. xlynx
  13. Hey Vekia! Yes, its the default one. Thank you
×
×
  • Create New...