joanlaura404
Forum Replies Created
-
In my case, I have memberpress pro installed. They have many email templates that we have the ability to change and turn on/off but emails related to password resets are not one of them.
Yep, I’m seeing those two and have created custom templates for them, but I was also seeing a third that seemed to be triggered after a successful reset. I created other user notifications templates and set them to disabled. I’ve gone through ways a wordpress user can usually change their password and cannot seem to trigger this email again, so I’m gonna call it a glitch or fixed until I see it show up again.
Thanks for your help!
Forum: Plugins
In reply to: [Modern Events Calendar Lite] error while fetching eventsI want to share that I have this exact same experience and solution as well. We have been using the General Calendar layout for our achive shortcode for probably a year with no issues. Yesterday, I updated the plugin to the latest version and today the client reported the error message “there was an error while fetching events!” on their site. We looked at recent events added to see if there was something added that could’ve triggered an error, but did not find anything. We changed the shortcode layout to Full Calendar and it’s working and loading content fine. I tried a few other layouts, but none had issues fetching events, it appear to only be an issue with the General Calendar layout.
MEC 7.14.0
WordPress 6.6.1
PHP 8.1.29Hope a future update resolves this issue as the client prefers the look of the general calendar.
I have created a ticket.
I should add that the timestamps are correct in the admin listings dashboard
Theme installed is CL Classified v 1.2.0
Plugins installed and active:
CL Classified Core – 1.0.2
Classified Listing plugin – 2.6.6
Elementor – 3.18.3
RT Framework – 2.8
I just refreshed my test account payment history page and all the date/time stamps updated to right the moment I refreshed.
Forum: Plugins
In reply to: [Weather Atlas Widget] Latest Release (V2.0.1)I updated, the widget is working, it was showing hourly where it wasn’t before so I added hourly=0 to the shortcode to remove as we just need the current temp. The plugin dashboard however still shows this text (pasting in case there is a difference from above)
“; echo “
” . __( ‘Fair usage policy restricts widget instances to a maximum of 10. Please edit or delete existing widgets before adding new ones.’, ‘weather-atlas’ ) . “”; echo “
prepare( “SELECT * FROM {$wpdb->options} WHERE option_name LIKE %s”, $prefix . ‘%’ ); $widget_options = $wpdb->get_results( $query ); // Unserialize and sort $widget_options by ‘widget_name’ usort( $widget_options, function( $a, $b ) { $a_data = unserialize( $a->option_value ); $b_data = unserialize( $b->option_value ); return strcmp( $a_data[ “widget_name” ], $b_data[ “widget_name” ] ); } ); foreach ( $widget_options as $option ) { $widget_data = maybe_unserialize( $option->option_value ); // Extract widget ID from the option name $widget_id = str_replace( “weather_atlas_widget_”, “”, $option->option_name ); $widget_name = isset( $widget_data[ ‘widget_name’ ] ) ? $widget_data[ ‘widget_name’ ] : ‘Weather Atlas Widget ‘ . $widget_id; // Generate edit link $edit_link = admin_url( ‘admin.php?page=weather-atlas-widget&edit_widget_id=’ . $widget_id ); // Generate delete link $delete_link = admin_url( ‘admin.php?page=weather-atlas&action=delete&widget_id=’ . $widget_id ); // Display edit and delete links echo “
“; echo do_shortcode( ‘[shortcode-weather-atlas selected_widget_id=’ . $widget_id . ‘]’ ); echo “”; echo “
“; echo “” . __( ‘Edit’ ) . ” ” . esc_html( $widget_name ) . “ “; echo “” . __( ‘Delete’ ) . ““; echo “”; echo “
“; } if ( count( $widget_options ) < 10 ) { // Link to add new echo “
“; echo “” . __( ‘Add New Location’, ‘weather-atlas’ ) . ““; echo “”; } else { echo “”; } ?>
Forum: Plugins
In reply to: [Weather Atlas Widget] Latest Release (V2.0.1)I’m having a similar issue, the shortcode wasn’t working properly and when I looked to settings I get this:
“; echo “
” . __( ‘Fair usage policy restricts widget instances to a maximum of 10. Please edit or delete existing widgets before adding new ones.’, ‘weather-atlas’ ) . “”; echo “
get_results( “SELECT * FROM {$wpdb->options} WHERE option_name LIKE ‘weather_atlas_widget_%'” ); // Unserialize and sort $widget_options by ‘widget_name’ usort( $widget_options, function( $a, $b ) { $a_data = unserialize( $a->option_value ); $b_data = unserialize( $b->option_value ); return strcmp( $a_data[ “widget_name” ], $b_data[ “widget_name” ] ); } ); foreach ( $widget_options as $option ) { $widget_data = maybe_unserialize( $option->option_value ); // Extract widget ID from the option name $widget_id = str_replace( “weather_atlas_widget_”, “”, $option->option_name ); $widget_name = isset( $widget_data[ ‘widget_name’ ] ) ? $widget_data[ ‘widget_name’ ] : ‘Weather Atlas Widget ‘ . $widget_id; // Generate edit link $edit_link = admin_url( ‘admin.php?page=weather-atlas-widget&edit_widget_id=’ . $widget_id ); // Generate delete link $delete_link = admin_url( ‘admin.php?page=weather-atlas&action=delete&widget_id=’ . $widget_id ); // Display edit and delete links echo “
“; echo do_shortcode( ‘[shortcode-weather-atlas selected_widget_id=’ . $widget_id . ‘]’ ); echo “”; echo “
“; echo “” . __( ‘Edit’ ) . ” ” . esc_html( $widget_name ) . “ “; echo “” . __( ‘Delete’ ) . ““; echo “”; echo “
“; } if ( count( $widget_options ) < 10 ) { // Link to add new echo “
“; echo “” . __( ‘Add New Location’, ‘weather-atlas’ ) . ““; echo “”; } else { echo “”; } ?>
It is odd, the memberpress users are getting added to the mailpoet list but none of them are subscribed because they are not getting the confirmation email that mailpoet requires to start sending them our newsletter. So the integration is basically useless.
Forum: Plugins
In reply to: [Translate WordPress - Google Language Translator] Conflict with Ninja TablesI have created a dev site to show the issue.
On this page, https://wordpress-528584-2869543.cloudwaysapps.com/locate-expand/business-climate/employers-occupations/ my browser shows 4 language dropdown boxes.
On this page, https://wordpress-528584-2869543.cloudwaysapps.com/locate-expand/business-climate/demographics/ I’m seeing 7 language dropdown boxes.
It does seem to be adding one additional dropdown box for each ninja table on the page.