jocwebsites

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 23 total)
  • Author
    Posts
  • in reply to: No Upcoming Events after upgrade to 3.9.3 #973786
    jocwebsites
    Participant

    After clicking on the remove link, does it appear as if each filter is removed at that time?

    Yes, the filter disappears

    Are you definitely clicking on Save after doing this?

    The button appears as ‘Saved’, so can’t be clicked? So I’m not sure if the change is being registered at all (otherwise presumably the button would change to ‘Save’?)

    What if you “destroy” the widget by dragging it out of the sidebar, then recreate it – does that solve this?

    If I recreate the widget it displays events when there is no filter. If I add then try to remove the filter from the new widget, it has the same behaviour (Filter is removed but ‘Saved’ button can’t be clicked).

    When editing events the plugin suggests if I need to see filters I now need to install Advanced Post Manager plugin to see them?

    in reply to: No Upcoming Events after upgrade to 3.9.3 #972813
    jocwebsites
    Participant

    Have upgraded both Events Calendar and Events Calendar Pro plugins to v3.10.

    * Upcoming events is still showing “There are no upcoming events at this time.”
    * ‘(remove)’ hasn’t removed the filter when I next check, as detailed previously.
    * No error messages in the log this time at least!

    Thanks!

    in reply to: No Upcoming Events after upgrade to 3.9.3 #970825
    jocwebsites
    Participant

    Ok,

    * Went to themes->customise->Widgets->Events list
    * There was a filter, so clicked “(remove)”
    * Clicked “Close”

    But next time I look at the widget the filter is still in place… No error reports in the logs that I can see.

    * Added another copy of the widget, no filter, and events appeared, so it is presumably the filter that’s blocking events from appearing.
    * In the new copy of the widget, changed the number of events to display from 5 to 2 using the pop-up menu and got the following errors:

    [18-Jun-2015 01:59:30 UTC] PHP Notice:  Undefined index: no_upcoming_events in /blah/wp-content/plugins/the-events-calendar/lib/widget-list.class.php on line 147
    [18-Jun-2015 01:59:30 UTC] PHP Notice:  Undefined index: venue in /blah/wp-content/plugins/events-calendar-pro/lib/widget-advanced-list.class.php on line 78
    [18-Jun-2015 01:59:30 UTC] PHP Notice:  Undefined index: address in /blah/wp-content/plugins/events-calendar-pro/lib/widget-advanced-list.class.php on line 80
    [18-Jun-2015 01:59:30 UTC] PHP Notice:  Undefined index: zip in /blah/wp-content/plugins/events-calendar-pro/lib/widget-advanced-list.class.php on line 83
    [18-Jun-2015 01:59:30 UTC] PHP Notice:  Undefined index: phone in /blah/wp-content/plugins/events-calendar-pro/lib/widget-advanced-list.class.php on line 84
    [18-Jun-2015 01:59:30 UTC] PHP Notice:  Undefined index: cost in /blah/wp-content/plugins/events-calendar-pro/lib/widget-advanced-list.class.php on line 85
    [18-Jun-2015 01:59:30 UTC] PHP Notice:  Undefined index: organizer in /blah/wp-content/plugins/events-calendar-pro/lib/widget-advanced-list.class.php on line 86
    [18-Jun-2015 01:59:31 UTC] PHP Notice:  Undefined index: no_upcoming_events in /blah/wp-content/plugins/the-events-calendar/lib/widget-list.class.php on line 147
    [18-Jun-2015 01:59:31 UTC] PHP Notice:  Undefined index: venue in /blah/wp-content/plugins/events-calendar-pro/lib/widget-advanced-list.class.php on line 78
    [18-Jun-2015 01:59:31 UTC] PHP Notice:  Undefined index: address in /blah/wp-content/plugins/events-calendar-pro/lib/widget-advanced-list.class.php on line 80
    [18-Jun-2015 01:59:31 UTC] PHP Notice:  Undefined index: zip in /blah/wp-content/plugins/events-calendar-pro/lib/widget-advanced-list.class.php on line 83
    [18-Jun-2015 01:59:31 UTC] PHP Notice:  Undefined index: phone in /blah/wp-content/plugins/events-calendar-pro/lib/widget-advanced-list.class.php on line 84
    [18-Jun-2015 01:59:31 UTC] PHP Notice:  Undefined index: cost in /blah/wp-content/plugins/events-calendar-pro/lib/widget-advanced-list.class.php on line 85
    [18-Jun-2015 01:59:31 UTC] PHP Notice:  Undefined index: organizer in /blah/wp-content/plugins/events-calendar-pro/lib/widget-advanced-list.class.php on line 86

    So while I think it’s probably the filter that’s causing no events to be displayed, I’m not sure why
    * ‘(remove)’ hasn’t removed the filter when I next check
    * the above errors occur.

    Thanks!

    in reply to: No Upcoming Events after upgrade to 3.9.3 #969940
    jocwebsites
    Participant

    I have removed both:
    wp-content/themes/blah/tribe-events/widgets
    wp-content/themes/blah/tribe-events/pro/widgets

    from the theme but there still don’t seem to be any upcoming events displayed.

    Thanks!

    in reply to: Calendar Widget no longer scrolls through months #126752
    jocwebsites
    Participant

    Hey Casey,

    We managed to sort it out, all working now. Thanks for the help.

    Cheers,
    Dan

    in reply to: Calendar Widget no longer scrolls through months #126628
    jocwebsites
    Participant

    Hey Casey,

    This is the current functions.php file, it looks like he did add in the before_widget classes:

    /*———————————————————————————–*/
    /* Sidebars
    /*———————————————————————————–*/

    //Register Sidebars
    if ( function_exists(‘register_sidebar’) )
    register_sidebar(array(
    ‘name’ => ‘Sidebar Top’,
    ‘id’ => ‘sidebar-top’,
    ‘description’ => ‘Widgets in this area will be shown in the sidebar.’,
    ‘before_widget’ => ‘<div class=”sidebar-box clearfix”>’,
    ‘after_widget’ => ‘</div>’,
    ‘before_title’ => ‘<h3>’,
    ‘after_title’ => ‘</h3>’,
    ));
    if ( function_exists(‘register_sidebar’) )
    register_sidebar(array(
    ‘name’ => ‘Sidebar Middle’,
    ‘id’ => ‘sidebar-middle’,
    ‘description’ => ‘Widgets in this area will be shown in the sidebar.’,
    ‘before_widget’ => ‘<div class=”sidebar-box clearfix”>’,
    ‘after_widget’ => ‘</div>’,
    ‘before_title’ => ‘<h3>’,
    ‘after_title’ => ‘</h3>’,
    ));
    if ( function_exists(‘register_sidebar’) )
    register_sidebar(array(
    ‘name’ => ‘Sidebar Bottom’,
    ‘id’ => ‘sidebar-bottom’,
    ‘description’ => ‘Widgets in this area will be shown in the sidebar.’,
    ‘before_widget’ => ‘<div class=”sidebar-box clearfix”>’,
    ‘after_widget’ => ‘</div>’,
    ‘before_title’ => ‘<h3>’,
    ‘after_title’ => ‘</h3>’,
    ));

    if ( function_exists(‘register_sidebar’) )
    register_sidebar(array(
    ‘name’ => ‘Home Top’,
    ‘id’ => ‘home-top’,
    ‘description’ => ‘Widgets in this area will be shown in the home top.’,
    ‘before_widget’ => ‘<div class=”sidebar-box”>’,
    ‘after_widget’ => ‘</div>’,
    ‘before_title’ => ‘<h2>’,
    ‘after_title’ => ‘</h2>’,
    ));
    if ( function_exists(‘register_sidebar’) )
    register_sidebar(array(
    ‘name’ => ‘Home Bottom Left’,
    ‘id’ => ‘home-bottom-left’,
    ‘description’ => ‘Widgets in this area will be shown in the home bottom.’,
    ‘before_widget’ => ‘<div class=”sidebar-box”>’,
    ‘after_widget’ => ‘</div>’,
    ‘before_title’ => ‘<h2>’,
    ‘after_title’ => ‘</h2>’,
    ));
    if ( function_exists(‘register_sidebar’) )
    register_sidebar(array(
    ‘name’ => ‘Home Bottom Right’,
    ‘id’ => ‘home-bottom-right’,
    ‘description’ => ‘Widgets in this area will be shown in the home bottom.’,
    ‘before_widget’ => ‘<div class=”sidebar-box”>’,
    ‘after_widget’ => ‘</div>’,
    ‘before_title’ => ‘<h2>’,
    ‘after_title’ => ‘</h2>’,
    ));

    Can you give me an idea of what the error is?

    Cheers,
    Dan

    in reply to: Calendar Widget no longer scrolls through months #125923
    jocwebsites
    Participant

    Hey Casey,

    Yeah, I updated it as soon as I saw it hoping it would help out – but unfortunately the problem persisted.

    On a different note, I noticed that the jquery works perfectly fine on the main calendar page – switching between months, etc – so it’s just the widget that doesn’t want to work.

    Cheers,
    Dan

    in reply to: Calendar Widget no longer scrolls through months #125236
    jocwebsites
    Participant

    Hey Casey,

    I haven’t managed to track down the problem. I’ve removed all the JS and CSS calls from the theme and disabled all plugins again yet the issue still persists.

    There must be a conflict from the theme I just have not had much luck tracking it down. Something from the update doesn’t like something in the theme but going around blind will take some time, and all the obvious attempts at finding the problem haven’t been successful.

    Cheers,
    Dan

    in reply to: Calendar Widget no longer scrolls through months #123237
    jocwebsites
    Participant

    Hey Casey,

    I’ve gotten the mail plugin updated to the latest versions, but the issue still persists.

    Cheers,
    Dan

    in reply to: Calendar Widget no longer scrolls through months #122882
    jocwebsites
    Participant

    If I completely remove the plugin and install it again – will any settings, etc be lost?

    in reply to: Calendar Widget no longer scrolls through months #122871
    jocwebsites
    Participant

    Hey Casey,

    That’s odd. Did that update just come out? I know I wasn’t showing an update for it yesterday.

    Anyway, I tried updating and got the following:
    Downloading update from https://downloads.wordpress.org/plugin/the-events-calendar.3.4.1.zip…

    Unpacking the update…

    Installing the latest version…

    Removing the old version of the plugin…

    Could not remove the old plugin.
    Plugin update failed.

    Updated another plugin just now – went through fine.

    Cheers,
    Dan

    in reply to: Calendar Widget no longer scrolls through months #122425
    jocwebsites
    Participant

    This reply is private.

    in reply to: Calendar Widget no longer scrolls through months #122400
    jocwebsites
    Participant

    Hey Casey,

    Hey Casey,

    Went ahead and deactivated everything and it still didn’t work, so it’s not related to any of the other plugins. As mentioned earlier it does work with the default WP theme activated – so I thought maybe there’s some conflict between the theme and the new version (the dev site which is identical except has the previous version of the plugin works fine) – but I’m having trouble narrowing it down – so maybe it is a performance issue? The server they’re using (hosted via amazon) does run substantially slower in general than the servers I run, and I have no idea how it’s setup as I don’t manage it – but I’d like to see if we can confirm that before I report to them that theres an issue with the server.

    Any insight you may be able to give would be highly appreciated.

    Cheers,
    Dan

    in reply to: Calendar Widget no longer scrolls through months #121717
    jocwebsites
    Participant

    Hey Casey,

    We got rewrite up and running and permalinks active – unfortunately that didn’t fix the issue. Any ideas?

    in reply to: Calendar Widget no longer scrolls through months #120982
    jocwebsites
    Participant

    Hey Casey,

    Ah, that would make sense, and would make sense that it works on the dev site as I have permalinks and mod-rewrite enabled. I wasn’t the one who set it up after the package was delivered but it looks like they disabled permalinks. I’ve logged in and re-enabled them but the pages are 404’ing so they don’t have rewrite setup.

    I’ve emailed them and asked they have their server guys enabled it, and once that’s up I’ll double check, but i’m 99% that’s the issue. I’ll close the ticket once I’ve confirmed. Thanks for the help – it’s always the simple things.

    Cheers,
    Dan

Viewing 15 posts - 1 through 15 (of 23 total)