kuphd1
Forum Replies Created
-
can’t even downgrade to a previous version that used to work. backups totally fail. i used to love this plugin. now it’s making my life miserable. what the heck happened?
Hopefully that’ll be out soon since I just had a site’s backup fail because it’s storage quota had been exceeding by the backups.
Oh… and it’s not deleting the new version’s backups from the server either. It’s looking like I may need to downgrade your plugin ’til you can get this fixed.
Hi Brandon,
All I’m saying is it would’ve been nice not to have to go back and manually delete the previous version’s backups so as to not fill up all of our storage space on our servers and/or external backup sites. In my case, I’m going to have to manually clear all of these old backups on both my servers and my Dropbox account since I’ve got scheduled backups set. This is a huge pain that shouldn’t have been necessary. Right now, I have one site that has almost 6GB of old backups that are just sitting there taking up space.
Excellent. I’ll let ya know when I have something.
Thanks again. ??
jason
Would it be okay if I ported your plugin to work with the new API? I wanted to ask before I started working on it.
Thanks. ??
Hi @andrewza,
Thanks much and happy holidays to you as well. ??
Okay… maybe not last thing… LOL
It looks like adding a conditional around the code above fixes it. So…
$user->membership_level->enddate = strtotime( get_option( 'timezone_string' ), $user->membership_level->enddate );
… would become…
if($end_date) { $user->membership_level->enddate = strtotime( get_option( 'timezone_string' ), $user->membership_level->enddate ); }
It seems the error is occurring because the logged in user (in this case, my admin account) doesn’t have a membership attached to it. Thus… no “enddate”. But wrapping that conditional around it solves the issue.
Darn… last thing. It’s being used in conjunction with the Theme My Login plugin.
Sorry… this is on the user profile page on the front end. Should’ve included where I’m getting the error.
Forum: Plugins
In reply to: [ACF: Google Map Extended] Oops! Something went wrong.well shoot. thought i might’ve had the solution, but i can’t get it to work either. even with deregistering the Maps Extended Google script and replacing it with my own link to the API, it still doesn’t work. i’m stumped on this one. ??
Forum: Plugins
In reply to: [ACF: Google Map Extended] Oops! Something went wrong.I just assumed the filter would work as a tie-in for the ACF plugin. As far as I know, as long as an API key is provided, it should work. Maybe the Extended plugin gives it’s own filter and cancels out that of the ACF plugin itself? If so, maybe having your filter called with a higher priority might work. Possibly something like changing…
add_filter('acf/fields/google_map/api', 'my_acf_google_map_api');
to…
add_filter('acf/fields/google_map/api', 'my_acf_google_map_api', 999);
Forum: Plugins
In reply to: [Anything Order] Broken on 4.7I can confirm this. Hope someone takes over development of this. It’s a definite must for several of my sites.
Forum: Plugins
In reply to: [ACF: Google Map Extended] Oops! Something went wrong.This is what I was able to do to get it working again.
https://www.advancedcustomfields.com/blog/google-maps-api-settings/
The code below is for ACF Standard. You can find the code for ACF Pro by going to the link above. Just insert it into your theme’s functions.php file and it should work.
function my_acf_google_map_api( $api ){ $api['key'] = 'YOUR_API_KEY'; return $api; } add_filter('acf/fields/google_map/api', 'my_acf_google_map_api');
Forum: Plugins
In reply to: [The Events Calendar] ui.theme.css file conflicts with Magic Members pluginNo problem, Andras. ??
A permanent fix might work by going the reverse route and only enqueuing (is that even a word… LOL) the ui.theme.css file for the screen it’s meant to style.
By the way… excellent plugin. By far the best of its kind. ??