-
shanebp replied to the topic How to create separate private groups within one site? in the forum Installing BuddyPress 10 years, 11 months ago
How are members designated ?
Per BP Group ?
Per course ?So if a student is enrolled in Course A, they are automatically a member of Group A?
It’s not hard to only use a subset of all site members.
You just need to know the parameter that controls which group/course a logged-in member is part of. Then you can adapt this…[Read more] -
shanebp replied to the topic Create html image link to logged in user's profile in the forum How-to & Troubleshooting 10 years, 11 months ago
<a href="<?php echo bp_loggedin_user_domain; ?>profile/">
<img src="http://mydomain.com/images/myprofile.png>
</a> -
shanebp replied to the topic Buddy Press to search for all members not just active members in the forum How-to & Troubleshooting 10 years, 11 months ago
>We have a search members plugin
Plugin name? Link? -
shanebp replied to the topic How to stop spam registrations (HELP!!) in the forum Installing BuddyPress 10 years, 11 months ago
First you said:
>I disabled registrations using “Registration is disabled” from the network admin settings/network settings and the spam registrations continue.Now you say:
>– disable registrations (network admin) and the automatic reg stopsNot sure why things have changed, but it’s a clue.
btw – did you change the salts in your wp-co…[Read more]
-
shanebp replied to the topic Profile Link in Plugins in the forum Installing BuddyPress 10 years, 11 months ago
As the name suggests, bp_loggedin_user_domain() gets the profile url for a member who is logged in.
It won’t work until the person logs in.
We hope your next question is not:
How can I get the Profile link for a person who is not logged in? -
shanebp replied to the topic How to stop spam registrations (HELP!!) in the forum Installing BuddyPress 10 years, 11 months ago
>Forums are enabled (it’s a primary purpose for the site)
Understood, but try deactivating bbPress.
If the spam regs stop, you know it’s a bbPress issue and you can post a bug report on their site.If they don’t stop, at least you know it’s not bbPress.
-
shanebp replied to the topic edit profile fields missing in the forum How-to & Troubleshooting 10 years, 12 months ago
>Wow, so basically in order for members to have access to edit all of the fields that they entered while signing up, we have to pay for a custom plugin to get access to those fields?
Let me repeat:
They are accessed on the front-end on a member’s profile page.
your-site.com/members/peteratomic/profile/If it’s your profile or you are an admin, y…[Read more]
-
shanebp replied to the topic edit profile fields missing in the forum How-to & Troubleshooting 10 years, 12 months ago
> they’re totally inaccessible afterward
They are accessed on the front-end on a member’s profile page.
your-site.com/members/peteratomic/profile/>Clicking the “your profile” link in the backend brings up a page
In the Dashboard, that link takes you to the DashBoard > User > Edit screen which is a standard WordPress screen.
If you want to vi…[Read more] -
shanebp replied to the topic Linking Front End Fields to Back End Fields in the forum Creating & Extending 10 years, 12 months ago
>Will this plugin show every single back end field and allow it to be modified etc?
Yes.
>do you have a free/cut down/trial version of the plugin
No.
If you have more questions, please contact us directly at PhiloPress.
-
shanebp replied to the topic Linking Front End Fields to Back End Fields in the forum Creating & Extending 10 years, 12 months ago
We have a premium plugin that shows xprofile fields on the User > Edit screen in the Dashboard:
http://www.philopress.com/products/bp-dashboard-user-profile-edit/
-
shanebp replied to the topic Themeing best practice now? in the forum Creating & Extending 10 years, 12 months ago
It’s the BP-Default theme that won’t exist.
re over-riding templates in your theme:
https://buddypress.org/support/topic/child-theme-structure-for-editing-plugin-files/ -
shanebp replied to the topic [Resolved] Child Theme Structure for Editing Plugin Files…. in the forum How-to & Troubleshooting 10 years, 12 months ago
In your child theme, create a folder called ‘buddypress’.
In that folder, use the same dir structure as bp-legacy and put only the files you want to over-ride the files in bp-legacy.In your case, the structure would be:
your-theme/buddypress/members/single/profile/edit.php
your-theme/buddypress/members/single/profile/profile-loop.php -
shanebpdev updated the Using the BP_User_Query class page, on the BuddyPress Codex 10 years, 12 months ago
Background
As the install base for BuddyPress has grown so has the number of installs with large (+10k) user sets.
The developers handling the large installs were having performance problems. And BuddyPress […] -
shanebp replied to the topic Hide 'view all matched members' message in the forum Creating & Extending 10 years, 12 months ago
>I’m familiar with this text but where does the following text originate from?
Look in members-loop.php for class=”pagination”
Remove it in template over-ride.
-
shanebp replied to the topic Guys….. What is the point of including filters if… in the forum How-to & Troubleshooting 11 years ago
The OP is mixing 2 ideas.
1. He complains that filters on saving data aren’t retro-active.
2. He wants the activity strings to be built dynamically instead of hardcoded into the database.Re 1 – I don’t know of any filter on save that will handle prior existing data. The very idea is unworkable. Instead use a filter on the…[Read more]
-
shanebp replied to the topic Sorting by xprofile field in the forum Creating & Extending 11 years ago
Try using ‘alphabetical’ in the basic members loop.
iow. without 2 while ( bp_members() ) : bp_the_member() loops and all the xprofile calls.That will determine if the problem is in BP or your code.
-
shanebp replied to the topic Sorting by xprofile field in the forum Creating & Extending 11 years ago
>I have tried adding the “type=”alphabetical”
It should be
if ( bp_has_members( 'type=alphabetical' ) )
When doing that, you should enable BuddyPress to WordPress profile syncing
via Dashboard > Settings > BuddyPress > Settings -
shanebp replied to the topic Getting an array error in the forum Miscellaneous 11 years ago
It’s not an error.
There is some debug info being called, probably near the top of members-loop.php.
Look for a var_dump and/or echo statement.A developer put it there. Ask everyone who worked on your install about it.
-
shanebp replied to the topic Editing Buddypress Activation Email in the forum How-to & Troubleshooting 11 years ago
Write a filter.
buddypressbp-membersbp-members-functions.php Line 1396
$message = apply_filters( ‘bp_core_signup_send_validation_email_message’, $message, $user_id, $activate_url );
-
shanebp replied to the topic Member Profile Meta Key Value in the forum How-to & Troubleshooting 11 years ago
Not sure what you mean by meta key, but…
Use something like phpmyadmin to look at the database tables.
There are 4 tables, for example wp_bp_xprofile_fields
The info you need is in one or more of those tables. - Load More
@shanebp
Active 5 hours ago