add a woocommerce shop to every buddypress user [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 8 years ago. Improve this question I’m creating a social network site with buddypress and woocommerce. I want to enable every member to purchase from others and … Read more

How to check if the current page is a “personal activity”-page in buddypress? [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 7 years ago. Improve this question I want to modify some general text in my personal-activity page in buddypress. Does any one know any conditional tag like … Read more

How to modify an add_action() inside a loop of core function

Ok I want to edit bp_core_screen_signup() is which is a function of buddypress that used to process the registration form. Basically this funtion checks for any errors produced and then loops through them using add_action() to inject them into register.php. Well I need to change the html tags it’s using and I don’t understand how. … Read more

How to delete user roles?

I installed BuddyPress which created additional user roles but even after deleting BuddyPress those roles are still there. How can I delete these roles? I have tried the remove_role() command but it did not work. 2 Answers 2 $wp_roles = new WP_Roles(); // create new role object $wp_roles->remove_role(‘name_of_role’); If you need to check the name_of_role … Read more

BuddyPress: How to get info of users filtered by some x-profile data? [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 7 years ago. Improve this question I want the list of users with their email IDs, filtered by some x-profile data. For example, I want to send … Read more

How to update BuddyPress xprofile fields programmatically? [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 7 years ago. Improve this question I update user info using wp_update_user function. I also need to update the table wp_bp_xprofile_data. Is there any function, where I … Read more

Delete all user attachments

In buddypress when a user wants to delete their own account –> is possible to delete all their attachments entries and images uploaded using media? Note: Images are not attached to posts, because im not letting users create normal posts, they only can upload images using media. Thanks in advance. 1 Answer 1 As media … Read more