Hello,
You can do this using only one Home page but to put conditions on the content to show.
I have created for you 2 new shortcodes that we will also include in our next update.
Add the following lines to your functions.php:
COPY CODE
/*-----------------------------------------------------------------------------------*/
/* Restrict content
/*-----------------------------------------------------------------------------------*/
if (!function_exists('kleo_only_members')) {
function kleo_only_members( $atts, $content = null ) {
if (is_user_logged_in()) {
return do_shortcode($content);
} else {
return '';
}
}
add_shortcode('kleo_only_members', 'kleo_only_members');
}
if (!function_exists('kleo_only_guests')) {
function kleo_only_guests( $atts, $content = null ) {
if (!is_user_logged_in()) {
return do_shortcode($content);
} else {
return '';
}
}
add_shortcode('kleo_only_guests', 'kleo_only_guests');
}
Use them like this in your page:
COPY CODE
[kleo_only_members]Content only for members[/kleo_only_members]
[kleo_only_guests]Content only for guests[/kleo_only_guests]
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution