-
r-a-y posted a new activity comment 15 years, 11 months ago
Hi Derek, perhaps you and Peter can create a group specifically for BP 1.1 installs? Might be interesting and useful for those who are sticking with the BP 1.1 branch. Also, have you thought about upgrading to BP 1.2, but using the BP Backwards Compatibility plugin? This should give you most of the functionality from BP 1.1, but on a more,…[Read more]
-
r-a-y posted a new activity comment 15 years, 11 months ago
Great!
-
r-a-y posted on the forum topic Irrational Games Achievements in the group How-To and Troubleshooting: 15 years, 11 months ago
Definitely customized. They’re using BP 1.1.3.
This just goes to show what you can do with imagination and theme customization!
-
r-a-y posted on the forum topic Usernames missing in fields… in the group Welcome Pack: 15 years, 11 months ago
Looks like you’re using a BP plugin or some custom code that is conflicting with Welcome Pack.
Are you using any plugins that do anything to the member directory at all?
-
r-a-y posted on the forum topic Help Troubleshooting My Broken Registration in the group How-To and Troubleshooting: 15 years, 11 months ago
Have you tried using the BP default theme? That’s the easiest way to figure out if your child theme is the problem.
Also, if you’re using WPMU, check the wp-content/mu-plugins folder.
-
r-a-y posted a new activity comment 15 years, 11 months ago
Try this plugin:
https://wordpress.org/extend/plugins/bp-xtra-signup/-
Ray looks awesome… I already tried it.. states you must have wp 3.0 to use… we are using 2.9.2…. Can’t upgrade to 3.0 because we are using the activity stream as a “front page” and there is an issue with that displaying in 3.0+ and bp…. @r-a-y
-
-
r-a-y posted on the forum topic can’t log into my wordpress admin panel/dashboard after installing buddypress in the group How-To and Troubleshooting: 15 years, 11 months ago
@thegreatdaysho – Login to your FTP and navigate to /wp-content/plugins. Rename the BuddyPress Template Pack plugin directory to something else. Then reload your site.
FYI, I deleted your other topic because of double posting.
-
r-a-y posted on the forum topic BuddyPress pages didplay but return a 404 header HTTP status in the group How-To and Troubleshooting: 15 years, 11 months ago
@thekmen – This could be fixed in BP 1.3-bleeding version, but for the 1.2 branch, please report it as a bug.
-
r-a-y posted on the forum topic How to put users profiles in website root instead of /members/ ? in the group How-To and Troubleshooting: 15 years, 11 months ago
@walid3 – Are you saying that when you apply the define line, that your admin account is still /members/admin? Or are you saying that activity stream items for “admin” link to “/members/admin”? If this is your problem, then that is expected because activity stream items are cached in the database. New activity items should correctly use […]
-
r-a-y posted on the forum topic Using custom is_user function to hide pages in the group How-To and Troubleshooting: 15 years, 11 months ago
You could probably hook into the get_header action, do your conditional check and if the person is a mentor, then show the page, otherwise show the registration page or whatever.
Modify the function listed in this…[Read more]
-
r-a-y posted on the forum topic How to Get the Value of a Profile Field in the group How-To and Troubleshooting: 15 years, 11 months ago
Glad you figured it out. FYI, the community takes time out of their day to help people and write documentation for free. Contrary to popular belief, we are not robots! 😉 We need more people like you to contribute to the codex, after all this is an open-source project. The more people that contribute, the more rich the […]
-
r-a-y posted a new activity comment 15 years, 11 months ago
The latest BP 1.2 branch can be found here – https://trac.buddypress.org/browser/branches/1.2
You can find the latest BP 1.3 trunk here – https://trac.buddypress.org/browser/trunk
Click on the zip archive link at the bottom of the page to grab the build.
-
r-a-y posted on the forum topic "My Favorites" Plugin in the group Requests & Feedback: 15 years, 11 months ago
@slaffik – Hmm… make sure you’re using the latest code as the older ones I posted on Pastebin did not hook into the right action. Also double check the wp_bp_activity table and make sure for the “new_blog_post” type that the item_id is the blog ID and the secondary_item_id is the post ID on the blog. One […]
-
r-a-y posted on the forum topic Plugin for customizing language file? in the group Creating & Extending: 15 years, 11 months ago
There is no real guideline apart from making sure your plugin is BP-aware . You can check out how BP’s internal code is structured as well some of the most popular BP plugins. A BP plugin is basically a WP plugin so you can also read up on WP’s general guidelines . Also check out: https://codex.wordpress.org/Developer_Documentation#Plugin_Development […]
-
r-a-y posted on the forum topic How to put users profiles in website root instead of /members/ ? in the group How-To and Troubleshooting: 15 years, 11 months ago
@walid3 – Add the following line to wp-config.php:
define ( 'BP_ENABLE_ROOT_PROFILES', true );For more nifty internal config settings, check out this page:
https://codex.buddypress.org/how-to-guides/changing-internal-configuration-settings/ -
r-a-y posted on the forum topic php code for output username in activity stream in the group How-To and Troubleshooting: 15 years, 11 months ago
@blacktattoo – You could try the BP Usernames Only plugin if you want to replace the display name with the username:
https://wordpress.org/extend/plugins/buddypress-usernames-only/If you want to add it to the activity content, you could apply a filter to “bp_get_activity_content”.
-
r-a-y posted on the forum topic BP Installed: Registration Missing? in the group How-To and Troubleshooting: 15 years, 11 months ago
-
r-a-y posted on the forum topic "My Favorites" Plugin in the group Requests & Feedback: 15 years, 11 months ago
@slaffik – Can you try creating a new blog post and then check the favorite button on that blog post? When you mouseover the favorite button, you should see: hxxp://domain.com/activity/favorite/ACTIVITY_ID/?_wpnonce=xxx. If the activity ID is blank, that means the code couldn’t find an activity id for the blog post. I’ve noticed that some old blog…[Read more]
-
r-a-y posted on the forum topic "My Favorites" Plugin in the group Requests & Feedback: 15 years, 11 months ago
@slaffik – The code doesn’t do anything by itself. Sorry for not being clear!
You also need to add the favorite / unfavorite code from bp-default/activity/entry.php to each blog theme’s single.php.
I could have hooked the favorite button to “the_content”, but decided to give theme designers some flexibility this way.
-
r-a-y posted on the forum topic "My Favorites" Plugin in the group Requests & Feedback: 15 years, 11 months ago
Here’s a tweaked version of @dnxpert ‘s code that works on WPMU (don’t use this on single WP): http://pastebin.com/Qfichf0t (paste in wp-content/plugins/bp-custom.php) (updated 06/12/2010 – 12:27am GMT) The positives with my code is you can use the favorite / unfavorite code from bp-default/activity/entry.php verbatim without duplicating the…[Read more]
- Load More
@r-a-y
Active 3 months ago
@r-a-y there have just been too many revisions that have broken things way too many times at this point. The expectations to have plugin and theme developers have their work continuously broken has seriously hurt this project. It seems like almost every year BP sheds people who are confounded with the “new” changes. As I have said before i…[Read more]