-
Content Count
803 -
Joined
-
Last visited
Community Reputation
41 ExcellentAbout Radu

-
Rank
PrestaShop Addict
- Birthday 08/18/1983
Contact Methods
- Website
Profile Information
-
Activity
Developer
Recent Profile Visitors
-
Adding a datepicker for delivery date on orders page
Radu replied to stevenjm 's topic in Core developers
Mahones, I didn't find a ticket in my support system with this username but please note the plugin has a tab called support on which you have the details to easily open a support request. In your case I'll need your exact prestashop version, thank you. -
CSV upload abort - HTTP Error 502
Radu replied to Atocx 's topic in Configuring and using PrestaShop
a little strange, however the error indicated clearly it's a WAF issue. I guess you tried with other links as well and still the same issue... -
CSV upload abort - HTTP Error 502
Radu replied to Atocx 's topic in Configuring and using PrestaShop
A you said previously regarding the log file it seems that has something to do with your web application firewall. How the image links look like? -
CSV upload abort - HTTP Error 502
Radu replied to Atocx 's topic in Configuring and using PrestaShop
hmm, the file is indeed small, you may also research if the hosting has mod security activated. -
How do I Add a new contact's block?
Radu replied to dreamer79119 's topic in Configuring and using PrestaShop
You can try to duplicate the module with a different name, changing also the main class. -
give it module installs but cannot set up free account
Radu replied to durangodave 's topic in Configuring and using PrestaShop
I am sorry but I can't see what the problem was. Can you please explain further what the issue was? -
CSV upload abort - HTTP Error 502
Radu replied to Atocx 's topic in Configuring and using PrestaShop
502 may appear also because a timeout the fcgi script (in your case php) takes too long to execute. So indeed the host can increase the limit if they want or try uploading a smaller csv file -
how to save messages to be shown after redirect?
Radu replied to fransjaeger 's topic in Core developers
yep, I don't know of such Message class that can be used across the pages -
I am not able to check now the code but try Context::getContext()->customer->id
-
Bulk Actions - enable and disable selection. What for?
Radu replied to goodghost 's topic in Configuring and using PrestaShop
But do you see this enable/disable selection for products? I don't see it for my presta version, can you give me an example please? -
Bulk Actions - enable and disable selection. What for?
Radu replied to goodghost 's topic in Configuring and using PrestaShop
if you want to enable or disable the selected modules/addons -
You can override the Mail class and in this way you have controll of all the emails that are sent through presta class Mail extends MailCore { public static function Send($id_lang, $template, $subject, $template_vars, $to, $to_name = null, $from = null, $from_name = null, $file_attachment = null, $mode_smtp = null, $template_path = _PS_MAIL_DIR_, $die = false, $id_shop = null) { switch ($template) { // do whatever you wish } } }
-
how to save messages to be shown after redirect?
Radu replied to fransjaeger 's topic in Core developers
You may want to check how controllers do in case of an error ($this->errors[] array) or you can implement your own way saving the data in the context/cookie
