Forum Replies Created
-
AuthorPosts
-
March 14, 2017 at 6:24 am in reply to: Removing White Space After Removing Search & View As Bars #1253756
Courtney
MemberHi Jean,
I found the code needed just seeing it in inspector.

If you don’t have a whole lot of CSS to modify, my favorite place lately to add modified code is in the Customizer. WP-Admin Dashboard ยป Appearance ยป Customize ยป Additional CSS. This feature came out with WordPress 4.7.
However, if you are doing a lot of custom design, I’d still suggest following the way that the Themer’s Guide suggests.
Is there anything else I can do to help?
Thanks,
CourtneyCourtney
MemberHi Jason
On the CE events list page, the CSS needed would look like this:
div#tribe-community-events {
font-size: 80px;
}
The reason this works on the /add form is because the CSS ID and Class are both tribe-community-events:
<div id="tribe-community-events" class="tribe-community-events form">While on /list the class is “list”:
<div id="tribe-community-events" class="list">Just be aware if you use #tribe-community-events that it can be a sitewide change. To edit each uniquely, it’d look like this:
#tribe-community-events.list { }– OR –
#tribe-community-events.tribe-community-events { }Please let me know if this helps. ๐
Thanks,
CourtneyMarch 13, 2017 at 12:45 pm in reply to: Removing White Space After Removing Search & View As Bars #1253461Courtney
MemberHi Jean,
Can you try this CSS code?
.tribe-filter-live #main {
padding-top: 10px;
}
Let me know if that works. It should make this spacing change only on the /events page, and not sitewide.
Thanks,
Courtney ๐Courtney
MemberHi Steve
I’m sorry you are having this experience. Let’s see if we can get that resolved quickly.
First, did you add your license to Events ยป Settings ยป Licenses? Likely you have.
The next thing to check is to see if you’ve connected your Eventbrite API at Events ยป Settings ยป APIs.
Can you confirm both of these have been done?
Thanks,
CourtneyCourtney
MemberHi Camilla,
Now I see why doesn’t show the bar at the top. That page layout is not created by our plugins, but rather by your theme, Avada. They do have some support on their site about integrating our plugin with the theme.
I would suggest contacting them about how to display the event search bar.
Hopefully they can get this sorted out for you. Keep us posted!
Thanks,
CourtneyCourtney
MemberHi Robert,
I’m still researching the 20 limit. But I found a quick solution to the RSS by Event category:
http://choicemedia.tv/events/education-technology/feed/
I’ll keep you posted with what I discover about the 20 limit.
Thanks,
CourtneyCourtney
Member@ejimford is there a chance you can make this live on a staging site? It’d really help us to take a look at it in the broken state.
Courtney
Courtney
MemberHi Tom,
I see what the problem is now. When I paste code in here, it gets modified when I hit submit. Let’s try that again. Use this code please for line 28.
https://gist.github.com/courane01/24f380f4fb1ff8ae66795277ea56a763
Let me know if that fixes it. ๐
Thanks,
CourtneyCourtney
MemberThis reply is private.
Courtney
MemberHi Tom,
I noticed that your website is running Events Calendar Pro 4.3.4. Could you check your upgrades at Dashboard ยป Updates? From there, you should receive a notice to update the plugin to Events Calendar Pro 4.4.4.
Let’s see if that might be the problem.
Thanks,
CourtneyCourtney
MemberGlad you found the conflict ๐
Is there anything else I can help you with?
Courtney
Courtney
MemberHi John
If you’d like to force a new tab when a user clicks on an event from the calendar to view the single event page, I can walk you through that.
1. Create a template override following the Themer’s Guide. You’ll want to copy the file
/wp-content/plugins/the-events-calendar/src/views/month/single-event.php
to a folder /your-theme/tribe-events/month/single-event.php
2. Modify the code on line 196 to add target=”_blank” to the link, as shown below:
" class="url" target="_blank">
3. Save and test
Let me know if this works for you ๐
Thanks,
CourtneyCourtney
MemberThis reply is private.
Courtney
MemberHi Ernest
I just loaded your site and tested it in Chrome, Firefox, Safari, and Microsoft browsers. From my end, it looks okay. I did have to do a hard refresh (ctrl/cmd reload). I tested http://slideluck.com/events/?tribe_event_display=past specifically to see more events.
Can you clear your cache locally and see if you get the same results?

Keep me posted please.
Thanks,
Courtney ๐Courtney
MemberHi Michael
The mini calendar shortcode is designed to display the calendar above and a list view of events for that month below. The duplicate information appears in May because the calendar is pulling in the details for that month, plus you have the list additionally in the second short code.
Would it work to omit the second shortcode, showing just the listing for that month? This would prevent the duplication.
Keep me posted.
Thanks,
Courtney -
AuthorPosts
