Forum Replies Created
-
AuthorPosts
-
Andras
KeymasterAwesome job there Amanda! Congrats!
As for the second one, you hit the nail on the head with the postmeta.
This might help you go further: https://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters
Also here’s a sample snippet which I just found there to get you started:
$args = array(
'post_type' => 'tribe_events',
'meta_key' => '_EventStartDate',
'meta_value' => date( "Y-m-d H:i:s" ), // change to how "event date" is stored
'meta_compare' => '>',
);
$query = new WP_Query( $args );Or something like this. 🙂
Cheers,
AndrasMarch 1, 2018 at 2:25 pm in reply to: Paid Event ticket is available to any customer who has not paid. #1467731Andras
KeymasterOh wow, I checked and that other thread showing closed is weird. I already sent the case for investigation.
Hopefully this will not get closed by some black magic so we can keep in touch here.
In by any chance it does, please open a new thread and provide a link to this one. But I surely do hope there will be no need for this.
Cheers,
AndrasMarch 1, 2018 at 2:18 pm in reply to: Event Tickets Plus 'View your tickets' includes failed orders #1467730Andras
KeymasterOpening.
March 1, 2018 at 2:17 pm in reply to: Event Tickets Plus 'View your tickets' includes failed orders #1467729Andras
KeymasterNot sure why this closed down.
Andras
KeymasterHi Laura,
This is indeed a bit confusing.
Since you are not using shared capacity for these tickets I would recommend setting the shared capacity of these to zero (0) to make sure that your index page is not affected by the glitch I mentioned earlier. Check if that changes anything.
On the ‘Duplicate Page’ plugin, I don’t know if that has an effect on ticket stock. I haven’t used that plugin before, especially in context with our plugins.
It would be quite easy to test if it has an effect.
- Create an event with a ticket that has a stock of 10
- Duplicate the event. Create a ticket for it with a stock of 10 and check if it shows right.
- Sell a ticket from the first event.
- Duplicate the first event again. Create a ticket for it with a stock of 10 and check if it shows right.
If the stock of the duplicates show correct (10), then the duplication has no effect on the stock.
If the issues still persist, then please send me a full database export / database dump and I’ll check if I can find any clues to this mystery. If you don’t know how to do that or you don’t have a tool for it, you can try this plugin.
The database will likely be too big to be uploaded here. You can share it via a cloud service and post the url here in a private reply.
Cheers,
AndrasAndras
KeymasterHello Ryan,
Got some news for you.
I managed to test it with the latest Enfold and plugins. The ‘step=”1″‘ does solve the issue.
Here is the full description what you need to do until this is fixed:
Make a copy of this file:
wp-content/plugins/event-tickets/src/views/tickets/rsvp.php
Here:
wp-content/themes/[your-theme]/tribe-events/tickets/rsvp.php
Open the file for editing.
Around line 80, you will see this:
<input
type="number"
class="tribe-ticket-quantity"
min="0"Add in there ‘step=”1″‘ like this:.
<input
type="number"
step="1"
class="tribe-ticket-quantity"
min="0"Go to Enfold > Theme Options and switch off the ‘Lightbox Modal Window’ option. Here’s a screenshot of that: https://cloudup.com/cJR5JX-QBVw
This should do it.
I’ve already made the necessary steps to have the above code in the next Maintenance Release of Event Tickets. As of that point the template override (the copy of the rsvp.php file) will no longer be needed.
Hope this helps.
Cheers,
AndrasFebruary 28, 2018 at 2:01 pm in reply to: Month not changing in calendar when selecting the next month (using shortcode) #1466508Andras
KeymasterHi Kathryn,
Thanks for reaching out to us!
I’m sorry about this issue with the shortcode month view. We are aware of this bug and a fix is already being worked on. If all goes well the fix will be released with the next Maintenance Release in early March. Hang in there.
Cheers,
AndrasAndras
KeymasterHi Dan,
Thanks for reaching out!
That doesn’t necessarily look bad. It all depends on how your events are happening in life and how you set them up. I would be happy to help you figure this one out.
Please give me the details on how the event is supposed to be happening.
And send me some screenshots on how the event recurrence rules are set up.
My hunch is that an event is set up to last from Oct. 1 to 31, and then that 31-day long event is recurring for every day of the month.
Instead I believe you should set up the initial event to be from 10am October 1 until 10pm October 1. Then set up a daily recurrence rule ending on October 31.
Let me know if this helps or you need something else.
Cheers,
AndrasAndras
KeymasterJust got word that the list venues and organizers plugin will receive an update soon with some more functionality. I cannot confirm yet what functionality and when exactly as it’s currently being evaluated.
A.
Andras
KeymasterHi Rion,
Thanks for reaching out with your question.
It might be possible with a bit of work. Here’s my thinking.
You can pull events from one The Events Calendar into another The Events Calendar with Event Aggregator.
Let’s say site ‘A’ is where you display events from site ‘B’, and when you click on an event on site ‘A’ it will take you to the event page on site ‘B’.
You will need to set up Event Aggregator on ‘A’ to pull the events.
You will need to set up the events on ‘B’ in a way that you fill out the ‘Website URL’ field, which needs to be the url of the event. (screenshot)
On ‘A’ you need to use this snippet so that clicking on the event redirects the user to site ‘B’.
Hope this helps you get started.
Cheers,
Andras,Andras
KeymasterHi atge,
Wow, amazing questions there!
The short of it: all that should be possible, if not straight out of the box then with some custom coding.
Are there other filters that can be used with the [list_venues] shortcode?
No, these are the only ones for the time being.
if I have added a custom field “region”, I know that I can order by region
If you tested this and it works, that’s awesome!
is there a way to filter by the custom field, for example with the logic: [list_venues region=”Asia”]
I looked through the code of the plugin and there is no indication that this would be possible.
Is there a way to add additional information to each entry in the venues list? Current it appears that only the name of the venue can be displayed. I need to add content such as city, country, contact info, etc.
This should be possible. You would need to edit the plugin and add some code for this, between lines 65 and 86. You can use these functions there:
- https://theeventscalendar.com/function/tribe_get_venue_single_line_address/
- https://theeventscalendar.com/function/tribe_get_venue_details/
- https://theeventscalendar.com/function/tribe_get_venue_website_url/
Is there a straightforward way to incorporate a map view into the venue list?
I’m not quite sure there is. You would need to dig into the Google Maps API. In the calendar plugins we don’t have a function that would let you easily show a map with custom address pins.
Give me some time for this, I’ll ask the team if there is something that can be done for the map.
You also might want to check out this plugin and see if it helps in any way: https://wordpress.org/plugins/the-events-calendar-shortcode/
Cheers,
AndrasAndras
KeymasterHi Charlie,
Thanks for getting in touch!
I checked and your application was approved yesterday. You should have received an email about it. (I guess you must have posted right before that happened. 🙂 )
Let me know if you have further questions.
Cheers,
AndrasAndras
KeymasterThis reply is private.
February 28, 2018 at 2:33 am in reply to: Showing total number of submitted or upcoming events #1465708Andras
KeymasterHi Amanda,
What a great question! Thanks for posting it!
I believe you could count all the posts / events with the wp_count_posts() function of WordPress. (link)
Something like this:
$count_events = wp_count_posts( 'tribe_events' );
$published_events = $count_events->publish;Showing / counting only future events would require a more complicated query. You probably could use something like this as a start (check Method 2):
http://www.wpbeginner.com/wp-tutorials/how-to-list-future-upcoming-posts-in-wordpress/
Hope this helps.
Cheers,
AndrasAndras
KeymasterHi Paco,
Great question, thanks for reaching out!
That is not a built-in feature of our plugins.
If you are using Event Tickets Plus with WooCommerce then there might be some WooCommerce extensions which can help you achieve that. You can find some options along these lines here.
Let me know if you have any further questions.
Cheers,
Andras -
AuthorPosts
