megseoh
Forum Replies Created
-
Forum: Plugins
In reply to: [Health Check & Troubleshooting] Errors in php logSame
PHP Notice: Array to string conversion in /srv/www/preview/wp-content/plugins/health-check/includes/class-health-check-site-status.php on line 2014
My bad, the problem is with Smush.
Forum: Plugins
In reply to: [The Events Calendar] Inherit Theme’s FontsThat’s great news!
& thanks for the other suggestion ??
Forum: Plugins
In reply to: [The Events Calendar] Latest Update Wiped Out My CSSI was just contacted by another client who this affected. Their events no longer match their theme. Do you plan on fixing this?
Forum: Plugins
In reply to: [Contact Form 7] Rolling back formI used this WP Rollback plugin which was very easy to use & allowed me to roll back to 5.32 in one click. Highly recommend.
Forum: Plugins
In reply to: [Import and export users and customers] Export Not WorkingHi Javier,
I have ruled out Cloudflare.
I have 1000+ Users who are all Subscribers, that I imported last November, that I am unable to export because I imported them all on the same day.
So I can’t filter them to make the export any smaller because they all have the same User Role & same ‘User Created’ date.
I am able to export my Admins, so the issue isn’t that it won’t export anything at all, the issue is that my list of Subscribers is too large & I am unable to filter it.
I look forward to when you have worked in a method to make it able to prepare big exports.
Thank you for your responses ??
Forum: Plugins
In reply to: [Import and export users and customers] Export Not WorkingHi Javier,
Thank you for your response.
I tried numerous times to download different subsections of my Users, & if it contains any data it doesn’t work – same opens
/wp-admin/admin-ajax.php
& doesn’t download anything.If I selected a subsections of my Users with no data (eg. between Jan 1st-31st, 2019), the csv file downloads but it’s empty.
Are there any known conflicts?
I’m using Cloudflare – do I have to set a rule in order for the plugin to work?Thanks again,
Forum: Plugins
In reply to: [WP Job Manager] Errors from JQuery Upgrade in WP 5.6I am also experiencing this issue since upgrading to WordPress 5.6.
Temporarily using the Enable jQuery Migrate Helper plugin until there’s a fix.
Forum: Plugins
In reply to: [Manage Notification E-mails] Disable Some plugins were automatically updatedAwesome, thanks!
Forum: Developing with WordPress
In reply to: Delete unused capabilities left over from old pluginThank you for your replies! I’ve been distracted but am back trying to get rid of these old capabilities..
I didn’t see them listed in
wp_user_roles
, & I tried adding https://gist.github.com/jmahony/5686087 to my functions.php & nothing happened, & when I add it to a custom plugin I get a critical error/white screen of death. This is what I tried:add_action( 'admin_init', 'clean_unwanted_caps' ); function clean_unwanted_caps() { global $wp_roles; $delete_caps = array( 'arm_manage_members','arm_manage_plans','arm_manage_setups' ); foreach ($delete_caps as $cap) { foreach (array_keys($wp_roles->roles) as $role) { $wp_roles->remove_cap($role, $cap); } } }
& I am not at all acquainted with serialized array structures. How would I implement using the object’s remove_cap() method? I tried adding that snippet verbatim, only replacing
$cap
with'arm_manage_members'
, to myfunctions.php
, & got the critical error/white screen of death.I have a dev site that I can destroy in the process of figuring this out ??
Any further guidance would be appreciated. Thanks again.Thanks for your quick response!
How does the plugin resolve conflicting rules?
My editing member (editing yes) is also a subscriber (editing no) on our membership site. Could that be the issue?It may have changed from how it used to work, I’m a relatively new user of this plugin. You can generate a URL to log in as any User – it pops up when you click on “Edit user”. Here you can also define how long you able to use this URL to log in, & what happens after it expires. Copy the URL & paste it into a different browser or incognito window to log in as that User.
Screenshot: Where to click on Edit user
Screenshot: Where to copy link to Login with URLForum: Plugins
In reply to: [Zero Spam for WordPress] PHP Notice: Undefined indexOn top of this, the plugin broke my BuddyBoss membership registration. I had to delete it.
Forum: Plugins
In reply to: [The Events Calendar Shortcode & Block] Shortcode Stopped Working in WidgetThe Text widget totally works – thanks @brianhogg!
That worked! Thanks Carlos ??