Forum Replies Created
-
AuthorPosts
-
Geoff
MemberHey there! This thread’s been quiet for a couple of weeks so I’m going to go ahead and close it. Please feel free to hit us up with a new thread if you still have questions here and we’d be happy to help. 🙂
Cheers!
GeoffGeoff
MemberMy pleasure, and thanks again for your support here. I appreciate it!
I’ll go ahead and close this thread but please feel to start a new one if any other question pop up–we’d be happy to help. 🙂
Cheers!
GeoffGeoff
MemberHi Beth,
That’s a good question. I would imagine it would be possible, but with custom development that is unfortunately outside the scope of support we provide here in the forums. I think either of the recommendations I suggested earlier will work, but customizing beyond that is something I’ll leave to you.
Please feel free to follow-up with specific questions about the customization as you get started and we’d be happy to try to answer.
Cheers!
GeoffGeoff
MemberHi there meredy!
Thanks for following up here and sorry for the continued trouble. I know it can feel like spinning wheels at times, but hopefully we can get to the bottom of it.
Just to confirm: are you running the latest versions of both The Events Calendar (3.9.1) and The Events Calendar PRO (3.9.2)? Just want to make sure everything we’re troubleshooting is in sync. 🙂
I see that the theme author added this to the classes/templates.php file:
if ( is_null($post_id) || ! is_singular() || WpvFancyPortfolio::has( ‘page’ ) )…however, I’m not sure that would change what is being called in the customized default-template.php file:
`if ( ! is_singular() ) {
$title = tribe_get_events_title(false);
}’It does certainly seem like the core issue here is with a customization within the theme. For example, if you activate a default WordPress theme (like Twenty Fifteen), does the category display? I would imagine it does.
Cheers!
GeoffGeoff
MemberHi Stephanie!
Are categories not included in the search parameters in the out-of-the-box search?
Good question. The calendar uses WordPress’ search functionality and WordPress does not include taxonomy terms in search parameters by default.
So, for example, you create a blog post in category ‘blue’ and the post title/content do not contain that keyword, searching for ‘blue’ won’t result in that post’s inclusion in the search results.
If not, how can we include them?
For including taxonomy terms, a plugin might help here. I’ve used the Search Everything plugin on other projects in the past, but have not specifically tested it against the calendar. It might be worth considering here.
I hope this helps!
Geoff
Geoff
MemberHi Shah and thanks for marking the answer here! I’m glad this helped.
I’ll go ahead and close this thread but please feel free to hit us back up if any other questions pop up and we’d be happy to help. 🙂
Cheers!
GeoffGeoff
MemberHi John and thanks for marking the answer here! I’m glad this helped.
I’ll go ahead and close this thread but please feel free to hit us back up if any other questions pop up and we’d be happy to help. 🙂
Cheers!
GeoffGeoff
MemberHi Steve and thanks for marking the answer here! I’m glad this helped.
I’ll go ahead and close this thread but please feel free to hit us back up if any other questions pop up and we’d be happy to help. 🙂
Cheers!
GeoffGeoff
MemberHi Simon and thanks for following up–and thanks for setting up the development site. That’s a huge help and I appreciate it. 🙂
The odd thing here is that one version of the image might be available but the second is not. For example, I go to this event and:
- This version of the image is available
- This version of the image is not available.
In both cases, the images are indeed saved in the site’s uploads folder.
That makes me wonder if the issue has something to do with file permissions. Are you able to go in and check the permissions of the unavailable file? Do they match the permissions of the file that is available?
Give that a check and let me know what you find. 🙂
Cheers!
GeoffGeoff
MemberHi Beth, thanks for following up!
Yes, excluding an event category programmatically is certainly possible. Check out the solution provided in this thread as an example and see if that help do the trick for you.
Cheers!
GeoffGeoff
MemberThanks for confirming the answer here, Klaus! I’m glad this helped out.
I’ll go ahead and close this thread but do please feel free to hit us back up if any other questions pop up and we’d be happy to help. 🙂
Cheers!
GeoffGeoff
MemberHi there, Shah!
Good questions. WooCommerce can certainly help manage tickets and ticket inventory. Then, our WooCommerce Tickets add-on would give you the actual ability to create those tickets and associate them with the events on your calendar.
A good place to start is to check out these tutorials for tickets:
https://theeventscalendar.com/knowledgebase-category/tickets-features/Those will give you a good idea of how tickets are created in and what features are available to you.
I do want to point out that our ticketing plugins do no integrate with the Community Events add-on. In other words, organizers would be unable to post and sell tickets for the events they submit to your site. It’s something we’re looking into, but unfortunately do not have a timetable for yet.
You also asked specifically about collecting information about customers when they purchase a ticket. Right now, the only information that is collected are the details that are in the WooCommerce checkout screen. Again, adding more ways to collect information is something on our radar and that we are actively working on.
Does this help answer your questions? Please let me know. 🙂
Cheers!
GeoffGeoff
MemberHi there, John!
Thanks for getting in touch and sorry for the trouble here with payments.
For the time being, we can only accept payments through the website. If you’re stuck or having some issue there, please email us at support [at] theeventscalendar.com and our sales team might be able to help you out.
Cheers!
GeoffGeoff
MemberHi there, Steve! Thanks for getting in touch.
Have you checked out our Category Colors plugin? It looks like that is what the example you sent it using–but if not, it would still be worth checking out:
Cheers!
GeoffGeoff
MemberHowdy Jeremy, and welcome back to the forums. 🙂
I think the best way to remove the link would be to override the template for the calendar’s List View. You can read up on this more in our Themer’s Guide, but here are the basic steps:
- Make a copy of the list/single-event.php file. It;s located in /plugins/the-events-calendar/views/list/single-event.php.
- Make a new folder in your theme directory. Call it tribe-events.
- Mane a new folder in that one called list.
- Drop your copied file in that last folder.
Now that the template is in your theme files, you can modify it to suit your needs. In this case, remove the link wrapper around the event title:
<a class="url" href="<?php echo tribe_get_event_link() ?>" title="<?php the_title() ?>" rel="bookmark"> <?php the_title() ?> </a>You will also want to remove the “Find out more” link that follows the excerpt:
<a href="<?php echo tribe_get_event_link() ?>" class="tribe-events-read-more" rel="bookmark"><?php _e( 'Find out more', 'tribe-events-calendar' ) ?> »</a>You also mentioned removing the Venue link. Although it will change the content a bit, I would change this line in the same file:
<?php echo implode( ', ', $venue_details ); ?>…with this:
<?php echo tribe_get_venue() ?>Does this help and will it work for you? Please let me know. 🙂
Cheers!
Geoff -
AuthorPosts
