kshykula

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 34 total)
  • Author
    Posts
  • kshykula
    Participant

    My whole site went down; Admin side and front end. i cannot even access backupbuddy to restore. 🙁

    If you have suggestions I would appreciate. Our site has been down all day.

    Thank you.

    kshykula
    Participant

    This reply is private.

    kshykula
    Participant

    Am able to access the calendar again, but unable to add new events. Entire New Events window is messed up in that I can only enter a title, tag and category, but not enter any other information at all. Unable to save/publish.

    Not good.

    Kat

    kshykula
    Participant

    That was it! Many, many thanks!!

    Kat

    kshykula
    Participant

    Hello,

    Thank you for your suggestion! I almost works…

    My filter bar is set to display vertically on the left side of the calendar.
    When the filter bar is open, the last and next months links appear

      just below the main calendar title and above my category colors legend.

    (See attached image).

    When I collapse the filter bar, and the filter bar realigns itself above my calendar, the last and next months links are not visible. I turned off the category colors legend and the links are still not visible.

    Any thoughts?

    Thanks!

    Kat

    in reply to: How do Categories work when adding Events to main blog loop #1632181
    kshykula
    Participant

    Thank you. So I understand that once I combine events and posts, I can create an RSS feed containing both combined.

    But the questions remain:
    1. What if I then want to create RSS feeds containing posts and events containing multiple categories?

    e.g. I want one combined post/event RSS feed to contain info from multiple Elementary campus categories and one combined post/event RSS feed to contain info from multiple Midhigh campus categories.

    Which categories get used for these combined feeds – posts categories? or events categories?

    When I set up categories for posts and events in the first place, I made them identical – e.g. both posts and events have a K-12 category, a school council category etc.

    I know that RSS feed events by default cannot include multiple categories. With the assistance of your help desk yesterday, I have entered the code below into the functions.php file in my child theme.

    2. I can now create event RSS feeds containing multiple categories, but do I need to remove this code when I combine posts and events for RSS?

    /* ADD CAPABILITY TO CREATE MULTIPLE CATEGORY RSS FEEDS SEPTEMBER 26, 2018 */
    add_action( ‘pre_get_posts’, function( WP_Query $query ) {
    if ( ! $query->is_feed() || ‘tribe_events’ !== $query->get( ‘post_type’ ) ) {
    return;
    }

    if ( empty( $_REQUEST[ ‘tribe_event_categories’ ] ) ) {
    return;
    }

    $categories = [];

    foreach ( (array) $_REQUEST[ ‘tribe_event_categories’ ] as $event_category_id ) {
    $event_category_id = absint( $event_category_id );

    if ( $event_category_id ) {
    $categories[] = $event_category_id;
    }
    }

    if ( empty( $categories ) ) {
    return;
    }

    $tax_query = (array) $query->get( ‘tax_query’ );
    $tax_query[] = [
    ‘taxonomy’ => ‘tribe_events_cat’,
    ‘terms’ => $categories,
    ];

    $query->set( ‘tax_query’, $tax_query );
    }, 1000 );

    I know I am asking a lot and I hope that I am explaining this clearly.

    Many thanks!

    Kat

    in reply to: Multiple Categories in RSS feed #1632083
    kshykula
    Participant

    You guys are like MAGIC!

    Works like a charm. THANK YOU!!!!

    Kat

    in reply to: Multiple Categories in RSS feed #1629348
    kshykula
    Participant
    kshykula
    Participant

    Sorry…that was my fault…I had neglected to clear the cache after the plugin update. Had it fixed in a moment! All is well.

    Thanks!

    Kat

    kshykula
    Participant

    Okay…I did the update and now I have this error on my Admin side and the live website:

    Fatal error: Uncaught Error: Class ‘Tribe__Events__Pro__Community_Modifications’ not found in C:\inetpub\westmount\wp-content\plugins\events-calendar-pro\src\Tribe\Main.php:489 Stack trace: #0 C:\inetpub\westmount\wp-includes\class-wp-hook.php(286): Tribe__Events__Pro__Main->init(”) #1 C:\inetpub\westmount\wp-includes\class-wp-hook.php(310): WP_Hook->apply_filters(NULL, Array) #2 C:\inetpub\westmount\wp-includes\plugin.php(453): WP_Hook->do_action(Array) #3 C:\inetpub\westmount\wp-settings.php(450): do_action(‘init’) #4 C:\inetpub\westmount\wp-config.php(95): require_once(‘C:\\inetpub\\west…’) #5 C:\inetpub\westmount\wp-load.php(37): require_once(‘C:\\inetpub\\west…’) #6 C:\inetpub\westmount\wp-blog-header.php(13): require_once(‘C:\\inetpub\\west…’) #7 C:\inetpub\westmount\index.php(17): require(‘C:\\inetpub\\west…’) #8 {main} thrown in C:\inetpub\westmount\wp-content\plugins\events-calendar-pro\src\Tribe\Main.php on line 489

    Can you help?

    Kat

    in reply to: Adding /Feed to my URL caused this Error #1604024
    kshykula
    Participant

    Hi there,

    That is so odd because I went into the URL for the calendar link – which reads

    https://www.westmountcharter.com/index.php/events-calendar/

    First of all, I do not know why the index.php is in the string and there is no /feed in the link. I have removed index.php and cleared the site cache but did not add /feed.

    The feed was still accessible though…??

    I just readded /feed, cleared my cache and things are still working.

    So….I want to be able to combine my post and events in the feed…I found instructions on your site so will try them now.

    I also need to set up the feed by category…I have read that this can be done….(I have categories set up for the events calendar events and for news posts (non events). Do you have instructions for this?

    Many thanks again,

    Kathleen Shykula
    Website Specialist
    Westmount Charter School
    http://www.westmountcharter.comhttp://www.westmountcharter.com/
    [email protected]:[email protected]

    in reply to: Adding /Feed to my URL caused this Error #1602362
    kshykula
    Participant

    Hi again. I managed to get back into my menu settings and remove the ‘feed’ part of the URL, resave, and all works again. I would however, love some assistance in figuring out how to set up for RSS feeds from the calendar, without the errors. Looking forward to hearing from you.

    Thanks again,

    Kat

    kshykula
    Participant

    Hi there,

    I could not delete or rename any plugins; my system told me they were still in use. I feel that the issue is WP-Rocket. After exactly 12 hours after updating the plugins and encountering the errors, WP Rocket auto cleared the site cache and all was working again. It’s like I have to quickly clear the cache every time I update your plugin, or I get errors.

    I think it is something to do with how it minifies and combines CSS/JS. I tried to exclude as many pathways to tribe events as I could figure out, so rocket won’t touch your files, but I’ve obviously missed some.

    If you have any information about ECP functions with Rocket in your archives, I would be most grateful.

    Kathleen Shykula
    Westmount Charter School
    http://www.westmountcharter.comhttp://www.westmountcharter.com/
    [email protected]:[email protected]

    kshykula
    Participant

    This reply is private.

    kshykula
    Participant

    Sorry for all the replies to my original ticket. I was finally able to clean out the 315 instances of recurring event that were created on my calendar. Not sure if I did this myself, or if this was a glitch in the system. Anyways, things seem to be working again…please don’t close this ticket yet…I’d like to see how the balance of the day goes. Many thanks,

    Kat

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