ookimb
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Tooltips stopped workingYayyy, still working smoothly today! Thanks again for this beautiful plugin!
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Tooltips stopped workingWanted to add:
Newest version of plugin/latest WP, Feed caches cleared:
Calendars showed highlighted events, no hover
UNCHECKING THE FOLLOWING GC Setting MADE HOVER APPEAR AGAIN:
Always Enqueue Scripts & Styles Enqueue this plugin’s scripts and styles on every post and page. Useful if using shortcodes in widgets or other non-standard locations.Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Tooltips stopped workingSomething I’ve noticed, it works one minute, next time I check it’s undone again- so it has to do with cache, maybe? Also, the new version has different Google API settings available – when you’ve updated the plugin then gone back to an older version (because the new one stops working, but the old one seems to again, before it stops showing events as highlighted) you’ve saved the new plugin settings, which are:
Google API Key
Always Enqueue Scripts & Styles
Disable Plugin CSS
and, most importantly: ***Save Settings Save your settings when uninstalling this plugin. Useful when upgrading or re-installing.*** – I refer to this because this error appeared above the calendar a couple times:
A valid URL was not provided. Please ensure your feed URL is correct.A valid URL was not provided. Please ensure your feed URL is correct.A valid URL was not provided. Please ensure your feed URL is correct.The feeds never changed, still accurate, they work/are recognized when yet again I updated the plugin. I also went to /wp-admin/edit.php?post_type=gce_feed and went through the feeds clearing cache for each one (you have the options: Edit | Quick Edit | Trash | View | Clear Cache) under the feed names.
Sorry for such a long post- this has resolved it for me for the moment, hope it helps others too..!
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Hover not working@lakewatcher3, try this in your child theme css:
.gce-widget-grid .gce-calendar .gce-has-events
{
cursor: pointer;
color: #e47939
}Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Hover not workingI’m having the same problem, been able to resolve it in previous versions but this time I’ve returned to an older version – hover tooltips working again with the older GCE/updated wordpress. Tried turning off/on “Always enqueue scripts and styles” option in the general settings of the plugin?, adding a new API key, deactivating/reactivating plugin, etc. Just love this widget, btw – it’s so beautiful and useful – thanks for all your hard work!
Best wishes,
kimForum: Plugins
In reply to: [WordPress Posts Timeline] Shortcodes Broken in Timelineor would it be this function, below (the above deals with adding timeshortcode, not stripping existing code) -if so could i somehow add if a specific code thread is found, strip it?
thanks,
kim//function timeline_text($limit){
//$str = get_the_content(”, true, ”);
//$str = strip_tags($str);
// if(stripos($str,” “)){
// $ex_str = explode(” “,$str);
// if(count($ex_str)>$limit){
// for($i=0;$i<$limit;$i++){
// $str_s.=$ex_str[$i].” “;
// }
// return $str_s;
// }else{
// return $str;
// }
// }else{
// return $str;
// }
//}