-
Author
-
July 22, 2013 at 15:01 #816kellylouise007Participant
Hey there,
Is there an option for the user to make his entire profile private?
I swear I saw this option when messing about with the settings but I can’t seem to find it now?? Any help appreciated, thank you.Also, what default user ‘type’ should I make my users when they register? and is there a way of not allowing users access to the wordpress login panel.
Thanks again.
July 22, 2013 at 15:36 #817twoshoesParticipantIn >Sweetdate >Miscellaneous the “Admin toolbar” allows you to disable access to the WP backend. My default is “Subscriber” for my members.
July 22, 2013 at 18:27 #821SQadminKeymasterHi
You can set privacy for profile fields individually.
Users should be Subscribers so they won’t have too much permissions.
For the login restriction you can try Theme my login plugin
Best regardsHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJuly 23, 2013 at 08:08 #840kellylouise007ParticipantHey, Yes I’m aware I can set individual fields to private, but can I hide the entire profile?
Thanks twoshoes, most helpful.Thanks again.
July 23, 2013 at 19:48 #864SQadminKeymasterHi
Right now you can’t hide whole profile but we’ll look into it.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJuly 30, 2013 at 08:04 #1009AKG86ParticipantYeah that would be good, I’m happy to run my website, however I don’t want my profile to be visible on the site…is there another way to take it off?
July 30, 2013 at 18:58 #1040SQadminKeymasterHi,
To hide Admin profile you could add this snippet to your sweetdate-child/functions.php:COPY CODEadd_action('bp_init', 'kleo_private_admin'); function kleo_private_admin(){ global $bp; if(is_super_admin()) { remove_action("wp_head","bp_core_record_activity"); //id SM is on, remove the record activity hook //then remove the last activity, if present delete_user_meta($bp->loggedin_user->id, 'last_activity'); } } add_action('bp_ajax_querystring','kleo_exclude_users',20,2); function kleo_exclude_users($qs=false,$object=false) { //list of users to exclude $excluded_user='1';//comma separated ids of users whom you want to exclude if($object!='members')//hide for members only return $qs; $args=wp_parse_args($qs); //check if we are listing friends?, do not exclude in this case if(!empty($args['user_id'])) return $qs; if(!empty($args['exclude'])) $args['exclude']=$args['exclude'].','.$excluded_user; else $args['exclude']=$excluded_user; $qs=build_query($args); return $qs; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
The forum ‘Sweetdate – WordPress’ is closed to new topics and replies.