Forum Replies Created
-
AuthorPosts
-
George
ParticipantThank you for being respectful and understanding of our policies, @Pau—I’m sorry that I wasn’t able to help with the final aspect of these issues.
I sincerely encourage you to set up a local site if possible—it’s worth the hassle!
Best of luck with your project, and please open a new thread any time if other issues arise.
Sincerely,
GeorgeGeorge
ParticipantThis reply is private.
George
ParticipantThis reply is private.
George
ParticipantExcellent! 😀
Cheers,
GeorgeGeorge
ParticipantHey Manuela!
This should indeed be possible, but only with a bit of custom coding. You can do that by adding code like the following to your theme’s functions.php file:
function tribe_add_admin_email_to_rsvp_email_recipient( $to ) {if ( ! is_string( $to ) ) {
return $to;
}$combined_to = array(
$to,
'[email protected]'
);return $combined_to;
}add_filter( 'tribe_rsvp_email_recipient', 'tribe_add_admin_email_to_rsvp_email_recipient' );
You would, of course, replace '[email protected]' with your real admin email.
I hope this helps!
GeorgeGeorge
ParticipantHey Mike,
Sorry to hear this!
Can you email the full license key to us at [email protected]? We can help from there and handle sensitive information like account details there more effectively than here in the forums.
Share a link back to this forum thread for reference in your email—we’ll help out from there!
Cheers,
GeorgeGeorge
ParticipantNice! 😀
— George
George
ParticipantThis reply is private.
George
ParticipantThis reply is private.
George
ParticipantThis reply is private.
June 28, 2016 at 11:02 am in reply to: License Number being rejected even though its active #1133073George
ParticipantThis reply is private.
George
ParticipantThis reply is private.
June 28, 2016 at 10:25 am in reply to: display past events, begining with the latest event on the top #1133048George
ParticipantWoot! 😀 Glad to help—best of luck with the language modifications.
Cheers,
GeorgeGeorge
ParticipantThis reply is private.
June 27, 2016 at 4:33 pm in reply to: display past events, begining with the latest event on the top #1132669George
ParticipantAs for your other question about reversing the order of past events, this is not possible from within the plugin itself.
To do this, you would need to install and activate this free plugin we have made to do this ? https://github.com/theeventscalendar/show-past-events-reverse-chronological-order/archive/master.zip
Download this plugin; install and activate it on your site; and let us know if it helps.
Cheers,
George -
AuthorPosts
