bagendahl
Forum Replies Created
-
We also have same problem with version 2.1.13, downgraded to 2.1.11 (or 2.1.10 but it’s in package 2.1.11) and it works fine.
Forum: Plugins
In reply to: [Simple History – Track, Log, and Audit WordPress Changes] Edited the profileHi P?r,
It didn’t work, I think it was a typing error. I had to change to add_filter insted of add_action. I also had to adapt filter to a custom post type so I return false without any exeptions.
Thanks!
Forum: Plugins
In reply to: [Simple History – Track, Log, and Audit WordPress Changes] Edited the profileHi P?r,
It didn’t work, I think it was a typing error. I had to change to add_filter insted of add_action. I also had to adapt filter to a custom post type insert so the final code looks like this.
add_filter( "simple_history/log/do_log", function( $doLog, $level = null, $message = null, $context = null, $loggerInstance ) { $doLog = false; return $doLog; }, 10, 5 );
Thanks!
Forum: Plugins
In reply to: [Simple History – Track, Log, and Audit WordPress Changes] Edited the profileHi P?r,
It didn’t work, I think it was a typing error. I had to change to add_filter insted of add_action. I also had to adapt filter to a custom post type insert so the final code looks like this.
add_filter( "simple_history/log/do_log", function( $doLog, $level = null, $message = null, $context = null, $loggerInstance ) { $doLog = false; return $doLog; }, 10, 5 );
Thanks!
Forum: Plugins
In reply to: [Simple History – Track, Log, and Audit WordPress Changes] Edited the profileHi P?r
It didn’t work. I had to change to add_filter instead of add_action, but I think it was a typing error from you :). I also had to adapt this filter to a custom post type insert so the final code looks like this.
add_filter( "simple_history/log/do_log", function( $doLog, $level = null, $message = null, $context = null, $loggerInstance ) { $doLog = false; return $doLog; }, 10, 5 );
Thanks!
Forum: Plugins
In reply to: [Simple History – Track, Log, and Audit WordPress Changes] Edited the profileHi P?r,
I tried but it didn’t work. The final code had to be changed to add_filter not add_action. I also had to adapt this to custom post type so here is the solution and it works.
add_filter( "simple_history/log/do_log", function( $doLog, $level = null, $message = null, $context = null, $loggerInstance ) { $doLog = false; return $doLog; }, 10, 5 );
Thanks!
Forum: Plugins
In reply to: [Simple History – Track, Log, and Audit WordPress Changes] Edited the profileHi P?r
My script saves users with wp_insert_user, here is a part of the code.
// Merge data $userdata = array_merge($userdata, $add_userdata); // Save/Update user $do_user_id = wp_insert_user( $userdata ); // If error if (is_wp_error( $do_user_id )) { _savetolog( $userdata, null, 'error' ); _savetolog( $do_user_id, null, 'error' ); continue; }
How can I add simple_history/log/do_log to only log add user but not update user? Or if it’s not possible, how do I add shortcode to disable log on wp_insert_user?
Forum: Plugins
In reply to: [Event List] Unknown errorI have WP and plugins updated to latest version but I can’t get your plugin to work. When I try to add a new event I got follow message: Error: New Event “test” could not be added.
When I try to update an old event I got follow message: Error: Event “Testing” (id: 6) could not be modified.
Date format is set to “Y-m-d” but I have also tried “Y/m/d” without any luck. I also tried to reinstalled plugin but that didn’t help.
Please help me.Forum: Plugins
In reply to: [Yoast SEO] Fatal Error unable to delete old versionSame after upgrade to WP 3.8.
Fatal error: Call to undefined function schedule_yoast_tracking() in /var/www/public_html/wp-content/plugins/wordpress-seo/inc/wpseo-non-ajax-functions.php on line 29
Please help!
Hi
I know what you mean but this is a setting in Facebook that I do not know myself where it is, maybe someone else in the community can help with this issue.
Forum: Plugins
In reply to: [Be-It Facebook SideTab] [Plugin: Be-It Facebook SideTab] Twitter version?Yes, hopefully release in September I keep you updated.
We have now released a update that has mobile detection support. Download the latest version.
Bummer, I have now created a new version including mobile detection on/off and bug fix.
Forum: Plugins
In reply to: [Be-It Facebook SideTab] [Plugin: Be-It Facebook SideTab] Color SchemeWe have now updated plugin with this function. Download the new version.
We have now fixed this issue and there is a new version on WP.