Jump to content

tomasz_be

Members
  • Posts

    14
  • Joined

  • Last visited

About tomasz_be

  • Birthday 04/15/1985

Profile Information

  • Location
    Brussels, Belgium
  • Activity
    Web Development Agency

Recent Profile Visitors

2,226,660 profile views

tomasz_be'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

9

Reputation

  1. Hi all, If you don't want to send this e-mail each time you add/update a tracking number for a specific order, you can override sendInTransitEmail() function by creating the following file in /override/classes/order/OrderCarrier.php <?php /** * OrderCarrier override : disable in_transit emails * */ defined('_PS_VERSION_') or die; class OrderCarrier extends OrderCarrierCore { /** * @param Order $order Required * * @return bool */ public function sendInTransitEmail($order) { return true; } } This function is only called from /src/Adapter/Order/CommandHandler/UpdateOrderShippingDetailsHandler.php If you clear your Prestashop cache, then it won't send at all the in_transit email when you add/update tracking number. It works in Prestashop 1.7.7.2 and as it is an override, you won't loose your modification when you update Prestashop. Hope it helps.
  2. Hello, This is what I did, but as I still haven't received a reply from the developer I thought that Smokovsky might have the solution.
  3. Hi Smokovsky, I'm facing the same issue. Did you find a solution to fix this ? Thanks,
  4. Could you share this plugin on the forum? It seems it's not available anymore on the website you provided. Thanks EDIT: I found it thanks to Google cache :-) -> http://www.matteobononi.it/psmodules/hreflang/hreflang_on_pages.zip
  5. Hi Jpyg, I had the same problem and solved it by set up "magic_quotes_gpc", "magic_quotes_runtime" and "magic_quotes_sybase" in my php.ini file to "off". magic_quotes_gpc = Off magic_quotes_runtime = Off magic_quotes_sybase = Off
  6. Bonjour, J'interviens dans un vieux post, mais je suis tombé dessus en cherchant une solution à mon problème sur Google et j'espère en intervenant ici que ça aidera d'autres personnes qui cherchent aussi une réponse à leur problème! J'ai eu le même soucis que vous, c'est-à-dire que mon fichier robots.txt était bien sur mon FTP, mais quand j'essayais d'y accéder via mon navigateur web, cela me générait une 404. J'ai solutionné le problème en modifiant simplement les permissions sur mon fichier robots.txt. J'ai copié les permissions d'un fichier qui fonctionnait (n'importe quel fichier php à la racine du ftp par exemple), et je les ai appliquées sur mon fichier robots.txt. Et tout est rentré dans l'ordre Thomas
  7. Hi all, I had the same problem as you and just found a fix! You have to modify file permissions on your txt file. You can copy permissions settings of an other php file on your ftp if you don't know which rights to apply to your file. Hope it helps! Best regards, Thomas
  8. Bonjour, J'ai eu le même problème que vous je pense. Le fichier robots.txt était bien généré et visible sur mon ftp, mais pas accessible (erreur 404) quand j'y accédais via mon navigateur web. Après m'être arraché les cheveux et avoir un peu tout essayé, je me suis rendu compte que le fichier robots.txt n'avait pas les même droits que les autres fichiers sur mon FTP. J'ai donc simplement modifié les droits sur le fichier txt et miracle, mon problème n'en était plus un! En espérant que cela résolve votre problème aussi! Cordialement, Thomas
  9. Bonjour, Avez-vous essayé de changer simplement l'ordre des transporteurs? Je vous invite à essayer de positionner le transporteur Kiala avant bpost dans la liste de vos transporteurs. J'ai eu le même problème sur une version 1.4 et ça a résolu le problème. Thomas
  10. Hi yeremaya, I found a fix that solved this bug on my website. Go to your FTP server and download the following file: /modules/kialasmall/kialasmall.php Then open it, go to line 80 and find following code : $this->ws_url = 'http://packandship-ws.kiala.com/psws/order?wsdl'; Replace it by: $this->ws_url = 'https://packandship-ws.kiala.com/psws/order?wsdl'; Upload it on your FTP server and try to update paiement status in your admin. It works again :-) Hope it helps you.
  11. Hi yeremaya, Sorry but I don't speak Spanish at all. Did you get some news from Kiala about this error message? We experience the same bug on our site. Regards, Thomas
  12. Thanks a lot kasperghost! It works on 1.5.6.0 now. And also thank you to Julien Breux for this really usefull module.
×
×
  • Create New...