braikar
Forum Replies Created
-
Forum: Plugins
In reply to: [eShop] [Plugin: eShop] Translation in option setsWell I had other things to do, I got back to it and fixed the problem, to make it compatible with qtranslate.
I had to update all $optsets[‘name’] and $opsets[‘label’] to __($optsets[‘name’]) and __($opsets[‘label’]), I actually added the wrapper around all $op(t)sets[‘…’] in functions to display the settings on the user side, so that now these can be translated either using a po/mo file or qtranslate language tags.
I don’t know if there’s any risk in changing the whole plugin like that, but that does the trick for me. (apart that obviously with new updates I’ll have to reedit these..)Forum: Plugins
In reply to: [eShop] [Plugin: eShop] Email Not Sending to Admin or CustomerNah, as I said for other plugins wp_mail works just fine, it’s just with eshop that it doesn’t.. Anyway maybe it’s a conflict or somethign else. switching wp_mail to mail works fine, topic is over for me 😉
Forum: Plugins
In reply to: [eShop] [Plugin: eShop] Email Not Sending to Admin or CustomerHi, nope sorry I had missed the previous reply. I’m not using paypal sandbox… only changing wp_mail to mail solved the problem :s
Forum: Plugins
In reply to: [eShop] [Plugin: eShop] Email Not Sending to Admin or CustomerYour answer didn’t solve my problem… I tried setting smtp settings with ‘configure SMTP’, it didn’t change a thing. I tried other random plugins that use wp_mail() to send emails, they all worked (even before using configure SMTP), but wp_mail() inside the eshop plugin doesn’t work for some reason! I don’t know why and anyway I don’t mind changing core files as long as everything works, wp_mail() and mail() do exactly the same, except that wp_mail is defined in case the php settings don’t include php mail. As long as it works I’m fine.
Thanks for the quick replies though 🙂Forum: Plugins
In reply to: [eShop] [Plugin: eShop] Email Not Sending to Admin or CustomerDo you have wordpress 3.2.1 ?
If yes I had the same problem and it’s kind of strange, I noticed wp_mail was updated in this update e.g. I have a deprecated pluggable.php file where wp_mail is defined.Well it’s strange because I had to replace wp_mail with mail (default php function) in all eshop files to get the emails to work again.
What is strange is that wp_mail works for another plugin I have (Fast Secure Form) which uses wp_mail too, but wp_mail always returns ‘false’ in any eshop file.I just posted there http://quirm.net/forum/topic.php?id=4297
I don’t know exactly what changed with that wordpress 3.2.1 update, but the problem lies there, because before that update my eshop plugin was working fine.