-
Author
-
December 4, 2017 at 21:55 #181949bluelaserdesignParticipant
All users are shown in the members directory whether they are paying members or not.
- Example: The site administrator is showing in the list despite not being a member on a subscription. There seems to be no functionality that cares if a user is on a plan or not.
Attachments:
You must be logged in to view attached files.December 5, 2017 at 01:47 #181974LauraModeratorHello, the directory shows all members, buddypress is not sync with paid memberships pro so its not affected by memberships.
You could create an integration but with the help of a developerHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
December 5, 2017 at 16:09 #182005bluelaserdesignParticipantI am a developer. I code high quality WordPress themes for a living. Occasionally, a client comes around that cannot afford custom coding, so that’s when we use a third-party theme. Unfortunately, this theme does not do what it promises and contains so many bugs at the moment, it cannot be used.
I bought the theme because I did not want to have to do any custom coding because the client’s budget did not allow it. However, I am now finding myself spending lots of time troubleshooting shortcomings, oversights, and bugs related to this theme.
It completely makes no sense to display users that are not part of the community.
December 6, 2017 at 14:36 #182101LauraModeratorHello, we have a demo to view all the theme features, and that feature was not listed or shown at the demo, and actually its the first time i see it requested, you can easily build search results with the form and bring users with an specific profile field. You could add the field “VIP” that can only be changed by you, and do a search for only vip members, it should show the ones you want.
Or edit the members-loop.php file and add an if membership so you can filter members.We can’t add functions here, we are here to help with what is already there. The theme works correctly and if you find any bug ( that is actually a bug not a function that doesn’t exist ) please let me know and we will check it out ASAP.
We are not one of the most seller on themeforest for having a theme with bugs but for having a growing theme and good support and you can confirm it checking our reviews.
If i can help you with anything, please let me know, but i can’t add a feature that was never there.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
December 6, 2017 at 20:38 #182186bluelaserdesignParticipantSo there’s zero integration between all the crappy plugins you have packaged with the theme?
This is so stupid and completely illogical. Why would anyone want site administrators in the members directory? Makes no sense.
For others that have bought the theme and ran into the problem of this senseless decision, here is a script that will show only active members.
COPY CODEfunction buddydev_exclude_users( $args ) { //do not exclude in admin if( is_admin() && ! defined( 'DOING_AJAX' ) ) { return $args; } $excluded = isset( $args['exclude'] )? $args['exclude'] : array(); if( !is_array( $excluded ) ) { $excluded = explode(',', $excluded ); } global $wpdb; $active_users_arr = array(); $users = $wpdb->get_results( " SELECT user_id, status FROM $wpdb->pmpro_memberships_users WHERE status = 'active' " ); foreach ( $users as $user ) { array_push($active_users_arr,$user->user_id); } $user_ids = $active_users_arr; //user ids $excluded = array_merge( $excluded, $user_ids ); $args['include'] = $excluded; return $args; } add_filter( 'bp_after_has_members_parse_args', 'buddydev_exclude_users' );
December 7, 2017 at 19:23 #182276LauraModeratorI understand, thanks you very much for the fix and sorry that i couldn’t help you
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
-
AuthorPosts
The forum ‘Bugs & Issues’ is closed to new topics and replies.