tsjippy
Forum Replies Created
-
Forum: Plugins
In reply to: [UniqueID for Contact Form 7] E_ERROR on line 16 when updating CF7I cannot reproduce, sorry.
can you try disabling all plugins apart fro CF7?
I have just tested it on the latest wp and cf7 version
Forum: Plugins
In reply to: [WP Crontrol] Edit of phpcron event is not savedI have the same problem, 0ne out of 10? attempts to edit or delete an event is succesfull.
Very annoyingForum: Plugins
In reply to: [Mollie for Contact Form 7] Cannot activate pluginI did some ttroubleshooting.
The problem occurs only when you already have installed a plugin which uses an older version of GuzzleHttp.You should be able to activate the plugin when you deactivate all othe plugins except cf7
Forum: Plugins
In reply to: [UniqueID for Contact Form 7] click the submit buttonit should be the case like that.
But you can always have a look in the content of the pluginthank you found the bug in my own custom plugin
Forum: Plugins
In reply to: [Mollie for Contact Form 7] Cannot activate plugincan you try to reinstall the plugin?
That is because you redirect to another page, https://www.restaurantveerhuys.nl/acties/kerstontbijt-test/#wpcf7-f1210-p1213-o1, in my case. If you remove that it should work
Forum: Plugins
In reply to: [Modern Events Calendar Lite] sometime adding null post to the_contentthanks
Forum: Plugins
In reply to: [Modern Events Calendar Lite] sometime adding null post to the_contentI have the WordPress User Frontend plugin as well. the two plugins together don’t work well.
So everytime the mec_schedeler cron job runs (hourly), it ends up doing the apply_filters(‘the_content’) in the wpuf plugin, but it arrives with a global post variable which is nullForum: Plugins
In reply to: [UniqueID for Contact Form 7] inconsistency in the counterfixed in version 2.3.0
Forum: Plugins
In reply to: [UniqueID for Contact Form 7] Minimum character IDI just added a filter:
You can filter the value using the cf7_submission_id_filter. To add leading zeros for example, just put the code below in your functions.php add_filter('cf7_submission_id_filter', 'custom_cf7_submission_id_filter'); function custom_cf7_submission_id_filter($val){ return sprintf("%04d", $val); }fixed in 2.3.0
Forum: Plugins
In reply to: [UniqueID for Contact Form 7] Same ID generated two timesI think this will is fixed in version 2.3.0
Forum: Plugins
In reply to: [WP STAGING - WordPress Backup, Restore & Migration] hooks do not workits working now, but to prevent the logmessages I had to add the following:
file Logger.php line 152:
if(is_array($message)){ $messageString .= "[{$message["type"]}]-[{$message["date"]}] {$message["message"]}".PHP_EOL; }file SearchReplace.php line 500:
if ($key === '' || is_int($key) || ord($key[0]) === 0) {Forum: Plugins
In reply to: [UniqueID for Contact Form 7] it doesnt count after cacheI tested on my own site. I have W3 Total Cache combined with cloudflare. Here everything works fine. Did you flush the cache?