Forum Replies Created
-
AuthorPosts
-
Nico
MemberThanks for following up Anne!
Is Events Aggregator eligible for the non-profit program?
You are rignt, sorry for my confusion! Anyway I’d say just submit the application and in the field to add information about your organization explain why your organization needs Event Aggregator (and include a link to this thread). If the application is approved I don’t think there will be any issues with granting that license ๐
Cheers,
NicoNico
MemberStoked to hear you could sort this out Steve ๐
Iโll go ahead and close out this thread, but if you need help with anything else please donโt hesitate to create a new one and we will be happy to assist you.
Best,
NicoNico
MemberNo problem Kathy, I’ve just forward the application reply to the email attached to this post.
Best,
NicoNico
MemberYou are welcome Jens!
Iโll go ahead and close out this thread, but if you need help with anything else please donโt hesitate to create a new one and we will be happy to assist you.
Best,
NicoNico
MemberStoked to hear this worked for you! Thanks for confirming Matt ๐
Iโll go ahead and close out this thread, but if you need help with anything else please donโt hesitate to create a new one and we will be happy to assist you.
Best,
NicoNico
MemberRebecca,
We will continue the conversation over email!
Best,
NicoNico
MemberHey Rebecca,
Thanks for reaching out once again! We’ve received your email reply and will continue the conversation over the inbox ๐
Best,
NicoNico
MemberHi there Steve,
Thanks for getting in touch with us! I’m not sure about your request. The linked thread suggests a PHP solution โ Moving RSVP and Ticket Forms. This is the only solution we have to more the tickets form. Not sure about the CSS solution you mention, Can you please clarify a bit on this?
Cheers,
NicoNico
MemberYou are welcome Woong! Thank YOU for following up ๐
How can I make the newest event page?(with existing single event template?)
The idea I was suggesting was to create a WordPress standard page from the admin area, as a placeholder. For example I created a page called ‘Next upcoming event’, then with the following snippet (past it in your theme’s (or child theme’s) functions.php file) when the page is viewed it will redirect users to the next upcoming event:
/* Tribe, redirect page to the next upcoming event */
function tribe_redirect_to_next_event ( ) {// bail if not the most recent event page
// CHANGE THE SLUG FOR THE ONE IN YOUR SITE
if ( !is_page('next-upcoming-event') ) return;// retrieve the next upcoming event
$event = tribe_get_events( array(
'posts_per_page' => 1,
'start_date' => date( 'Y-m-d H:i:s' )
) );// bail if no upcoming event
if ( empty($event) ) return;// redirect
wp_redirect( tribe_get_event_link( $event[0]->ID ) );
exit;
}
add_action( 'wp', 'tribe_redirect_to_next_event' );
Please give this a try and let me know if it works for you,
Best,
NicoNico
MemberThanks for following up @raindance! Glad to hear problem #1 is solved ๐
Still not sure where you are storing that information, Can you please send me a screenshot of the field in the backend? The snippet will look like the following (lacking the actual button html):
/* Tribe, echo a call to action in the list view */
function tribe_events_list_add_link ( ) {
echo 'paypal button';
}
add_action( 'tribe_events_before_the_event_title', 'tribe_events_list_add_link');
I see the button is added via custom code or template override, right? I don’t recognize the html around the paypal button in the single event page.
Please let me know about it,
Best,
NicoNico
MemberExcellent Chris thanks for the update! Great work solving this ๐
Here you’ll find a snippet to alter the title structure set by the calendar โ Changing the browser title for calendar views
Please let me know if you are able to adapt the snippet to work for you,
Best,
NicoNico
MemberThanks for following up Frederik!
I can totally get your idea, but we don’t consider this is a bug! It’s more of how the library works actually. So no plans to change how this works for now.
One possibility is to set all event an equal height in this case they will be ordered correctly by date โ Change Photo View to equal-height grid.
Isotope has an option to sort items by it’s original html order, but forcing this will result in a weirdish grid as the items height are not equal, and there will be blank spaces here and there.
Please let me know if setting all items an equal height works for you,
Best,
NicoNico
MemberThis reply is private.
January 5, 2017 at 11:23 am in reply to: Adding a location column to the Event Schedule block #1213943Nico
MemberExcellent Eric! Hope they can assist you on how to do it ๐
Iโll go ahead and close out this thread, but if you need help with anything else please donโt hesitate to create a new one and we will be happy to assist you.
Best,
NicoNico
MemberThis reply is private.
-
AuthorPosts
