MiKemp
Forum Replies Created
-
I moved the row of categories, scroll to the very bottom of the page.
Ugh, same issue, from Facebook. Tried adding the shortcode parameter, no luck (in fact it looks like it might have gotten worse).
Version:?6.4.9
WP 6.5.5?Forum: Plugins
In reply to: [Modula Image Gallery] Drag and drop sorting not working as expectedThank you!
Forum: Plugins
In reply to: [Simple Membership] “Need to login” shows when it shouldn’tUnfortunately, no. Toolset told us to talk to you, but I think there are some other issues with their plugin. Your responses here have been great, so I have confidence in SM. Looks like it’s time to rethink which plugins we use to handle various features.
Forum: Plugins
In reply to: [Simple Membership] “Need to login” shows when it shouldn’tThanks very much for all your time and efforts. By far one of the best support experiences I’ve had in 12 years of working with WordPress.
Forum: Plugins
In reply to: [Simple Membership] “Need to login” shows when it shouldn’tHi. It’s a Toolset View shortcode [wpv-view name=”view”]
Forum: Plugins
In reply to: [Simple Membership] “Need to login” shows when it shouldn’tHi. The only Custom Message is text in the Registration Successful field. Restricted Post (Not Logged-in) is empty.
Forum: Plugins
In reply to: [Simple Membership] “Need to login” shows when it shouldn’tThe code is below. But:
– The functions.php code definitely is gone with theme switch, AND
– The error message remains with theme change (I did not see that last time, but this time tested with WP22 and with the theme that is the parent of active child theme)
I have not tested for conflicts with other plugins yet.
Code is this –<?php // Defines define( 'FL_CHILD_THEME_DIR', get_stylesheet_directory() ); define( 'FL_CHILD_THEME_URL', get_stylesheet_directory_uri() ); // Classes require_once 'classes/class-fl-child-theme.php'; // Actions add_action( 'wp_enqueue_scripts', 'FLChildTheme::enqueue_scripts', 1000 ); // Change excerpt length function custom_excerpt_length( $length ) { return 20; } add_filter( 'excerpt_length', 'custom_excerpt_length', 150 ); // Disable Events menu up top // show events menu in admin bar only for admins if (!current_user_can('manage_options')) { define('TRIBE_DISABLE_TOOLBAR_ITEMS', true); } // Remove Toolset admin notices for all users except admin function remove_toolset_notices(){ if ( !current_user_can( 'administrator' ) ) { // test for administrator add_action( 'admin_notices', function() { remove_action( 'admin_notices', array( 'Toolset_Admin_Notices_Manager', 'show_notices' ) ); }, -1 ); } } add_action( 'init', 'remove_toolset_notices', 10 ); @ini_set( 'upload_max_size' , '64M' ); @ini_set( 'post_max_size', '64M'); @ini_set( 'max_execution_time', '300' ); // Add Dashboard widget add_action('wp_dashboard_setup', 'my_custom_dashboard_widgets'); function my_custom_dashboard_widgets() { global $wp_meta_boxes; wp_add_dashboard_widget('custom_help_widget', 'Theme Support', 'custom_dashboard_help'); } function custom_dashboard_help() { echo '<p><strong>Welcome to the "back end" of the website.</strong></p> <p>Use the menu on the left to create or edit your Bio, Books or Events.</p> <p>Click Dashboard to access the page you are on right now.</p> <p>Click xxxxxxx to create or edit your xxxxxxx bio page.</p> <p>Click xxxxxxx to add or edit your xxxxxxx.</p> <p>Click Events to create and publish an event.</p> <p>Members are encouraged to submit approval for RESOURCES and SPEAKERS BUREAU.</p> <p>Questions or concerns? Please contact xxxxxxx via email: <a href="mailto:xxxxxxxorg</a></p> <p>If you need to change your password, you can do that here: <a href="https://xxxxxxx/">Change password</a></p>'; }
Forum: Plugins
In reply to: [Simple Membership] “Need to login” shows when it shouldn’tThere is a small amount of code in a custom function.php, but that would go away with the theme change, right?
Other than that, no additional code.Forum: Plugins
In reply to: [Simple Membership] “Need to login” shows when it shouldn’tGood idea, but no change.
Disabled all but SMP – see here.Forum: Plugins
In reply to: [Simple Membership] “Need to login” shows when it shouldn’tIs there something else I can do to diagnose this?
Forum: Plugins
In reply to: [Simple Membership] “Need to login” shows when it shouldn’tThanks.
Tested with WP 2022 – no change.
No caching plugins, no host caching.
And each time a change is made I use Developer Tools to “Empty cache and hard reload.”Forum: Plugins
In reply to: [Simple Membership] “Need to login” shows when it shouldn’tWill do but will have to wait until tomorrow.
Thanks.Forum: Plugins
In reply to: [Simple Membership] “Need to login” shows when it shouldn’tThanks. We have installed
– SM After Login Redirections
– SM Custom Messages
– SM Google recaptcha
– SM Social Page Widget & Shortcode
– SM Simple Membership
Deactivated each, one at a time, and checked after emptying cache, with hard reload.
The only plugin that removes the code is SM Simple Membership.
What else can we try?
Thank you.Forum: Plugins
In reply to: [Simple Membership] “Need to login” shows when it shouldn’tThanks for the very quick response, but there are no Simple Membership shortcodes there.
The content on that page is generated by a Toolset View. Their shortcode is the only element on that page. The Simple Memebership notice seems to be randomly inserted into the middle of their content.
I do not see the message if I am logged in.
If I disable SM, the message goes away.- This reply was modified 2 years, 2 months ago by MiKemp.