Statistics: Posted by Cristián Lávaque — October 12th, 2011, 6:21 pm
<?php
/* Custom function for the s2member plugin. This denies access to content if user doesn't have a Custom Capability (ccap) equivalent to the category slug. If denied, user is redirected to the s2member subscription options page.
*/
add_action('template_redirect', 'my_custom_capabilities');
function my_custom_capabilities() {
$category = get_the_category();
$kat = $category[0]->category_nicename;
if (in_category($kat) && (!current_user_can('access_s2member_ccap_' . $kat))) {
header('Location: ' . S2MEMBER_MEMBERSHIP_OPTIONS_PAGE_URL);
exit;
}
}
?>
Statistics: Posted by kennymcnett — October 11th, 2011, 7:31 pm
Statistics: Posted by Cristián Lávaque — October 11th, 2011, 1:38 pm
[s2File download="example.zip" download_key="true" /]
Statistics: Posted by kennymcnett — October 10th, 2011, 3:48 pm
Statistics: Posted by Cristián Lávaque — October 9th, 2011, 2:31 pm
Statistics: Posted by kennymcnett — October 8th, 2011, 4:42 pm
<?php
add_action('template_rediret', 'my_custom_capabilities');
function my_custom_capabilities() {
if (is_category('trees') && (!current_user_can('access_s2member_ccap_trees' && !current_user_can('access_s2member_ccap_sitewide')) {
header('Location: ' . S2MEMBER_MEMBERSHIP_OPTIONS_PAGE_URL);
exit;
}
}
?>
Statistics: Posted by Cristián Lávaque — October 7th, 2011, 3:45 am
Statistics: Posted by kennymcnett — October 7th, 2011, 2:48 am
[s2If current_user_can(access_s2member_ccap_videos) OR current_user_can(access_s2member_ccap_video1)]
Show video 1.
[/s2If]
[s2If !current_user_can(access_s2member_ccap_videos) AND !current_user_can(access_s2member_ccap_video1)]
Show sales copy for video 1.
[/s2If]
<?php if (current_user_can('access_s2member_ccap_videos') || current_user_can('access_s2member_ccap_video1')) { ?>
Show video 1
<?php } else { ?>
Show sales copy for video 1.
<?php } ?>
Statistics: Posted by Cristián Lávaque — October 7th, 2011, 1:43 am
Statistics: Posted by kennymcnett — October 7th, 2011, 1:00 am
Statistics: Posted by Cristián Lávaque — October 5th, 2011, 2:12 am
Statistics: Posted by Eduan — October 4th, 2011, 4:54 pm
Statistics: Posted by jmadigan — October 4th, 2011, 4:40 pm