-
@mercime replied to the topic How can I add some users/members to BP site? in the forum Miscellaneous 10 years, 2 months ago
but I want to add more users for testing … I looked at the ‘Demo Data Creater’ plugin
@simple-man check out https://wordpress.org/plugins/bp-default-data/
The number of users and groups created are limited so it’s much easier to delete test users by batch in wp-admin/users.php later -
Hugo Ashmore replied to the topic 2.1 top features in the forum Ideas 10 years, 7 months ago
@simple-man you might want to read the release docs more carefully 😉
https://codex.buddypress.org/buddypress-components-and-features/member/pending-users-admin-screen/ -
Henry Wright replied to the topic New User Registration Problem: Invalid Activation Key in the forum How-to & Troubleshooting 10 years, 8 months ago
@simple-man the next step is to check that an activation key is being set. considering you don’t have access to your database, are you comfortable with PHP? Can you add this to page.php
echo get_user_meta( $user_id, 'activation_key', true );
and replace
$user_id
with the user ID of the member you want activated.Then make sure what appears on…[Read more]
-
Henry Wright replied to the topic New User Registration Problem: Invalid Activation Key in the forum How-to & Troubleshooting 10 years, 8 months ago
@simple-man if the activation key is in the database and the link in the email is right then the problem must be elsewhere.
1. instead of clicking on the link in the email, are you able to copy the link and paste it directly into the browser address bar? It could be the click-through that is causing the problem. Just a thought.
2. can you ensure…[Read more]
-
Henry Wright replied to the topic New User Registration Problem: Invalid Activation Key in the forum How-to & Troubleshooting 10 years, 8 months ago
@simple-man what’s the link in the email? Can you copy and paste an example here?
-
@mercime replied to the topic BP Members and Groups widgets with small thumbnail size images? in the forum Miscellaneous 10 years, 8 months ago
@simple-man BP’s default style for the Member and Group widget avatars have been superseded by your theme’s style where it changed the avatar’s width to
auto
in one area and in another area, changed it tomax-width: 100%
. You can add the following to the stylesheet of your child theme.widget.buddypress ul.item-list img.avatar {
width: 20px;
}
@simple-man
Active 6 years, 2 months ago