Jb Audras
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Auto-updates] Question@nesoor successful and failed auto-updates are merged into only one email, to avoid flooding mailboxes.
That being said you can hook on the notification emails and send only failed updates, using
wp_autoupdates_notifications_emailfilter.Forum: Plugins
In reply to: [WordPress Auto-updates] QuestionHello,
Sure, there two ways to disable email notifications: with a constant in your
wp-configfile, or using a filter in your theme’sfunctions.phpfile.Using constants
Disable plugins auto-updates email notifications:
define( 'WP_DISABLE_PLUGINS_AUTO_UPDATE_EMAIL', false );Disable themes auto-updates email notifications:
define( 'WP_DISABLE_THEMES_AUTO_UPDATE_EMAIL', false );Using filter hooks
Disable plugins auto-updates email notifications:
function wporg_disable_plugins_auto_update_email() { return false; } add_filter( 'send_plugins_auto_update_email', 'wporg_disable_plugins_auto_update_email' );Disable themes auto-updates email notifications:
function wporg_disable_themes_auto_update_email() { return false; } add_filter( 'send_themes_auto_update_email', 'wporg_disable_themes_auto_update_email' );Cheers,
JbForum: Plugins
In reply to: [WordPress Auto-updates] Does it have a feature to Auto-Update core ?Hi @ttodua, thanks for getting in touch,
Please note that this plugin is a Feature Plugin, which means it is developed to test a future WordPress Core feature.
Core auto-updates are going to be added to WordPress Core later, hopefully in WordPress 5.6 scheduled at the end of the year. For the moment, this feature plugin only focuses on plugins and themes auto-updates, planned for WordPress 5.5 (mi-August).
Cheers,
JbForum: Plugins
In reply to: [WordPress Auto-updates] How to set a theme auto-update enabled?Hi @scegg and thank you for opening this issue,
Themes auto-updates feature was planned for release 0.4, which is now available for testing 🙂
Enjoy!
Cheers,
JbForum: Plugins
In reply to: [Contextual Adminbar Color] ForumWP incompatibilityHello @safea and thank you for your message,
I’m sorry but I can’t tell why it doesn’t work as this is a premium plugin… I can’t access the source code of the plugin 🙁
There is probably a hook in this plugin that prevent us to filter WordPress hooks 🙁
Forum: Plugins
In reply to: [PDF Viewer Block for Gutenberg] How to link out of the pdf?Hello,
I’m sorry, but it’s not possible for the moment with this plugin 🙂
I don’t have this in the roadmap now, so I’d prefer to close the issue so you’re not excepting for something that is not scheduled…Thanks for your comprehension 🙂
Cheers,
JbForum: Plugins
In reply to: [PDF Viewer Block for Gutenberg] Permission problemHi!
It works on my side, when visiting the link you shared. The PDF are showing 🙂
Forum: Plugins
In reply to: [GDPR Data Request Form] alternate captcha support?Hi,
Sorry, but there is no plan to change the captcha for the moment.
Best regards,
JbForum: Plugins
In reply to: [GDPR Data Request Form] German translation missingHi @filout,
Yep, that’s because the German translation is not completed: https://translate.wordpress.org/locale/de/default/wp-plugins/gdpr-data-request-form/
You are most welcome to contribute to this translation if you want, or wait for German contributors to finish the translation.
I can’t do anything on my side, as it is handled by the German WordPress community 🙂
Cheers,
JbForum: Plugins
In reply to: [GDPR Data Request Form] white page with messageForum: Plugins
In reply to: [GDPR Data Request Form] Changer la longeur des zone de texteThanks @benoitappaloosa for answering @tooladrake, you rock! ♥️
Forum: Plugins
In reply to: [Embed Block for TikTok] Tik tok pluginHi there,
This is going to happen natively in WordPress 5.4, planned for March 31, 2020!
Cheers,
JbForum: Plugins
In reply to: [WordPress Auto-updates] Fatal errorFixed in version 0.1.5, thank you very much @knutsp ! <3
Forum: Plugins
In reply to: [Reusable Blocks Extended] Reusable Blocks causing 502 ErrorHi @grandprintco ,
I really can’t imagine how this error appears… could you please share the URL of your website? Would it be possible to know the list of your plugins (you can grab the full list on the Site health screen) and the name of your theme?
Thanks,
JbForum: Plugins
In reply to: [PDF Viewer Block for Gutenberg] JS conflict with shapely themeHello,
Thanks for the feedback, and for your investigations!
I’ll try to reproduce the issue and publish a patch asap.