<?php
add_filter("ws_plugin__s2member_login_header_styles", "my_login_styles");
function my_login_styles($s2member_styles)
{
echo '<style type="text/css">';
include "/path/to/my/stylesheet.css";
echo '</style>';
return '';
}
?>
Statistics: Posted by Jason Caldwell — July 22nd, 2010, 7:49 am
<?php
add_filter("ws_plugin__s2member_login_header_styles", "my_login_styles");
function my_login_styles($s2member_styles)
{
echo '<style type="text/css">';
include "/path/to/my/stylesheet.css";
echo '</style>';
}
?>
Statistics: Posted by Guest — July 20th, 2010, 12:52 am
<?php
add_filter("ws_plugin__s2member_login_header_styles", "my_login_styles");
function my_login_styles($s2member_styles)
{
echo '<style type="text/css">';
include "/path/to/my/stylesheet.css";
echo '</style>';
return '';
}
?>
Statistics: Posted by Jason Caldwell — June 26th, 2010, 1:46 am
<?php
add_filter("ws_plugin__s2member_login_header_styles", "my_login_styles");
function my_login_styles($s2member_styles)
{
echo '<style type="text/css">';
?>
html, body { background: #000000; }
div#login { width: 600px; }
<?php
echo '</style>';
return '';
}
?>
Statistics: Posted by Jason Caldwell — June 26th, 2010, 1:45 am
Your stylesheet data goes here.
Statistics: Posted by accessart — June 25th, 2010, 7:34 am
Statistics: Posted by k4yti — June 25th, 2010, 7:03 am
If you would like to have Customers register before checkout, you can turn on Open Registration.
See: s2Member -> General Options -> Open Registration.
You will need s2Member v3.0.6+
Once you turn on Open Registration, you can allow Customers to register first, for FREE. Then hit them with a payment button on the Login Welcome Page. You could use some of s2Member's Advanced Conditionals to tailor this specifically for your needs. s2Member also comes with a full set of WordPress Hooks/Filters embedded into its source code; giving you the ability to modify routines if you need to; and without modifying the original source code.
That being said, you really won't need to do this, unless you want to. Placing a PayPal Button on the Login Welcome Page for Free Subscribers, will allow a User ( who just registered ) to proceed through the checkout process, and s2Member will "update" their account, instead of asking them to register for a new one. s2Member handles this automatically, just in case you're wondering.
Statistics: Posted by accessart — June 24th, 2010, 3:45 am