Title: Allala's Replies | WordPress.org

---

# Allala

  [  ](https://wordpress.org/support/users/allala/)

 *   [Profile](https://wordpress.org/support/users/allala/)
 *   [Topics Started](https://wordpress.org/support/users/allala/topics/)
 *   [Replies Created](https://wordpress.org/support/users/allala/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/allala/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/allala/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/allala/engagements/)
 *   [Favorites](https://wordpress.org/support/users/allala/favorites/)

 Search replies:

## Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] Events Calendar 6.2.3.2 bug after upgrade](https://wordpress.org/support/topic/events-calendar-6-2-3-2-bug-after-upgrade/)
 *  [Allala](https://wordpress.org/support/users/allala/)
 * (@allala)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/events-calendar-6-2-3-2-bug-after-upgrade/#post-17133923)
 * Hello.
 * 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.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Not able to insert gallery in post/page with Betheme](https://wordpress.org/support/topic/not-able-to-insert-gallery-in-post-page-with-betheme/)
 *  Thread Starter [Allala](https://wordpress.org/support/users/allala/)
 * (@allala)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/not-able-to-insert-gallery-in-post-page-with-betheme/#post-11660060)
 * Hello [@mihaiimagely](https://wordpress.org/support/users/mihaiimagely/).
 * Thanks for your quick answer 🙂 I’m marking this issue as “resolved”, hoping 
   that it may help others.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Not able to insert gallery in post/page with Betheme](https://wordpress.org/support/topic/not-able-to-insert-gallery-in-post-page-with-betheme/)
 *  Thread Starter [Allala](https://wordpress.org/support/users/allala/)
 * (@allala)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/not-able-to-insert-gallery-in-post-page-with-betheme/#post-11658511)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact form 7 Custom validation] Not working correctly with CF7 over 4.8](https://wordpress.org/support/topic/not-working-correctly-with-cf7-over-4-8/)
 *  Thread Starter [Allala](https://wordpress.org/support/users/allala/)
 * (@allala)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/not-working-correctly-with-cf7-over-4-8/#post-9865972)
 * Hi.
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Activity Log - Monitor & Record User Changes] Emails not sending?](https://wordpress.org/support/topic/emails-not-sending-36/)
 *  [Allala](https://wordpress.org/support/users/allala/)
 * (@allala)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/emails-not-sending-36/page/2/#post-5964870)
 * 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.6
 * From 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Activity Log - Monitor & Record User Changes] Emails not sending?](https://wordpress.org/support/topic/emails-not-sending-36/)
 *  [Allala](https://wordpress.org/support/users/allala/)
 * (@allala)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/emails-not-sending-36/page/2/#post-5964861)
 * 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 🙂

Viewing 6 replies - 1 through 6 (of 6 total)