tribalmike
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Single Event displayHey, petiteprof79.
Sorry we weren’t able to get to this until now. I checked out the site and the layout on single events looks okay, although I only saw events that had one or two words in the title.
Did you manage to get this resolved or are you still running into styling issues?
Mike
Forum: Plugins
In reply to: [The Events Calendar] Custom background for some featured eventsHello, goabilio.
All featured events have the class
.tribe-event-featured
added to the parent element. You should be able to style these events different than other events easily.Mike
Forum: Plugins
In reply to: [The Events Calendar] Eventbrite Tickets QuestionHi, madara435. I apologize for the delay.
The Eventbrite plugin will import information from your Eventbrite events and input them into your site’s Events Calendar. Users can purchase tickets directly from your Events Calendar.
Here’s an example you can check out:
https://wpshindig.com/event/eventbrite-tickets-demo-event-2/Here’s more info on the product:
https://theeventscalendar.com/product/wordpress-eventbrite-tickets/Mike
Forum: Plugins
In reply to: [The Events Calendar] Venue and Organizer field broken after 1st entryHi, cklink,
Is there any way you can provide a screenshot so I can help me to visualize what you’re talking about?
Also, do you have the most recent version of the plugin? I know we’ve put out a couple of maintenance releases since you posted this (and I apologize for the delay).
Thanks in advance for your response.
Mike
Forum: Plugins
In reply to: [The Events Calendar] Events Calendar Pro Showing two featured imagesThis should do what you’re wanting:
.single-tribe_events .entry-header, .single-tribe_events .featured-area { display:none; }
Mike
Forum: Plugins
In reply to: [The Events Calendar] help required with a single eventHi. We’ve actually had this request before. Here is a snippet of code you can place into your theme’s functions file that will allow you to choose an event to show on the front page of your site:
function tribe_add_events_to_dropdown( $pages, $r ){ if(isset($r['name']) && 'page_on_front' == $r['name']){ $args = array( 'post_type' => 'tribe_events' ); $stacks = get_posts($args); $pages = array_merge($pages, $stacks); } return $pages; } add_filter( 'get_pages', 'tribe_add_events_to_dropdown', 10, 2 );
After adding this, go to the Settings -> Reading page and you should see events in the dropdown box to choose from.
Let me know how this works out for you.
Mike
Forum: Plugins
In reply to: [The Events Calendar] Just shows plain text?OK, thanks.
Mike
Forum: Plugins
In reply to: [The Events Calendar] Single event does not render the single-event.php file.Hi, @fencermoner.
Did you mean to use the path “my-theme/tribe-events/single-event.php”?
Mike
Forum: Plugins
In reply to: [The Events Calendar] Events Calendar Page Not FoundHi, Larry.
Can you do me a favor and copy the system information from the Events -> Help page? It’ll help me diagnose the problem.
Thanks!
Mike
Forum: Plugins
In reply to: [The Events Calendar] Just shows plain text?Hi, Andy. I guess I’m not seeing the issue you mentioned. Did you switch the theme to something else?
Mike
Forum: Plugins
In reply to: [The Events Calendar] How to remove “Archive” from Browser TabGood to hear, @beckiritson!
Thanks for your help, @cybr!
Forum: Plugins
In reply to: [The Events Calendar] Mobile Month view – Single event styling issueNo problem!
Mike
Forum: Plugins
In reply to: [The Events Calendar] How to remove “Archive” from Browser TabHello, again. I apologize for the misunderstanding.
When I visit the URL you shared above, the browser tab says “Events for October 2018 – Sunshine Stamping” (https://1drv.ms/u/s!AoLGEitzJnIshcgcyY_cYFFC_JrO9Q).
If you are still see the word “Archives” in the browser tab, you might try clearing your browser cache or viewing your site in a private or incognito window. It might simply be your browser caching it.
Mike
Forum: Plugins
In reply to: [The Events Calendar] Problem with viewing Events List in site back endHi, Becki. I’m not sure what SEO plugin would be at work in the back-end of the site. Usually those only affect the front-end of a site.
Your best bet is to get in touch with the SEO plugin provider and let them know about this issue. Mention the fact that when you disable their plugin, the issue resolves itself. It may be a bug on their end.
Good luck!
Mike
Forum: Plugins
In reply to: [The Events Calendar] Mobile Month view – Single event styling issueTry adding this to your style.css file:
.type-tribe_events.tribe-event-featured { background-color: #ececec; }
Or, if you only want to change it for mobile, try this:
#tribe-mobile-container .type-tribe_events.tribe-event-featured { background-color: #ececec; }
Let me know how that works.
Mike