Hey again Denso,
Quick note: This is for version 2.0 or higher
Just in case you were still interested (and others might be), to create a separate registration page, first create a new page or add the shortcode to your existing separate registration page.
[rtec-registration-form hidden=false showheader=true]
Be sure to leave off the “event=” setting. Instead you will add a query parameter in your link that the shortcode will use.
Then add this to the “Custom JavaScript” area on the “Form” tab:
var rtecEvent = jQuery('.rtec').attr('data-event');
if (typeof rtecEvent !== 'undefined') {
jQuery('.single-tribe_events .rtec-register-button').replaceWith('<a href="https://mywebsite.com/registration-page/?event_id='+rtecEvent+'"><button type="button" id="rtec-form-toggle-button" class="rtec-register-button rtec-js-show rtec-custom-hover" style="display: inline-block;">Register<span class="tribe-bar-toggle-arrow"></span></button></a>');
}
Make sure you change the “https://mywebsite.com/registration-page/” part of the code to your actual registration page’s address.
Now when a visitor clicks the registration button on the event page, they will be linked to the registration page that will work with the event.