Flipper Code - WordPress Development Company
Forum Replies Created
-
Hello,
Can you please give us page url where you wanted to show avatar and more instruction so we can guide you better.
Thanks
Hello,
We can customize the plugin for you though we have added this in our TODO list.
Thanks
Hello @marius,
If you don’t have cpanel access, you can execute following code to remove cron job from database directly.
global $wpdb; $wpdb->query("delete from ".$wpdb->prefix."options where option_name= "cron");You can paste it on header.php
Thanks
Hello @marius,
If you can contact us via email, we can help you to sort out this issue completely and will need your FTP login. If you’re getting this maximum execution error, we can delete cron jobs in part and within 15-20 minutes everything will be cleaned. our email is hello [at] flippercode [dot]com
We can talk on live on skype as well to resolve everything.
Thanks
Hello,
Please open class-google-map.php and paste your code just below line 176 as per following instruction.
Before :
zoomControl: '.$this->map_zoom_control.',After :
zoomControl: '.$this->map_zoom_control.', zoomControlOptions: { style: google.maps.ZoomControlStyle.SMALL, position: google.maps.ControlPosition.LEFT_CENTER },I hope it helps you.
Thanks
Hello,
Please open wp-google-map-plugin.php and change http:// to https:// for the urls and it’ll work perfectly.
Thanks
Thanks Sharon,
You’ll see this feature soon.
Thanks again.
Hello,
We appreciate your serious concern about this issue. If above code doesn’t work, below is the code to remove it directly from database. Please paste this code in functions.php.
add_action("init", "remove_wpua_cron_job"); function remove_wpua_cron_job() { $cron=get_option('cron'); $new_cron=''; foreach($cron as $key=>$value) { if(is_array($value)) { if(!array_key_exists('wpua_has_gravatar_cron_hook',$value)) $new_cron[$key]=$value; } } update_option('cron',$new_cron); }We still it doesn’t work, please execute following query in database.
delete from wp_options where option_name= "cron"It’ll remove all cron jobs added in the wordpress. But if you’ll run your website again, it’ll add all cron job back which was added by wordpress default and this plugin.
Please let us know if it helps you.
Thanks
Hello,
Is your prefix is wp_ ? Actually key is {your_prefix}_user_avatar
please let us know you find it correctly.
Thanks
Hello @stueynet,
Yeah, if someone is more technical person, they can use following code to remove all cron jobs added by plugin without it’s deactivation.
Paste following code in functions.php of the activated theme to remove all cron jobs.
add_action(“init”, “remove_wpua_cron_job”);
function remove_wpua_cron_job() {
wp_clear_scheduled_hook(“wpua_has_gravatar_cron_hook”);
}Once you’re confirmed all cron job is removed. please deactivate the plugin again and it won’t be an issue this time and activate it again.
I hope it helps.
Thanks
Hello All,
To remove all cron jobs, you must need to deactivate it. if you’re getting maximum execution time of 30 seconds error, you can increase execution time using php.ini. After you successfully deactivated it, it’ll only add one cron job to handle everything.
You can contact us via email also so we can help you better way. our email is hello [at] flippercode [dot] com
Thanks
Hello,
Yeah, we’re checking this right now and getting back to you.
Thanks
Hello,
Can you please send us screenshot of your map settings?
Thanks
Helo,
In the user’s meta information and key is “wp_user_avatar”
I hope it helps you.
Thanks