-
@modemlooper replied to the forum topic How do I use Buddypress xprofile fields inside bbPress? in the group How-To and Troubleshooting 13 years ago
Can you can post a code snippet so others that search can find info on this?
-
@modemlooper replied to the forum topic Cant Get Buddy Press to Run Locally in the group Installing BuddyPress 13 years ago
Use regular mamp not the pro. Can’t remember exactly but I had similar issues
-
@modemlooper replied to the forum topic How do I use Buddypress xprofile fields inside bbPress? in the group How-To and Troubleshooting 13 years ago
You have to pass id # of field a string wont work.
$data = xprofile_get_field( 2, bp_displayed_user_id() );print_r($data) ;
This will not give you a members choice. It will only return the default […]
-
@modemlooper replied to the forum topic [Plugin: BP Profile Menu] Conflicting with BuddyPress Default Theme Cookies in the group Third Party Components & Plugins 13 years ago
fixed in 2.0.3
-
@modemlooper replied to the forum topic associate a wordpress page with a new buddypress component in the group How-To and Troubleshooting 13 years ago
Turn resend.php into a page template and place it in your theme folder. create a page and attach the page template to it
-
@modemlooper replied to the forum topic How do I use Buddypress xprofile fields inside bbPress? in the group How-To and Troubleshooting 13 years ago
When you are not in a BuddyPress loop you can get BP content by using WP author id as it returns same id.
-
@modemlooper replied to the forum topic How do I use Buddypress xprofile fields inside bbPress? in the group How-To and Troubleshooting 13 years ago
$user_id = $bp->displayed_user->id;$location = xprofile_get_field_data( 'Location', $user_id ) ;
echo 'Location: ' . $location;if that doesnt work try getting the_author_ID(); or get_post_author_id();
-
@modemlooper replied to the forum topic Activity Stream Change… in the group How-To and Troubleshooting 13 years ago
You should create a custom component. This may be out of your coding skill level but you can check out the BuddyPress skeleton component plugin for example code.
-
@modemlooper replied to the forum topic Add Profile link to WP Custom Nav Menu in the group How-To and Troubleshooting 13 years ago
People can create any plugin they want and even charge for plugins. However, its in bad taste to find any thread related and post links to a paid plugin. This is what is generally called spam.
I want to point […]
-
@modemlooper replied to the forum topic Logout error in the group How-To and Troubleshooting 13 years ago
did you use the one click WordPress installer? If so, delete it all a install WordPress manually
-
@modemlooper replied to the forum topic Logout error in the group How-To and Troubleshooting 13 years ago
Add a plugin that causes logout problem then switch theme to BP-default. If problem goes away then frisco theme is causing error. It seems weird because logout is a WP function. BuddyPress doesn’t create it’s own logout.
-
@modemlooper replied to the forum topic Create private membership site with BuddyPress in the group How-To and Troubleshooting 13 years ago
You are better off letting email go to user but remove the activation link. Create a function that hooks into member sign up to email you separately. I’m suggesting this because its better conversion for users to […]
-
@modemlooper replied to the forum topic Print user id in profile page in the group Requests & Feedback 13 years ago
bp_displayed_user_id()
All the template tags you can use: https://codex.buddypress.org/developer-docs/buddypress-template-tags/
-
@modemlooper replied to the forum topic problem with BuddyMobile plugin in the group How-To and Troubleshooting 13 years ago
Cropper wont work until WP 3.5
-
@modemlooper replied to the forum topic altering CSS to fit my site in the group How-To and Troubleshooting 13 years ago
#content {
margin-top: 40px;
} -
@modemlooper replied to the forum topic Allowing Buddy Press Users to Create quick posts through the front end site in the group Creating & Extending 13 years ago
I do, I’m actually developing a front end blog solution for BP, it wont be out for a few months. I busy working on Menus and Mobile. When that’s done then I’m working on the blog issue
-
@modemlooper replied to the forum topic Check if is a specific profile screen. in the group How-To and Troubleshooting 13 years ago
if ( bp_is_current_component( 'articles' ) )if you are on a sub tab item like the edit profile screen you use action
if ( bp_is_current_action( 'edit' ) ) -
@modemlooper replied to the forum topic Allowing Buddy Press Users to Create quick posts through the front end site in the group Creating & Extending 13 years ago
You’ve already answered your question. The options are plugins like Gravity Forms or custom coding.
-
@modemlooper replied to the forum topic Show nav items for profile users conditionally in the group How-To and Troubleshooting 13 years ago
bp_core_remove_nav_item()
-
@modemlooper replied to the forum topic This is the worst forum in the world in the group How-To and Troubleshooting 13 years ago
Go to your profile edit screen. Change name field to something other than login name. Then your future forum posts show on your profile.
- Load More
@modemlooper
Active 3 months, 1 week ago