• Resolved thompsonaire

    (@thompsonaire)


    I have a page with a calendar and upcoming events. I have most everything working but I need to change the items in the list of upcoming events. I do not need the “Location” text. I would like that to show the event category. I understand the text that needs to go (Somewhere) #_CATEGORYNAME or something like this. But I do now know where to put this. I have found several places for the code to be changed but I am unsure what will work. I have found code on the “Events List Format” page. But.. There are three sections of code on that page and I do not understand which one to change or what to change it to. On the same page “Formats” there is another area down further on the page that has more code (3 sections). Do I change that?

    As you can see I am fairly well confused. I do not understand all of this. Any help would be great.

    O did I forget to mention. I HATE THIS BLOCK THING…. Stupidest thing wordpress ever did. so you can find an image at https://www.flipflopfantasies.com/Images/CalendarCatlist.png

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Support Gladys

    (@greventscalendar)

    Hi there!

    We have an article that will help you add categories to the list view here
    https://theeventscalendar.com/knowledgebase/add-category-tags-to-list-view/

    Let us know if that helps,
    Gladys

    Thread Starter thompsonaire

    (@thompsonaire)

    Thank you Gladys, I read over the information you sent but it does me no good. As with most help stuff I get completely lost in the first sentence or two. This is no different. I just do not understand this stuff.

    Thank you for trying to help.

    Jeff

    Thread Starter thompsonaire

    (@thompsonaire)

    I had to laugh at the first paragraph on that page.

    Have you noticed that when you look at an archive page in WordPress (an archive page is basically just a post list view), they will display category tags below the title of each post?

    What if I told you that this same feature could be accomplished with your Events in The Events Calendar?

    Excited?? You should be, cuz it’s pretty simple!

    The answer is NO, I have never looked at an archive page. NEVER, So I have no idea how it looks or what they are talking about. Then when I see the third paragraph and the words “Pretty Simple” I know for sure I am doomed. Then I read further about creating a child theme. Got no clue how to do that and again the article makes my head spin so I can not even get started trying to do as you have suggested.

    I will try to mess with the code in the actual app itself and see if I can stumble on a solution. I do not read or write code. I am a cut and paste trial and error type. If I understood any of this it would be highly likely that I would not be here asking how to do things like this.

    Heck I do not even understand this block head thing other than the fact it was designed by some block head..

    Plugin Support Darian

    (@d0153)

    Hi @thompsonaire

    Thanks for your message.

    If you’re not familiar with coding, you can use the Code Snippets plugin, which removes the need to add custom snippets to your theme’s functions.php file.

    Go to Snippets > Add New, and add the following code snippets. Make sure you activate it for it to work.

    // add the list of categories after the title
    add_action( 'tribe_template_before_include:events/v2/list/event/venue', function() {
        global $post;
        ?>
        <ul class='tribe-event-categories'>
            <?php echo tribe_get_event_taxonomy( $post->ID ); ?>
        </ul>
        <?php
    } );

    After that, you should see the event’s category from your events list page.

    Let me know if you have further questions or concerns.

    Plugin Support Darian

    (@d0153)

    Hi @thompsonaire,

    I hope you’re doing well. I just wanted to touch base and check in with you. It’s been a little while since we’ve heard from you. I was just curious if you had the chance to try out the recommendation provided above.

    Let me know if there’s anything I can assist you with.

    Plugin Support Darian

    (@d0153)

    Hi there,

    It seems like this thread has been quiet for a bit, so we’ll go ahead and mark it as resolved. However, if any further questions or concerns come up, please don’t hesitate to start a new thread.

    Plugin Support Darian

    (@d0153)

    Hi there,

    It appears that we haven’t heard back from you in a while, so I’ll assume that the matter has been resolved. If you need any more help, feel free to start a new thread and we’ll be happy to assist you.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Upcoming Events List items’ is closed to new replies.