Skip to content

Instantly share code, notes, and snippets.

@rafsuntaskin
Created May 15, 2020 20:14
Show Gist options
  • Save rafsuntaskin/6db7845be0bc84973cb2e140b8369b9d to your computer and use it in GitHub Desktop.
Save rafsuntaskin/6db7845be0bc84973cb2e140b8369b9d to your computer and use it in GitHub Desktop.
Custom login URL for RSVP and Tickets
<?php
/**
* Filter default login URL for Tickets and RSVP
*/
add_filter( 'tribe_tickets_ticket_login_url', 'rt_et_custom_login_url' );
function rt_et_custom_login_url( $url ) {
$parts = wp_parse_url( $url );
$new_url = 'http://Yourlogin.com';
if ( isset( $parts['query'] ) ) {
$new_url = $new_url . '?' . $parts['query'];
}
return $new_url;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment