Norine Leibel

Forum Replies Created

Viewing 15 posts - 31 through 45 (of 49 total)
  • Author
    Posts
  • in reply to: Disable Venue items on front end #58685
    Norine Leibel
    Participant

    Works like a charm! Thanks Barry.

    in reply to: Disable Venue items on front end #58436
    Norine Leibel
    Participant

    Thanks, Rob. I know you guys are super busy. Much obliged.

    in reply to: Disable Venue items on front end #57673
    Norine Leibel
    Participant

    Hi Barry. Correct, I think.

    For context: I have events distributed across multiple cities and towns and sometimes the actual venue info isn’t available or the town “is” the venue” (eg: the town’s small enough, that if you find the town you’ll literally find the event). Because of the wide variance in information that’s supplied, quite often if there is specific venue info I will include it in the body of the event, rather than in the venue name itself, so that there’s consistency. Sometimes the venue is also “listed” elsewhere in the site, so I will instead link to that regular post within the body of the event posting.

    So, nutshell, venue name not needed, nor is the comma that follows it in the output. The rest: City, province, country, telephone, website, is fine to keep.

    I hope that answers your question?

    in reply to: URLs in Tag Cloud are incorrect #57118
    Norine Leibel
    Participant

    Thanks, Jonah.

    Was really pleased to accidentally discover that the tags were registered and working with the new release, so once the URLs are fixed, it will really be welcomed and improve many things I’ve been working on. Thanks again.

    Norine Leibel
    Participant

    Oh excellent, that works. I thought it would be a simple piece of code like that but didn’t know where to start.
    Thanks!!!

    Norine Leibel
    Participant

    Okedoke, thanks.

    Norine Leibel
    Participant

    Sadly, no change.
    Reverted to base twenty twelve theme and deactivated everything except TEC and TEC Pro.

    Norine Leibel
    Participant

    This reply is private.

    in reply to: How to Disable Related Events? #56952
    Norine Leibel
    Participant

    Works like a charm. Thanks.

    Norine Leibel
    Participant

    Okedoke. Thanks, Leah. Will sit tight and work around it till then.

    in reply to: Tag in Tag Cloud does not include the event. #31616
    Norine Leibel
    Participant

    Thanks, Barry, this will require some study on my part. Ideally it should be the same/similar code/concept as what it produces for the event category.

    in reply to: Body classes for individual event categories? #31614
    Norine Leibel
    Participant

    Jonah, a followup to my previous post. It appears that the body classes in the event categories are a product of the way Thematic deals with body classes, as when I created a child theme of twentytwelve, the classes were written as you suggest they should be “events-category-CATEGORYNAME”. So I will need to sort that part out.

    However, with regards to the individual events, which don’t seem to get any a body class regardless of category, is there a way to get the body classes in there? The better question is, can their permalink be in their respective category? For example:
    /whats-happening-in-lake-dief/event-name/
    /whats-happening-in-south-side/different-event-name/
    That would be very helpful as it would match the rest of the site, rather than all the events being thrown into one place under /event/
    It would have the side benefit of having the slug which could be in theory get the body class working.

    Thanks.

    in reply to: Body classes for individual event categories? #31597
    Norine Leibel
    Participant

    Thanks, Jonah. I have investigated further and here is what I learned:

    If the event category name is more than one word (for example – event category is “What’s Happening in Lake Dief”), the body class gets written as follows: tribe_events_cat-what’s happening in lake dief
    Note the absence of hyphens in the class name. I thought at first it was because of the apostrophe, so I created an event category “What is Happening in Lake Dief”. Same problem, body class became tribe_events_cat-what is happening in lake dief … again without the hyphens.

    I tried again with just a one-word category name “dief” and then it worked fine. Body class was tribe_events_cat-dief as expected.

    This does not occur elsewhere in Thematic with multi-word categories, so it seems a result of the Events Calendar. Unfortunately it is big problem, as single-word event categories are not an option. Is there a solution?

    Separate but related, I’d like the individual event to have the same header image as its event category, however the body class in the individual event does not include any event category information. Not sure how to address this. Help?

    Thanks

    in reply to: Tag in Tag Cloud does not include the event. #31524
    Norine Leibel
    Participant

    I have found a partial solution which leads to another problem. I added the code from the FAQs, so total event tag related code is as follows:
    // Registers core WordPress category and taxonomy taxonomies on the “Events” post type registered by the plugin “The Events Calendar”
    add_action( ‘init’, ‘ac_add_calendar_taxonomy’, 20 );
    function ac_add_calendar_taxonomy() {
    register_taxonomy_for_object_type(‘category’, ‘tribe_events’);
    register_taxonomy_for_object_type(‘post_tag’, ‘tribe_events’);
    }
    // TO HAVE THE TAGS SHOW UP IN THE ARCHIVES.
    function include_in_tags( $query ) {
    if ( $query->is_tag ) {
    $query->set( ‘post_type’, array( ‘post’, ‘tribe_events’ ));
    }
    return $query;
    }
    add_filter( ‘pre_get_posts’, ‘include_in_tags’ );

    But the problem now is the whole event does not appear. No date, no venue, location, etc, just the event name (linked) and the description that was entered. I’d like to have the whole thing show up, just like it does when it appears in the event category.

    Thanks for any help!

    in reply to: Interim Solution for Yoast SEO title conflict? #31509
    Norine Leibel
    Participant

    Thanks, Jonah, that worked.

Viewing 15 posts - 31 through 45 (of 49 total)