PriMoThemes — now s2Member® (official notice)
This is now a very OLD forum system. It's in READ-ONLY mode.
All community interaction now occurs at WP Sharks™. See: new forums @ WP Sharks™
Cristián Lávaque wrote:I emailed Jason asking him how that could be customized or redirected.
<?php
add_action ("wp", "my_s2_hacks", 1); function my_s2_hacks ()
{
/* Standard WordPress installs. */
if (!is_multisite () && bp_is_register_page () && !get_option ("users_can_register"))
{
$paid_for_registration = c_ws_plugin__s2member_register_access::reg_cookies_ok ();
/**/
if ($paid_for_registration == false) /* Redirect to Membership Options Page. */
wp_redirect(S2MEMBER_MEMBERSHIP_OPTIONS_PAGE_URL) . exit ();
}
/* For Multisite Networks. */
if (is_multisite () && bp_is_register_page () && get_site_option ("registration") === "none")
{
$paid_for_registration = c_ws_plugin__s2member_register_access::reg_cookies_ok ();
/**/
if ($paid_for_registration == false) /* Redirect to Membership Options Page. */
wp_redirect(S2MEMBER_MEMBERSHIP_OPTIONS_PAGE_URL) . exit ();
}
}
?>
Users browsing this forum: Exabot [Bot] and 1 guest