diff --git a/public_html/wp-content/plugins/camptix/addons/require-login.php b/public_html/wp-content/plugins/camptix/addons/require-login.php
index 06f56d80a..e2ac5dd30 100644
--- a/public_html/wp-content/plugins/camptix/addons/require-login.php
+++ b/public_html/wp-content/plugins/camptix/addons/require-login.php
@@ -58,7 +58,7 @@ public function block_unauthenticated_actions() {
global $camptix;
if ( ! is_user_logged_in() && isset( $_REQUEST['tix_action'] ) ) {
- wp_safe_redirect( wp_login_url( $camptix->get_tickets_url() ) );
+ wp_safe_redirect( add_query_arg( 'wcname', get_bloginfo( 'name' ), wp_login_url( $camptix->get_tickets_url() ) ) );
exit();
}
}