@tonymalony
Active 10 years, 6 months ago
-
Henry Wright replied to the topic [Resolved] Mobile Billing in the forum Creating & Extending 10 years, 6 months ago
Hi @tonymalony
Yes you can tweak the default sign up to do that. Also, consider using something like this to redirect logged-out users away from content you want accessible to logged-in members only.
function custom_redirect() {
[Read more]
if ( ! is_user_logged_in() ) {
// redirect
wp_redirect( home_url() );
exit;…