-
kariellen35 replied to the topic Problems with user registration in the forum How-to & Troubleshooting 8 years, 4 months ago
Here is my website address: https://mycrewlink.com
-
kariellen35 started the topic Problems with user registration in the forum How-to & Troubleshooting 8 years, 4 months ago
My registration page is no longer working. When the submit button is selected after filling out all required fields it acts like it is loading then it scrolls the page up, doesn’t auto clear the entries and doesn’t show any sort of message. The user doesn’t come up as registered in the backend and no email is sent. The only thing that has changed…[Read more]
-
Roben Stwart's profile was updated 8 years, 4 months ago
-
love2playgames's profile was updated 8 years, 4 months ago
-
Roben Arstin's profile was updated 8 years, 4 months ago
-
kollins Daren's profile was updated 8 years, 4 months ago
-
Henry Wright replied to the topic Specific posts (post format) for listings in the forum Creating & Extending 8 years, 4 months ago
Post Formats is a WordPress theme feature. See https://codex.wordpress.org/Post_Formats. Try asking your question at https://wordpress.org/support/
-
Henry Wright replied to the topic Activation email not sent in the forum Installing BuddyPress 8 years, 4 months ago
Check with the users that the email isn’t in the junk folder. This often happens so I usually recommend checking that first.
-
Henry Wright replied to the topic Reactions on new post and comments in the forum Third Party Plugins 8 years, 4 months ago
I tried BP Reactions after activating it, it does not show up
You could try opening an issue on the plugin’s forum: https://wordpress.org/support/plugin/bp-reactions
-
Treton Smith's profile was updated 8 years, 4 months ago
-
Anthony Tornambe replied to the topic How to re-direct Login page in the forum How-to & Troubleshooting 8 years, 4 months ago
Add 301 redirect code in your page to redirect login page.
-
Anthony Tornambe replied to the topic HTTP Error while uploading image in the forum How-to & Troubleshooting 8 years, 4 months ago
I use buddypress plugins to optimize it.
-
ronki david's profile was updated 8 years, 4 months ago
-
Checkthem INC's profile was updated 8 years, 4 months ago
-
Renato Alves replied to the topic Quick Links to remove user from All groups or individual groups in the forum Miscellaneous 8 years, 4 months ago
You can certainly use BuddyPress WP CLI for that: https://github.com/buddypress/wp-cli-buddypress
It has a
wp bp group membercommand.Something like
wp bp group member --group-id={GROUP_ID} --user-id={MEMBER_ID} -
Compare & Buy Insurance Plans in India's profile was updated 8 years, 4 months ago
-
Southstar Asbestos started the topic How to Install BuddyPress in the forum Installing BuddyPress 8 years, 4 months ago
Can you please help me in installing buddypress for my website
-
alex taylor's profile was updated 8 years, 4 months ago
-
Skyrie replied to the topic Filter activity action in the forum How-to & Troubleshooting 8 years, 4 months ago
@graeme_bryson and for anyone else who wants to know, this code should work!
function my_activity_posted_by_action( $action, $activity ) {
$action = sprintf( __( '%s', 'buddypress' ), bp_core_get_userlink( $activity->user_id ) );
return $action;
}
add_filter( 'bp_activity_new_update_action', 'my_activity_posted_by_action', 1, 2… -
Peter Hardy-vanDoorn replied to the topic Blocking some logged-in users from accessing buddypress altogether in the forum How-to & Troubleshooting 8 years, 4 months ago
This should do the trick:
function bgmc_nosubs_redirect() {if ( current_user_can( 'Customer' ) && is_buddypress() ) {
wp_redirect( home_url( '' ) );
exit();
}}
add_filter( 'template_redirect', 'bgmc_nosubs_redirect' );
Note – untested, but theory is sound 🙂
- Load More