Forum Replies Created
-
AuthorPosts
-
Josh
ParticipantHey Valentina,
Thanks for following up here.
If I’m understanding correctly, you can see an example of these types of listings utilizing the event categories within the demo.
For example, here are events assigned to their “Community” category http://avada.theme-fusion.com/church/events/category/community/
And here are events assigned to their “Food” category http://avada.theme-fusion.com/church/events/category/food/
Let me know if this helps.
Thanks!
Josh
ParticipantHey Steve,
You should be perfectly fine using those slugs in the event settings there.
Also, you would be fine using the plugin on the main site and then a test site within the multisite network. The license limitation will not impact the performance or any features of the plugin.
Thanks!
Josh
ParticipantHey Werner,
Thanks for following up here!
Unfortunately the solutions that we have currently wouldn’t exactly work for what you’re trying to accomplish here. You can vote for this particular feature on our UserVoice page. I’ve gone ahead and created a new request for this one that you can add your votes to. I will also bring this one up with our team directly this week.
Thanks!
Josh
ParticipantHey Susan,
Sure thing! An option here would be to take advantage of the event categories to create some sort of “hidden” category. You could then use the following snippet in your theme’s functions.php file:
// Removes categories "dance" and "concert" from list and month views add_action( 'pre_get_posts', 'exclude_events_category' ); function exclude_events_category( $query ) { if ( $query->query_vars['eventDisplay'] == 'month' ) { $query->set( 'tax_query', array( array( 'taxonomy' => Tribe__Events__Main::TAXONOMY, 'field' => 'slug', 'terms' => array('dance', 'concert'), 'operator' => 'NOT IN' ) ) ); } return $query; }You would replace the “terms” option in the array above with the slug for the category that you created for these hidden events. Then, you would just assign the events that you would like hidden from the calendar.
Let me know if this helps.
Thanks!
Josh
ParticipantThis reply is private.
Josh
ParticipantHey Susan,
Awesome! I’m glad you were able to find a solution here. Do you happen to have a link to the solution?
Thanks!
Josh
ParticipantHey Dan,
I was able to recreate the issue and created a new ticket for this one. There was a little confusion between this issue and another that dealt with an event name (rather than the site title) having an issue with the apostrophe. This has been clarified with the assigned developer.
I am terribly sorry again about the delays with this particular issue.
Thanks!
Josh
ParticipantHey Zach,
Thanks for following up here!
It looks like there is a javascript error on the page here that I believe is the root of the issue preventing the final elements in your footer to display. You can see this when using the developer tools in your browser.
When switching to a default theme, does the javascript error go way there?
Thanks!
Josh
ParticipantHey Sunny,
Thanks for following up here.
I’m glad you were able to get a solution that worked for you here.
I’ll go ahead and close this thread for now. If you have any further questions, please don’t hesitate to open a new one.
Thanks!
Josh
ParticipantHey Chris,
Thanks for following up here.
Looking at the ticket here and it looks like the fix here should be included with the latest 4.2.4 update of the plugin.
Thanks!
Josh
ParticipantThis reply is private.
Josh
ParticipantHey Zach,
Thanks for reaching out to us!
Would you mind linking to your site and to your events page so I can see what the footer is supposed to look like and what was meant by “distorted” here for your site?
Thanks!
Josh
ParticipantHey Susan,
Thanks for reaching out to us!
I’m not sure how to manage what you’re trying to do with the Custom Content Shortcode. However, I can try to get you pointed in the right direction on how you would do this with our functions (a basic wrapper for WP_Query).
For example, take a look at our tutorial on using tribe_get_events() and toward the bottom the section on “GET ALL EVENTS IN A SPECIFIC TIME RANGE”
I’m not sure how the Custom Content Shortcode creates the queries, but it does look like it could be a pass through for a WP_Query. If so, you could try adding those arguments in that snippet to your shortcode as arguments similar to the others to see if that will work there.
For the meta, you can find a list like that within the core Events Calendar plugin under the src > Tribe > Main.php starting at the “public $metaTags” line.
Let me know if this helps.
Thanks!
Josh
ParticipantHey Gary,
Thanks for reaching out to us!
To start, the event form there on your homepage isn’t actually passing any of the selections from those fields into the query string when going to the events page. The recreation of the bar there is detached from the calendar and would need to be further set up to work properly there. Unfortunately, a customization like this is beyond what we’re able to provide support for.
For the further part here of linking to events within a particular local, you can link directly by:
- Typing the City in the “near” field
- Clicking “Find Events”
- This will show you the results from Google for the specific location
- Select that result and the URL will update and search events near the selected location.
- Here is the URL for events near Liverpool http://www.whereistheparty.co.uk/events/2016-08/?tribe-bar-geoloc-lat=53.4083714&tribe-bar-geoloc-lng=-2.9915726000000404&tribe-bar-geoloc=Liverpool%2C+UK
However, looking at that link, there aren’t any results. I dug a little further and noticed that the events created on August 20th (http://www.whereistheparty.co.uk/event/billy-connolly/) didn’t have a venue associated with it (which is used for calculating the near).
You can see this working with Manchester though http://www.whereistheparty.co.uk/events/2016-08/?tribe-bar-geoloc-lat=53.4807593&tribe-bar-geoloc-lng=-2.2426305000000184&tribe-bar-geoloc=manchester+UK and the Morrissey event showing there.
Let me know if this helps.
Thanks!
August 4, 2016 at 10:23 am in reply to: Question regarding Community Tickets & Community events #1147708Josh
ParticipantHey Jaap,
Thanks for reaching out to us!
Unfortunately this isn’t currently available within the Community Tickets plugin. However, you could create an extension that allowed this behavior payment gateway to work with the plugin. We wouldn’t be able to provide support for that particular customization though.
Let me know if this helps.
Thanks!
-
AuthorPosts
