ipedigo
Forum Replies Created
-
Hello- Yes, I have the Membership Restrictions add-on and it only restricts who can see the ad. It doesn’t restrict where the ad can be seen.
For example, I have one membership role called Free and one called Premium. Everyone who visits the Free account should see the ad widget on the Free membership user page. If they visit the Premium user profile, no one should be able to see the ad on their page because the Premium user pays subscription to keep the ads removed. Thank you.
Unless there is something I’m overlooking?Forum: Plugins
In reply to: [BP Profile Search] add clear buttonHi Andreae–
Thank you very much!!! This worked perfectly.
??
Forum: Plugins
In reply to: [BP Profile Search] add clear buttonHello- I’m also trying to change the bps-filters position. Right now it appears before bps-form, butI’d like it to appear after it. I’ve looked at the bps-filters.php file but can’t see how I would be able to change it that way. Any pointers would be appreciated!
Thank you- I’m not sure that they do, but there is another plugin by CreativeMinds that works with shortcodes, so I may try that one.
Looking forward to trying it out!
Forum: Plugins
In reply to: [MediaPress] Community GalleryThank you BuddyDev-
Do you have a tutorial for that somewhere? I’m trying to learn how to make such a single gallery but not sure where to begin.
I found a way in BuddyBoss to set up a welcome email in settings after registering.
Forum: Plugins
In reply to: [Auto Login on Register for BuddyBoss] Without redirectMaybe with a snippet?
I also trying to figure how to another specified url after the auto-login.
I discovered this function also. I thought since it targets the WP role, then it should automatically assign the designated membership level ID. No luck with this either. Must be doing something wrong.
<?php
function assign_pmpro_level_to_role($user_id, $role, $old_roles)
{
global $current_user;
//checks if the user doesn’t have a membership level yet
if(!$current_user->ID) {//we found a role related to pmpro level
if($role == “subscriber”)
{
pmpro_changeMembershipLevel(7, $user_id); //gives default customers the level 7 free registration membership
}
elseif($role == “administrator”)
{
pmpro_changeMembershipLevel(10, $user_id); //gives admin role registrants the all access level 10 membership
}
}
}add_action(‘set_user_role’, ‘assign_pmpro_level_to_role’, 10, 3);
I should add, I’m using BuddyPress with the PMP add-on integration. If I manually add the new user to the membership level I’ve setup, they are allowed access to the restricted pages. But, if I tried this code in Cope Snippets, there is no result.
Thank you for the replies.
I see what you are saying, thank you.
I also realize that I need to customize the login form itself. Is there a guide to approach customizing the CSS for the login form?