• Resolved South Ghost

    (@south-ghost)


    Hello, ever since I upgraded to WP 4.0 and GCal 2.03, my calendar widget is now giving me a message that says ” There are currently no events to display”. Nothing has changed in my settings. The google calendar is showing events. Since then I’ve been reading this forum and reverted to 2.02 But I’m still getting the same message.

    Any thoughts on the issue?

    Thank you,
    South Ghost

    https://www.ads-software.com/plugins/google-calendar-events/

Viewing 12 replies - 16 through 27 (of 27 total)
  • Plugin Contributor Nick Young

    (@nickyoung87)

    There is a new version 2.0.7 out now. Can you update and let me know if it fixes anything for you?

    Thanks!

    I have updated to version 2.0.7 and I am still having the same issue. Some of my feeds are pulling in events and some are not. All of the feeds have events on Google Calendar.

    I have cleared the cache and even updated the feed links. Nothing seems to be fixing the issue.

    Was anything changed on the feed import in the 2.0 update?

    Hi I have just updated a site with 2.0.7 (updated from the old original). I only use the widget on the site for events. With the widget set to list it does not show up the event which exists on the 12th December (the old version did) – although the updated plugin is set to look up to 2yrs ahead. I’ve cleared the cache but still no show. If I use the option Back and Next and keep clicking Next it will eventually show up so this proves it is reading the feed but as a method of display for a list it is like shooting in the dark.

    I created a new entry for each feed not importing and everything seems to be working properly now. Just thought I’d offer the suggestion for others.

    Plugin Contributor Nick Young

    (@nickyoung87)

    @candlelite

    Are you displaying by number of days or by number of events?

    @jesatrix,

    Thanks for the update, glad you could get it working.

    Candlelite

    (@candlelite)

    Nick – thanks for that – did not see that setting. Changed the drop down in the widget to events and everything is now showing. Once again thanks.

    Plugin Contributor Nick Young

    (@nickyoung87)

    Awesome, glad to hear that! ??

    Hello Nick!

    I’m having problems REMOVING the next/back buttons from my list view widget in my sidebar even though I deselected the “Display Next and Back navigation links” option in the Feed Settings Module. For clarity, I do NOT want the next/back buttons to be displayed.

    Thanks for your help!

    Rob
    https://www.readking.net

    I figured it out. I removed:

    $paging=( isset( $instance['paging'] ) ? $instance['paging'] : null );

    from the google-calendar-events/views/widgets.php file.

    Hopefully this won’t mess up anything else!

    Plugin Contributor Nick Young

    (@nickyoung87)

    Hey Rob,

    Glad you were able to get it working. You might also try this:

    https://gist.github.com/nickyoung87/9c716d3e2f1a8c6eef9c

    That is a filter allowing you to adjust the text. You could try just returning an empty string – return '';

    I suggest that if this works that you use this method so that you don’t have to make the changes each time there is an update.

    hope that helps!

    I understand your suggestion. I just don’t know how to do that even after reading your linked file. My expertise level is low to intermediate!

    First, I can’t even find the functions.php file in the Plugin Editor. I see a file called misc-functions.php. Is that the correct file to edit?

    Second, I’m not exactly sure which line of code to edit to return an empty string, nor what to replace it with. Can you be more specific with what file, what line, and what to change?

    THANKS SO MUCH for your prompt response on a Sunday afternoon! Completely awesome Nick!

    Plugin Contributor Nick Young

    (@nickyoung87)

    No actually that is a function you would add into your theme’s functions.php not the plugin.

    So you would go to “Appearance” > “Editor” > “Theme Functions (functions.php)”

    Then in that file you would add:

    function change_gce_prev( $prev ) {
    	return '';
    }
    add_filter( 'gce_prev_text', 'change_gce_prev' );
    
    function change_gce_next( $next ) {
    	return '';
    }
    add_filter( 'gce_next_text', 'change_gce_next' );

    Hope that helps make it a bit more clear, let me know if not though ??

Viewing 12 replies - 16 through 27 (of 27 total)
  • The topic ‘There are currently no events to display.’ is closed to new replies.