Forum Replies Created
-
AuthorPosts
-
May 12, 2016 at 12:47 pm in reply to: Site's default sidebar doesn't appear on /event/ or /events/ pages #1113999
Geoff
MemberMy pleasure! So glad that did the trick — thanks so much for following up.
Cheers and thanks for using Events Calendar PRO. 🙂
Geoff
Geoff
MemberHello Joe,
Good question — related events are a setting in Events Calendar PRO, which is why you are not seeing it. However, I know from another thread you and I chatted in that you are going to give PRO a shot, so you should see it in there once you install and activate it. 🙂
Cheers!
GeoffGeoff
MemberHi Joe,
I mentioned it in another one of your threads, but the calendar has a nifty RSS feed that can be used to notify people who subscribe to it when new events are added to the calendar.
If you’re looking for other notification methods, there are definitely a good number of plugins available that add stronger notification features to WordPress. The best one really depends on what your needs and, while I don’t have a solid recommendation off the top of my head, this search of plugins should help as a starting point for you to check out some good leads.
Cheers!
GeoffGeoff
MemberHey Joe!
Looks like that demo is for a theme rather than our plugins. We have a demo set up here and it’s the only one we have:
However, a guest who has submitted events to the calendar using the Community Events submission form should be able to log in before seeing the list of events they have created on the calendar by visiting this URL:
[your-site]/events/community/list
It’s worth noting that this is for events that guests have created rather than events they are registered for. Community Events does not offer the ability for ticket sales and attendee management, I’m afraid.
Does this help clarify things a bit? Please let me know. 🙂
Cheers!
GeoffGeoff
MemberHeck yeah, thanks Joe! Thanks for giving PRO a try. 🙂
Geoff
MemberHi Joe,
Welcome to the forums! I see you have a few other threads open and we’ll do our best to get to those as quickly as possible. 🙂
Great questions. Yes, it is possible to create your own custom fields in Events Calendar PRO, which can then be added to Filter Bar, which I see you already have purchased. That would allow guests to filter your calendar by county, should you use County as a custom field.
And, yes, you can also use Event Categories to categorize events by the name of a specific county. The calendar does include an RSS feed that gusts can subscribe to for a specific category. That URL, for example, would follow this format:
[your-site]/events/category/[category-slug]/feed
Does this help answer your question? Please let me know. 🙂
Cheers!
GeoffGeoff
MemberHey Lain!
I’ve taken a look at that and the CSS/styling of the “Free” label really depends on what you want to do with it. I know you’re using the Enfold theme and it places the ticket information in the sidebar, which has a tendency to squeeze things a bit — by default, we put the ticket form in the main body of the events to give it more breathing room. As such, it’s kinda tough for me to make a design decision for your site and for how Enfold has set it up — that’s more on the custom development and design side of things and something I think you might want to either decide on your own or work with a designer.
If it helps, the class name for the price label is:
.table.tribe-events-tickets .tickets_priceYou can use that to style the text.
I’ll go ahead and close this thread and I hope you understand — we’ve gotten pretty far from the original question of the post and, as that happens, answers for subsequent questions get pushed very far down and tough to track. On that note, though, please do feel free to open a new through if you have any questions about the CSS classes and how to find them and we would be more than happy to continue helping!
Cheers,
GeoffGeoff
MemberI think it really depends on what you are trying to do with the template — different functions have different utilities, so it ultimately depends on what sort of changes you are trying to make.
Another idea (and possibly a better one) would be to use the same sort of conditional statement directly in the template. That would allow you to change the markup for that specific page without it affecting the others.
So, it’s the same concept, but applied directly in list/content.php:
<?php if( tribe_is_past() || tribe_is_upcoming() && is_tax( 'prof-learning-conf' ) ) { // Your code ?>The markup inside that statement will apply only to the prof-learning-conf category page and nothing else.
Does that make sense and sound like a better approach?
Thanks!
GeoffMay 11, 2016 at 1:02 pm in reply to: Site's default sidebar doesn't appear on /event/ or /events/ pages #1113412Geoff
MemberAbsolutely!
Another idea is to override the default-template.php file in your theme and add the sidebar manually.
We have a Themer’s Guide that covers template overrides in much more detail, but it basically boils down to this:
- Make a copy of the default-template.php file. It is located in /wp-content/plugins/the-events-calendar/src/views/default-template.
- Make a new folder in your theme (or child theme) called tribe-events
- Drop the copied default-template.php file in that folder
Now that the template is in your theme folder, you can modify it to suit your needs. In this case, add in the code for your side where you would like it to appear in the template. You may need to tweak some things around with the CSS to get it looking just right, but this will at least get the sidebar in the template.
Will that work for you? Please let me know. 🙂
Cheers!
GeoffGeoff
MemberHey Josh!
Good question. If you are trying to make a styling change, then you can use the .events-category-prof-learning-conf class to make changes specifically to that page.
If, however, you are making markup changes to the template, then I would recommend hooking into the functions where the markup is included and writing a filter wrapped in a conditional statement that checks for that specific category archive. For example:
<?php if( tribe_is_past() || tribe_is_upcoming() && is_tax( 'prof-learning-conf' ) ) { // Your code ?>You can find all of our functions right here in our documentation.
Will this help you get started? Please let me know. 🙂
Cheers!
GeoffGeoff
MemberHey @edevita — welcome back to the forums!
Absolutely. You can use CSS to override any of the calendar’s styles and make the pages appear the way you would like. We have a Themer’s Guide to help get you started with a section devoted to customizing styles, and it basically boils down to this:
- Make a new folder in your theme called tribe-events
- Make a new file in there called tribe-styles.css
Now that the file is in there you can customize any of the calendar’s classes using CSS. For example, if you want to change the font size off the start and end times below the title, you could do something like this:
.tribe-events-schedule h2 { font-size: 16px; /* or whatever size you want */ }Will this help get you started? Please let me know. 🙂
Cheers!
GeoffGeoff
MemberHey Jonathan!
Good question. The shortcodes in PRO are currently limited to the widgets and can be found here:
https://theeventscalendar.com/knowledgebase/pro-widget-shortcodes/
It sounds like you are looking for a way to embed the full calendar rather than a widget though. While that’s unavailable at the moment, it is something we are actively working on and hope to have soon. You can add your vote to the feature request which will subscribe you to receive a notification when that feature has been released.
Does this help answer your question? Please let me know.
Thanks,
GeoffGeoff
MemberThanks Lain!
Give this a try. It works when I edit the CSS in the browser but I’m unable to test it myself on the live site. As such, you may need to tweak it a bit to get it just right:
`.tribe-tickets-remaining {
display: inline-block;
}Cheers!
GeoffGeoff
MemberIt sure does! Sounds like that will be the right bundle for you. 🙂
Geoff
MemberMy pleasure! Thanks so much for asking — it’s always good to make sure you get the right combo before buying. 🙂
It’s also worth noting we do have a pretty great refund policy, should the plugins not work exactly the way you’d hoped. Just let us know within 30 days of purchase and we’d be happy to help you out.
Cheers!
Geoff -
AuthorPosts
