@antipole
Active 1 month ago
-
Henry Wright replied to the topic [Resolved] Redirecting Register link in the forum How-to & Troubleshooting 10 years, 7 months ago
Hi @antipole
This is the kind of thing you’ll want to do. The
my_redirect()function hooks totemplate_redirectsobp_core_redirect()executes at exactly the right time you need it to.You’d put it in your theme’s functions.php file.
function my_redirect() {// Conditions go here.
$location = 'http://example.com';…[Read more]