-
Randy Hicks replied to the topic using action bp_core_signup_after_activate in the forum Creating & Extending 10 years, 11 months ago
Found it. This action fires when the user clicks the activate link from the activation-email.
do_action( 'bp_core_activated_user', $user_id, $key, $user );
-
Randy Hicks replied to the topic using action bp_core_signup_after_activate in the forum Creating & Extending 10 years, 11 months ago
Further investigation shows that the following added to functions.php will run if the “activate” button is clicked from the wp-admin by an existing admin. It will not run from the activate link in the user activation-email.
I must be looking for a different action.
The goal is to login the user and redirect them after they have clicked the…[Read more]
-
Randy Hicks replied to the topic using action bp_core_signup_after_activate in the forum Creating & Extending 10 years, 11 months ago
Further investigation shows that the following added to functions.php will run if the “activate” button is clicked from the wp-admin by an existing admin. It will not run from the activate link in the user activation-email.
I must be looking for a different action.
The goal is to login the user and rout them after they have clicked the activate…[Read more]
-
Randy Hicks replied to the topic using action bp_core_signup_after_activate in the forum Creating & Extending 10 years, 11 months ago
I’ll do some more testing.
I was mainly trying to find out if this action was one that needed to be called in a special way.
Some actions need to be called from within a function that is hooked to another action.
-
Randy Hicks replied to the topic using action bp_core_signup_after_activate in the forum Creating & Extending 10 years, 11 months ago
No errors, no print_r. The user is activated and sent to the sites home_url().
It’s as if my function is being over looked. I thought maybe it needed to be called at a specific point in time so I dropped it in the functions.php to try and circumvent any timing issues.
-
Randy Hicks started the topic using action bp_core_signup_after_activate in the forum Creating & Extending 10 years, 11 months ago
I’ve been trying to hook into this action, but I can’t seem to. I’ve been digging into the bp code using phpxref to try and follow any possible paths, but I think I’m missing something obvious.
My assumption is that this action should file when a new user clicks the activation link from the activation email.
I tired the following get a simple…[Read more]
-
@mercime replied to the topic location of selectbox in the forum Miscellaneous 10 years, 11 months ago
@felipexx85 You’d need to go to your site’s Activity directory page e.g. http://example.com/activity
The content of the selectbox will depend on what components you have activated and plugin you have installed. For example, Topics and Replies only show up in the selectbox if bbPress plugin is activated. -
Glenn started the topic [Resolved] need to view Groups Members in Admin in the forum How-to & Troubleshooting 10 years, 11 months ago
i need a way to show – in Admin or on the front end – either the Groups associated with each User or even better a way to show Users associated with each Group…
any plugin that will do this, or am i missing something intrinsic to BP?
-
Glenn started the topic [Resolved] need to view Groups Members in Admin in the forum How-to & Troubleshooting 10 years, 11 months ago
i need a way to show – in Admin or on the front end – either the Groups associated with each User or even better a way to show Users associated with each Group…
any plugin that will do this, or am i missing something intrinsic to BP?
-
@mercime replied to the topic Custom Picture/Album uploader in the forum How-to & Troubleshooting 10 years, 11 months ago
@stegtflesk Looks like you’re using a premium theme with it’s own features built in. Not sure, because we need more information, like what theme are you using? Have you tried asking at the theme author’s forums? We have no access to premium themes.
-
@mercime replied to the topic BLOGS in the forum Installing BuddyPress 10 years, 11 months ago
@fridafric Most of the information on that book is obsolete. If you want blogs, you need to create a network first, and that is a WordPress function which BuddyPress supports. Deactivate BuddyPress and other plugins first the follow instructions at https://codex.wordpress.org/Create_A_Network
Do make sure that your multisite installation is…[Read more] -
roce196312's profile was updated 10 years, 11 months ago
-
Glenn replied to the topic query ALL users with Role as Editor in the forum How-to & Troubleshooting 10 years, 11 months ago
thanks, this gets me the members that i want – i’m trying to put this in the members-loop
this is failing to get some of the members for some reason:
while ( bp_members() ) : bp_the_member();$user = new WP_User( bp_get_member_user_id() );
if ($user->roles[0] == 'subscribers') :
this gets me all of them, but when i put it in the…[Read more]
-
Glenn replied to the topic query ALL users with Role as Editor in the forum How-to & Troubleshooting 10 years, 11 months ago
thanks, this gets me the members that i want – i’m trying to put this in the members-loop
this is failing to get some of the members for some reason:
while ( bp_members() ) : bp_the_member();$user = new WP_User( bp_get_member_user_id() );
if ($user->roles[0] == 'student') :
this gets me all of them, but when i put it in the loop, it…[Read more]
-
Glenn replied to the topic query ALL users with Role as Editor in the forum How-to & Troubleshooting 10 years, 11 months ago
thanks, this gets me the members that i want – i’m trying to put this in the members-loop
this is failing to get some of the members for some reason:
while ( bp_members() ) : bp_the_member();$user = new WP_User( bp_get_member_user_id() );
if ($user->roles[0] == 'student') :
this gets me all of them, but when i put it in the loop, it…[Read more]
-
HansRuedi started the topic [Resolved] No excerpts for posts in activity stream in the forum How-to & Troubleshooting 10 years, 11 months ago
I updated my site to WP 4.2.2 and BP 2.3.2.1 – now activity includes full length posts and no longer excerpts…
https://www.info.ch/activity/
…only for the very first post there is an excerpt followed by the feature image. For all other posts there are full texts in activity! I’m using a premium theme called Salutation but it’s the same while u…[Read more] -
HansRuedi started the topic [Resolved] No excerpts for posts in activity stream in the forum How-to & Troubleshooting 10 years, 11 months ago
I updated my site to WP 4.2.2 and BP 2.3.2.1 – now activity includes full length posts and no longer excerpts…
https://www.info.ch/activity/
…only for the very first post there is an excerpt followed by the feature image. For all other posts there are full texts in activity! I’m using a premium theme called Salutation but it’s the same while u…[Read more] -
Roger Coathup replied to the topic Facebook in the forum Showcase 10 years, 11 months ago
We’ve worked with the Premium version of WP-FB-Autoconnect on a number of sites. It does the job.
You could also take a look at the WordPress-Social-Login project on GitHub, which looks interesting.
-
Glenn started the topic query ALL users with Role as Editor in the forum How-to & Troubleshooting 10 years, 11 months ago
I’ve been trying for hours to create the proper query for all users with a particular Role
can someone please help me with this?
thanks
GN -
Glenn started the topic query ALL users with Role as Editor in the forum How-to & Troubleshooting 10 years, 11 months ago
I’ve been trying for hours to find the proper query for the activity of a particular group #
in my buddypress install, each member only joins one group, and I’d like for activity of JUST this group to appear instead of all activity of the website – which is what’s appearing now on the Activity page…
thanks for any help
gn - Load More