@antipole
	Active 2 weeks, 2 days ago
	
	- 
	
	
Henry Wright replied to the topic [Resolved] Redirecting Register link in the forum How-to & Troubleshooting 10 years, 6 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]