OK… I’ve got S2Member setup to “theme” my login page. Slight adjustments to the width of the box and my custom logo.
WITH NO CODE CHANGES
My “themed” login shows correctly and there is NO background on forum page WHEN NOT LOGGED IN. After logging in… it shows the background fine.
WITH MY CODE EDITS – s2-hacks.php
My “themed” login is REMOVED (showing WP login). The background works correctly on forum page.
WITH YOUR CODE EDITS – spFunctions.php
My “themed” login shows w/o logo at all (so no WP login-yea!). The background works correctly on forum page.
# remove S2Members login CSS from forum
#add_filter ('ws_plugin__s2member_login_header_styles', 'my_skip_login');
function my_skip_login($data) {
if (sp_is_forumpage()) return false;
return $data;
}
THIS CODE – spFunctions.php
My “themed” login shows w/o logo at all (so no WP login-yea!). there is NO background on forum page WHEN NOT LOGGED IN.
# remove S2Members login CSS from forum
add_filter ('ws_plugin__s2member_login_header_styles', 'my_skip_login');
function my_skip_login($data) {
# if (sp_is_forumpage()) return false;
return $data;
}
THIS CODE – spFunctions.php – SAME RESULT
My “themed” login shows w/o logo at all (so no WP login-yea!). there is NO background on forum page WHEN NOT LOGGED IN.
——–
Okay, weird… that got me thinking… I commented out everything and my logo still doesn’t show on the login page… looking at several other things… will get back at you.