eventualo
Forum Replies Created
-
Hi guys, sorry but for the moment I cannot work to the update the plugin.
Some parts of the codebase are very old, so I think I have to refactor a lot of functionalities.
The latest plugin version (tested with WP 5.4) is available on Github.
For the moment I haven’t time to update it, sorry.Forum: Plugins
In reply to: [User Role Editor] Settings not saved: maybe issue with Domain Mapping?Sorry for delay. Now it works on that multisite.
Thank you very much!Forum: Plugins
In reply to: [ALO EasyMail Newsletter] Incompatible with PHP 8Hi kudlav, sorry for delay.
It’s not related to EasyMail plugin itself, but to the PHPMailer library provided by WP. This library uses a PHP module that seems to be missing on your server.
You should ask you provider to install php-ctype module.
I hope it helps.Forum: Plugins
In reply to: [ALO EasyMail Newsletter] Adding unsubscribed user to the listHi michfm, it’s not possible using admin tools, but you can add an unsubscribed email using the newsletter widget/page on your blog frontend.
The subscriber will receive the activation email, unless you disabled the setting in plugin options (if you are using this default option, you can disable it for a while, subscribe the email again, and re-enable the setting).Forum: Plugins
In reply to: [ALO EasyMail Newsletter] Log of double opt-inOk, so I think the only open point is that the plugin should keep the IP taken on subscription, to not update it and show it in privacy export.
So in next release I can remove the IP update when a subscriber make other action, only the IP of subscription will be stored and printed in privacy export.Forum: Plugins
In reply to: [ALO EasyMail Newsletter] Log of double opt-inHi herrurbach, thanks for your remarks.
About the join date, it’s stored in subscriber record.
In plugin settings there is the option to store IP address. But the plugin stores only the IP address of the last subscriber action: so the IP on registration can be updated with a new one if the subscriber makes other action (e.g. update subscription).
About export data, the plugin allows to export/delete subscriber data in WP privacy tool. I have to add IP address to privacy export. I’ll do in next release.Forum: Plugins
In reply to: [ALO EasyMail Newsletter] How to enable comments on newsletter postsHi wpallweb, thanks a lot for the donation.
To enable comments you can add this line to your theme functions.php:add_post_type_support( 'newsletter', 'comments' );
Then I think you can open/close comments in each newsletter.
Let me know if it works.
Forum: Plugins
In reply to: [ALO EasyMail Newsletter] Export UnsubscribedYes, it’s an old feature, not available after the last update to be compliant with GDPR. I have to remove it, thanks for remark.
Forum: Plugins
In reply to: [ALO EasyMail Newsletter] Resending newletterHi, Duplicate Post plugin is the right way. You have to go in settings of Duplicate Post and add also newsletter as duplicable post type.
Forum: Plugins
In reply to: [ALO EasyMail Newsletter] Subscription and unsubscription don’t workHi, ok, I understood. Are there any php errors in your server logs? Please ask to your provider. Maybe there could be some useful info to understand what happens.
BTW, I’m going to make some tests in future.Forum: Plugins
In reply to: [ALO EasyMail Newsletter] [ALO-EASYMAIL-PAGE] – How to edit?Hi, I don’t suggest that you edit the plugin files directly: you will loose your modifications on next plugin update.
Some texts are editable in plugin settings, then you could see the output html of the widget in your Newsletter page and add your custom CSS in your theme or in Customizer.
I hope it helps.Forum: Plugins
In reply to: [ALO EasyMail Newsletter] Subscription and unsubscription don’t workHi, I’ve just made a subscription on your site (you should find my eventualo email in your subscriber list) and I’ve got the success message: Votre abonnement à ma lettre d’information a bien été pris en compte.
Merci beaucoup de votre intérêt pour ma petite dimension et au plaisir d’échanger avec vous !
Please can you check if you can see my subscription properly activated?
So the issue doesn’t seem to be general. Maybe it could be related the the device and/or browser.Forum: Plugins
In reply to: [ALO EasyMail Newsletter] Error message about REST APIHi debra15, thanks for you report. I’ll fix it in next release.
About your question, if I understand well, you can send only newsletters manually, the plugin cannot send automatically system messages.Forum: Plugins
In reply to: [ALO EasyMail Newsletter] plugin database tables have not properly installedHi, very strange…
I think you already read it, but to be sure here there is the sql query to install manually the table: https://www.eventualo.net/blog/wp-alo-easymail-newsletter-faq/#faq-20
Otherwise, you can go in EasyMail general settings and flag the “Delete all plugin data on deactivation” setting (2 checkboxes) and then de-activate the plugin. In this way the plugin will remove db tables before deactivating.
I hope it helps.Forum: Plugins
In reply to: [ALO EasyMail Newsletter] Problems with the pluginHi, sorry for delay.
Maybe it can be enough to replace line 54 of filealo-easymail_multiple-posts-placeholder.php
:$real_count = count($placeholders);
with this line:
$real_count = count((array)$placeholders);
I hope it helps. Let me know, then I’ll update the plugin.