Josh

Forum Replies Created

Viewing 15 posts - 556 through 570 (of 4,178 total)
  • Author
    Posts
  • in reply to: Technical layout doubts #1148940
    Josh
    Participant

    Hey 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!

    in reply to: I want to let event posters sell tickets #1148939
    Josh
    Participant

    Hey 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!

    in reply to: Organizer Additional Fields #1148938
    Josh
    Participant

    Hey 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!

    in reply to: Hide Private Event on calendar #1148932
    Josh
    Participant

    Hey 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!

    in reply to: How do I find my ical-url? #1148927
    Josh
    Participant

    This reply is private.

    in reply to: Using Events Calendar posts outside the plugin #1148924
    Josh
    Participant

    Hey Susan,

    Awesome! I’m glad you were able to find a solution here. Do you happen to have a link to the solution?

    Thanks!

    in reply to: Apostrophe in Sitename for emailed RSVP #1148923
    Josh
    Participant

    Hey 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!

    in reply to: Plugin distorting footer #1148151
    Josh
    Participant

    Hey 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!

    in reply to: Accessing Tooltip pop-ups on home page. #1148141
    Josh
    Participant

    Hey 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!

    in reply to: Adding organizer to an event won't stick won't save #1148134
    Josh
    Participant

    Hey 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!

    in reply to: Problems with recurrence rules #1148127
    Josh
    Participant

    This reply is private.

    in reply to: Plugin distorting footer #1147911
    Josh
    Participant

    Hey 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!

    in reply to: Using Events Calendar posts outside the plugin #1147908
    Josh
    Participant

    Hey 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!

    in reply to: Filter not working correctly… #1147718
    Josh
    Participant

    Hey 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:

    1. Typing the City in the “near” field
    2. Clicking “Find Events”
    3. This will show you the results from Google for the specific location
    4. Select that result and the URL will update and search events near the selected location.
    5. 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!

    in reply to: Question regarding Community Tickets & Community events #1147708
    Josh
    Participant

    Hey 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!

Viewing 15 posts - 556 through 570 (of 4,178 total)