-
Henry Wright replied to the topic add activity form, "whats new form" or post form to all activity page. in the forum How-to & Troubleshooting 9 years, 4 months ago
The activity post form that is displayed on the site-wide activity page can be found here. You could use a modified version of that in your profile template?
-
Henry Wright replied to the topic add activity form, "whats new form" or post form to all activity page. in the forum How-to & Troubleshooting 9 years, 4 months ago
You could use bp-custom.php for this if a hook is available but an alternative method would be to override the template. Check out the BuddyPress Template Hierarchy article for more info. This approach gives you more control over what exactly is to be displayed on your website.
-
Henry Wright replied to the topic add activity form, "whats new form" or post form to all activity page. in the forum How-to & Troubleshooting 9 years, 4 months ago
You could use bp-custom.php for this if a hook is available but an alternative method would be to override the template. Check out the BuddyPress Template Hierarchy article for more info). This approach gives you more control over what exactly is to be displayed on your website.
-
Henry Wright replied to the topic Extended profiles in the forum How-to & Troubleshooting 9 years, 4 months ago
This can be accomplished using BuddyPress. As to whether you’ll need plugins or custom code, I’d be tempted to say you’ll need to go down the custom route because I haven’t seen a plugin that will do this for you (I may be wrong so check the Plugin Directory first).
-
Henry Wright replied to the topic Buddypress Login Plugin in the forum Third Party Plugins 9 years, 4 months ago
It’s probably worth asking that question on the plugin’s support forum. Hopefully the plugin author will be able to advise.
-
Henry Wright replied to the topic Facebook Group in the forum Showcase 9 years, 4 months ago
“Your BuddyPress” is a place to show off your wonderful BuddyPress creations. Even though your Facebook group isn’t a BuddyPress creation, it is third-party and seems to be dedicated to BuddyPress so I thought this forum was a fitting place for your post.
Hope that explains why your topic was moved.
-
Henry Wright replied to the topic How Do I Display A Custom Profile Field? in the forum How-to & Troubleshooting 9 years, 4 months ago
You can do that with this:
bp_member_profile_data( 'field=name' );
Where
name
is the profile field name. -
Henry Wright replied to the topic How Do I Display A Custom Profile Field? in the forum How-to & Troubleshooting 9 years, 4 months ago
You can do that with this:
bp_member_profile_data( 'field=name' );
Where
name
is the custom field name. -
Henry Wright replied to the topic Facebook Group in the forum Showcase 9 years, 4 months ago
[Moved to the “Your BuddyPress” forum]
-
Henry Wright replied to the topic Buddypress Login Plugin in the forum Third Party Plugins 9 years, 4 months ago
Theme My Login will allow you to perform a redirect on login. You will need to add the social login button functionality separately. Search the WordPress Plugin Directory for one that works for you and is actively maintained.
-
Henry Wright replied to the topic Buddypress Files Customization With Theme Built From Scratch. in the forum Installing BuddyPress 9 years, 4 months ago
Take a look at the BuddyPress Template Hierarchy article. That should answer any questions you have.
-
Henry Wright replied to the topic Email optional in signup page in the forum How-to & Troubleshooting 9 years, 4 months ago
This won’t be easily done. If you take a look in
bp_core_screen_signup()
, you’ll see it expects the user’s email to be provided. If no email is given, then an error will be reported. -
Henry Wright replied to the topic Content Invisible to Google in the forum How-to & Troubleshooting 9 years, 5 months ago
Hi @baldarab
What’s the content of your robots.txt file?
-
Henry Wright replied to the topic Content Invisible to Google in the forum How-to & Troubleshooting 9 years, 5 months ago
Have you allowed 6-8 weeks for Google to index the pages? It can be that long in some cases.
-
Henry Wright replied to the topic how do you put the buddypress avatar inside the div or i-tag? in the forum Showcase 9 years, 5 months ago
I doubt
<i class=”fa fa-user”></i>
is inserted by BuddyPress. Is it generated by a plugin? -
Henry Wright replied to the topic Query posts by custom field in the forum How-to & Troubleshooting 9 years, 5 months ago
I think what @shanebp is saying is you’ll need to collect the user IDs separately and then use that array of IDs in your query.
-
Henry Wright replied to the topic [Resolved] Redirect if user is already logged in in the forum How-to & Troubleshooting 9 years, 5 months ago
Try
bp_core_redirect( bp_get_root_domain() . '/new' );
Change
new
to whatever you like. -
Henry Wright replied to the topic Uploading images into a public gallery with a user signed to it in the forum Requests & Feedback 9 years, 5 months ago
This isn’t possible by default. You’d likely need to custom code something like this. Alternatively, you may find a plugin that does something similar.
-
Henry Wright replied to the topic Generic Link to Profile? in the forum How-to & Troubleshooting 9 years, 5 months ago
It should go into your template file.
-
Henry Wright replied to the topic Generic Link to Profile? in the forum How-to & Troubleshooting 9 years, 5 months ago
You can do that like this:
<?php if ( is_user_logged_in() ) { ?>
<a href="<?php echo bp_loggedin_user_domain(); ?>">Profile</a>
<?php } else { ?>
<a href="/login">Login</a>
<?php } ?> - Load More
@henrywright
Active 8 months, 2 weeks ago