-
r-a-y posted on the forum topic Searching the Codex is broken in the group Requests & Feedback: 13 years, 8 months ago
Re: bbPress roles read this:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/accounts-with-blocked-or-inactive-roles-are-still-able-to-be-accessed/I would not recommend using any of the bbPress roles at the moment.
-
r-a-y posted on the forum topic Need Help In Increasing the size of profile picture form And Increase profile picture cropping Heigh in the group Installing BuddyPress: 13 years, 8 months ago
These options are set as constants.
Check out the following defines under “Avatar specific settings can be changed:”
https://codex.buddypress.org/extending-buddypress/changing-internal-configuration-settings/ -
r-a-y posted on the forum topic Globalizing everything? I think? in the group How-To and Troubleshooting: 13 years, 8 months ago
You can also use a filtered activity loop for blog posts:
https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-activity-stream-loop/Check out the “action” parameter.
-
r-a-y posted on the forum topic How can I easily post images in the activity stream? in the group Creating & Extending: 13 years, 8 months ago
Yeah, I’m thinking about adding support for it.
-
r-a-y posted on the forum topic Looking to pay a BP developer to help finish up a blog in the group BP Jobs Board: 13 years, 8 months ago
@mercime – that now includes you! 🙂
-
r-a-y posted on the forum topic Buddpyress not finding users posts/comments in the group Installing BuddyPress: 13 years, 8 months ago
BuddyPress doesn’t look for previous blog post data, only when you activate BuddyPress and on.
Boone Gorges has a plugin that does import older blog post data:
https://buddypress.org/community/groups/bp-import-blog-activity/Check it out.
-
r-a-y posted on the forum topic How to add a second sidebar to FishBook theme to make it 3-Columns? in the group Creating & Extending: 13 years, 8 months ago
Child themes usually don’t include page.php; they usually inherit it from the parent theme, which in this case is the bp-default theme (/buddypress/bp-themes/bp-default/).
However, you can easily make such a template yourself.
Just create a page.php in your child theme and customize!
-
r-a-y posted on the forum topic How to display activity id in markup in permalink page? in the group How-To and Troubleshooting: 13 years, 8 months ago
You can only use bp_get_activity_id() / bp_activity_id() during the activity loop.
Glad you figured out how to grab the activity ID with the $bp global!
-
r-a-y posted on the forum topic BuddyPress throwing 404 in the group How-To and Troubleshooting: 13 years, 8 months ago
Yes, using the admin panel to install BuddyPress will always download the latest, stable release.
Don’t move the wordpress directory! If you need to reinstall WordPress in the root directory, do it from scratch!
-
r-a-y posted on the forum topic simple file extension support in the group oEmbed for BuddyPress: 13 years, 8 months ago
This is quite easy to build, however the name of the plugin goes against it. oEmbed != embed everything!
I might change the name of the plugin to better accomodate such a request in a future release.
-
r-a-y posted on the forum topic What template file is used for the account settings? in the group How-To and Troubleshooting: 13 years, 8 months ago
/buddypress/bp-core/bp-core-settings.php
It’s a little hard to override the settings currently, but it’s possible.
-
r-a-y posted on the forum topic BuddyPress throwing 404 in the group How-To and Troubleshooting: 13 years, 8 months ago
Did you enable pretty permalinks like mercime suggested? Are you using the latest version of BP?
Did you install WordPress in a subdirectory with these instructions?
https://codex.wordpress.org/Giving_WordPress_Its_Own_DirectoryIf so, there are bugs with BP 1.2.8 relating to subdirectory installs.
Please read this thread to resolve the…[Read more]
-
r-a-y posted on the forum topic How to display the User Post Count in Topic.php in the group How-To and Troubleshooting: 13 years, 8 months ago
You’re using the plugin wrong. Member Profile Stats, by default, passes the displayed user ID for many of the template tags; you’ll need to pass the topic poster’s ID. eg.
bp_member_profile_stats_get_member_post_count( $user_id = false )
Unfortunately, there is no native function to pass the topic poster ID. However one can easily be created:…[Read more] -
r-a-y posted on the forum topic Facebook like for BuddyPress in the group How-To and Troubleshooting: 13 years, 8 months ago
Do not use widgets that make use of iframe or script tags in a loop! Very bad load performance like you said! Unfortunately you cannot use something like FB Like without an iframe or script tag as it requires pinging FB for the like count. — Whenever possible, use links instead. The Shareholic API can […]
-
r-a-y posted on the forum topic BuddyPress throwing 404 in the group How-To and Troubleshooting: 13 years, 8 months ago
These are not errors, but debug notices.
Most of these debug notices have been fixed in the forthcoming version of BuddyPress.
Do you have WP_DEBUG defined?
-
r-a-y posted on the forum topic Unable to upload in the group BuddyPress Media: 13 years, 8 months ago
I’ve noticed this problem in the BP avatar code before.
I haven’t checked, but does BP Media use the same code as BP avatar code for uploading?
The lowercase/uppercase problem is noted here:
https://trac.buddypress.org/ticket/3087 -
r-a-y posted on the forum topic Hidden Group Invitation in the group How-To and Troubleshooting: 13 years, 8 months ago
Hidden group pages can always be accessed if you know the group permalink / URL. However if you’re not a member of that group, you won’t be able to view any of that group’s content for privacy reasons. If I’m understanding correctly, you want the invitee to be able to view the hidden group’s content […]
-
r-a-y posted on the forum topic How display login form on website in the group How-To and Troubleshooting: 13 years, 8 months ago
test.php is not a WordPress page, therefore you need to call WordPress in your custom script before you can use WordPress / BuddyPress functions.
Read this:
There’s a bunch more articles like this on the web. Do a search on Google to find out more.
-
r-a-y posted on the forum topic How to display the User Post Count in Topic.php in the group How-To and Troubleshooting: 13 years, 8 months ago
Use the Member Profile Stats plugin:
https://wordpress.org/extend/plugins/buddypress-member-profile-stats/It comes with a set of handy template tags you can use like post count.
-
r-a-y posted on the forum topic Ajax pagination and SEO in the group How-To and Troubleshooting: 13 years, 8 months ago
If you check the HTML source, pagination occurs in between the
tag; I believe search engines still read the noscript tag so you should be fine.
If you’re not happy with this, you can output the pagination links within the activity loop template with:
bp_activity_pagination_links()
- Load More
@r-a-y
Active 4 months, 4 weeks ago