MiKemp
Forum Replies Created
-
Forum: Plugins
In reply to: [Widgets for Google Reviews] Critical IssueThanks for your efforts!
That’s correct. My permissions are the same.
https://app.screencast.com/ZcTcpBRzUON7B?conversation=CLZJGxSbzUjECELAOqf82r
Yes, works for the Editor.
- This reply was modified 8 months, 3 weeks ago by MiKemp.
Thanks – both of those already enabled. I have disabled and re-enabled, also.
Forum: Plugins
In reply to: [Rank Math SEO – AI SEO Tools to Dominate SEO Rankings] Adding pagesThanks for the reply – I thought I had closed this a few minutes after I submitted it.
This was not a RankMath issue at all.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Cron job with no actionThanks again, Tobias.
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.5Thank 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="http://xxxxxxx/">Change password</a></p>'; }