Forum Replies Created
-
AuthorPosts
-
Geoff
MemberThat snippet reverses the order of events. It may not be the best solution, so feel free to remove it.
I’m afraid this is something I’ll have to refer you to the theme developer for since the conflict is coming from there. I’ll leave this thread open, of course, and would be happy to answer any questions that might come up as the theme developer looks into it from that angle.
Sorry I don’t have a solid solution for you here, but I hope this at least gets the ball rolling in the right direction.
Thanks,
GeoffGeoff
MemberRight on! Thanks for following up–definitely keep me posted. Server 500 errors can be a bit of a pain but we’ll figure it out together. 🙂
Geoff
Geoff
MemberAbsolutely. You can see this sort of multi-criteria search in action here: http://wpshindig.com/events/
Click on the Show Filters link above the calendar and you’ll be able to filter events by several different variables. If Age was one of your custom fields, then you would be able to add it to the filter bar.
Does this help clarify things a bit? Let m know if you have any other questions. 🙂
Cheers!
GeoffGeoff
MemberThis reply is private.
Geoff
MemberHi Amanda,
Great question! The bad news is that no information other than what the ecommerce system asks for is captured by the plugin, which is typically name and billing information.
The good news is that we are working to expand this. I don’t have a specific date but it is something we are eager to push out as soon as we can.
Does this help answer your question? Please let me know.
Thanks!
GeoffGeoff
MemberHi Juie,
No worries at all! I’ve refunded your order and you should see the funds back in your account in the next 5-10 business days. Feel free to go ahead and purchase Eventbrite Tickets instead. 🙂
Thanks for your support!
GeoffGeoff
MemberHi Dien and welcome back to the forums!
Yes, that’s totally possible. I do want to note that we are a little limited in how much we can support custom development questions like this, but I’d be happy to point you in the right direction. 🙂
The key to this is to modify the single-event.php template. You can find more information on template overrides in our Themer’s Guide, but it basically breaks down to this:
- Make a copy of the template. It is located in /plugins/the-events-calendar/src/views/single-event.php.
- Make a new folder in your theme directory called tribe-events
- Drop the copied template in that folder
Now that the template is in your theme, you can modify it to suit your needs. In this case, change this line:
<?php echo tribe_event_featured_image( $event_id, 'full', false ); ?>…to this:
<?php echo tribe_event_featured_image( $event_id, 'medium', false ); ?>That will decrease the size of the image. Then, you can use CSS to position the content around it. That might look something like this in your theme’s style.css file or using a plugin like Simple custom CSS:
.tribe-events-event-image img { float: left; margin: 0 35px 35px 0; }Will that help you get started? Please let me know. 🙂
Cheers!
GeoffGeoff
MemberHey Jason,
Thanks for the extra info–this is helpful!
Currently we’re only able to put in UTC times, even though all events are PST.
Just to confirm, are you not able to set the timezone on a per-event basis? I see that your settings are such that you should be able to.
I only have timezone mode and show timezones and neither of those functions seem to work.
Cool, that means there was no data to clean up and that’s a good thing. On that same note, changing the setting to “Use the sitewide timezone everywhere” would not necessarily update existing events. Will you please try switching to that settings, saving the changes, then creating a new event to see if it displays in the correct timezone?
Thanks,
GeoffGeoff
MemberOh weird! Funny how the timezone setting would be having an effect on recurring events.
But I see exactly what you mean and have ticketed it for us to check out. Nice work digging into that–I am not sure how I would have come to the same conclusion!
I don’t have a timeframe for when we’ll be able to hit this, but I will mark this thread Pending Fix and keep you posted as I know more.
Thanks for reporting this!
Geoff
Geoff
MemberThat would go in your theme’s functions.php file. 🙂
Geoff
MemberAs a temporary workaround, our developers were able to whip this up. It solved the issue for me when adding it to the theme’s functions.php file:
function fix_42815_links( $link ) { $tribe_placeholder = '~~TRIBE~PC~~'; if ( false === strpos( $link, $tribe_placeholder ) ) return $link; return strtoupper( str_replace( $tribe_placeholder, '%', $link ) ); } function fix_42815_redirect( $to, $requested ) { return ( str_replace( '\\', '', $to ) === $requested ) ? false : $to; } add_filter( 'post_type_link', 'fix_42815_links' ); add_filter( 'redirect_canonical', 'fix_42815_redirect', 10, 2 );Cheers!
GeoffGeoff
MemberI should add that another way of doing this would be to use the Simple Custom CSS plugin. The stylesheets are a great option, but this plugin is great as well.
Geoff
MemberHey there,
Great question! You are spot on as far as where to include the CSS file, so it’s weird the styles are not loading.
Would you be willing to share a link where that style should be working so I can take a look myself?
Thanks!
GeoffJanuary 7, 2016 at 9:41 am in reply to: Can Event Tickets Plus handle registrations that require approval? #1052018Geoff
MemberGood questions, Abby!
The real answer will likely come from which ecommerce system is being used with Event Tickets Plus. The plugin allows you to create tickets, but the actual transaction process (and inventory management) is in the ecommerce systems being used.
That said, I know that WooCommerce will allow you to manually approve all transactions before they are fully processed.
At the same time, however, a pending payment will indeed reduce the ticket stock. That avoids situations that could lead to sell more tickets that are actually available.
Does this help answer your question? Let me know if you have any others and I’d be happy to help as best I can!
Cheers,
GeoffGeoff
MemberThanks for keeping me posted, Janice!
-
AuthorPosts
