<form action="https://[url]?s2-ssl=yes">
Statistics: Posted by shahar — September 5th, 2011, 5:38 am
Statistics: Posted by Cristián Lávaque — April 2nd, 2011, 5:46 pm
Statistics: Posted by Jason Caldwell — April 2nd, 2011, 5:45 pm
Statistics: Posted by Cristián Lávaque — April 2nd, 2011, 5:30 pm
<?php
add_filter("ws_plugin__s2member_check_force_ssl_get_var_name", "my_function");
function my_function(){ return "ssl"; /* << Change this to what you prefer. */ }
?>
Statistics: Posted by Jason Caldwell — April 2nd, 2011, 5:15 pm
Statistics: Posted by Cristián Lávaque — April 2nd, 2011, 5:02 pm
Statistics: Posted by johnleblanc — April 2nd, 2011, 4:59 pm
While not perfect, I like the "Theme My Profile" plugin because it provides access to custom profile fields in a more WordPress-y way. This seems more hookable/filterable/community-supportable than the s2member-specific "Custom Registration Fields" administration (which is a great feature for non-developers, kudos!).
Statistics: Posted by Jason Caldwell — April 2nd, 2011, 4:49 pm
<?php
add_filter("ws_plugin__s2member_check_force_ssl_get_var_name", "my_function");
function my_function(){ return "my-s2-ssl"; /* << Change this to what you prefer. */ }
?>
Statistics: Posted by Jason Caldwell — April 2nd, 2011, 4:33 pm
function my_custom_contact_methods($content) {
unset($content['aim']);
unset($content['yim']);
unset($content['jabber']);
$content['facebook'] = __('Facebook');
$content['twitter'] = __('Twitter');
$content['linkedin'] = __('LinkedIn');
// only exposed to admins
if ( current_user_can('add_users') ) {
$content['affiliate_id'] = __('Affiliate ID');
}
return $content;
}
add_filter('user_contactmethods','my_custom_contact_methods', 10, 1);
Statistics: Posted by johnleblanc — April 1st, 2011, 3:35 am