Allala
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Events Calendar 6.2.3.2 bug after upgradeHello.
The same happens to me. Same WP version, but with PHP 8.1.8. No further errors logged. In my case, we have it in a dedicated SUSE 15 SP3 server.
I’ve also tested deactivating all of the other plugins, but the problem persists.
Hello @mihaiimagely.
Thanks for your quick answer 🙂 I’m marking this issue as “resolved”, hoping that it may help others.
Wow, just found something new that gives a hint of where the problem may be.
In the theme’s options you can limit the visibility of the builder that comes with that theme: Muffin Builder. I limited it to administators only, and with lower profiles, the builder does not load, and the button works correctly.
At least, the other users that have to upload content can now create galleries, and considering I’m the only administrator, I can always create the gallery first and use a shortcode to insert it. However, maybe you still find this issue interesting to check it out.
Rergards.
Forum: Plugins
In reply to: [Contact form 7 Custom validation] Not working correctly with CF7 over 4.8Hi.
A couple of days after my post, wsms2018 defined more correctly the problem than me. As you requested, I’ve tested your updated plugin with the latest ContactForm version, in a clean installation, and now it works perfectly.
Thank you for your good work, I mark the problem as solved 🙂
Forum: Plugins
In reply to: [Activity Log - Monitor & Record User Changes] Emails not sending?Hello Sigor.
Sorry for the late answer, but here you have it.
File: wp-content/plugins/aryo-activity-log/classes/class-aal-notifications.php
Version: 2.2.6From line 44 to 49, you can find this:
switch ( $n_key ) { case 'action-type': if ( $n_value == $args['object_type'] ) $notification_matched_rules[] = $notification_rule; break; }Change this block of code for the following:
switch ( $n_key ) { case 'action-type': if ( $n_value == $args['object_type'] ) $notification_matched_rules[] = $notification_rule; break; case 'user': if ( $n_value == $args['user_id'] ) $notification_matched_rules[] = $notification_rule; break; case 'action-value': if ( $n_value == $args['action'] ) $notification_matched_rules[] = $notification_rule; break; }Forum: Plugins
In reply to: [Activity Log - Monitor & Record User Changes] Emails not sending?Hello.
In my case, I wanted an email sent when a specific user logged in. The plugin was not sending emails because the type of action was not being checked. So I added the following just after statusx‘s code:
case 'action-value': if ( $n_value == $args['action'] ) $notification_matched_rules[] = $notification_rule; break;It worked for me 🙂