-
Boone Gorges posted on the forum topic New Group creation fields in the group Miscellaneous: 14 years ago
Hi David. It’s impossible to tell from what you give here exactly what’s going on. My guess is that something that you’re doing in functions.php is throwing an error that can’t be printed to the screen because of other stuff that BP core has already output. Try some var_dump statements in the passages leading up […]
-
Boone Gorges posted on the forum topic New Group creation fields in the group Miscellaneous: 14 years ago
I just took a peek at the BP source, and it looks like the group *has* been created by the point in question, but the information hasn’t been loaded into $bp->groups->current_group yet. Here’s a variant on the code that might work (or something like it): ` function bbg_save_extra_group_details() { global $bp; if ( $bp->groups->new_group_id )…
-
Boone Gorges posted on the forum topic bp_get_member_user_id() in header in the group How-To and Troubleshooting: 14 years ago
bp_get_member_user_id()
only works inside of a member loop. To get the id of the logged in user, trybp_loggedin_user_id()
, id
-
Boone Gorges posted on the forum topic Getting double friendship actions on my Members Directory page in the group How-To and Troubleshooting: 14 years ago
Are you using a custom theme? It sounds like the theme wasn’t updated to account for the new BP_Button class.
-
Boone Gorges posted on the forum topic RSS feed of forum topics? in the group How-To and Troubleshooting: 14 years ago
I built this https://wordpress.org/extend/plugins/bp-lotsa-feeds/ but it doesn’t provide exactly the feed you’re looking for. I’ll file it as an enhancement ticket and maybe get around to it one of these days.
-
Boone Gorges posted on the forum topic HOW TO SET UP FORUMS/GROUPS? WHERE ARE THE BASIC INSTRUCTIONS????? in the group Installing BuddyPress: 14 years ago
Once you have activated a BuddyPress-compatible theme, such as the packaged bp-default, you will see a Groups tab at the top of the main page. Click on it. You should then see a Create A Group button at the top of the Groups directory.
-
Boone Gorges posted on the forum topic HOW TO SET UP FORUMS/GROUPS? WHERE ARE THE BASIC INSTRUCTIONS????? in the group Installing BuddyPress: 14 years ago
Activate forums in a given group at that group’s Admin > Group Settings.
AND THERE’S NO NEED TO SHOUT!!!!!
-
Boone Gorges started the forum topic BP Group Reviews plugin release in the group BP Group Reviews: 14 years ago
Check it out! http://teleogistic.net/code/buddypress/bp-group-reviews/
Just like on the plugins section of buddypress.org, now you can have a Reviews tab for your BP groups. Cha-ching!
-
Boone Gorges posted a new activity comment 14 years ago
Is it the last line in your LocalSettings.php file? Do you have a closing ?> ? If so, try removing it; if not, try adding it?
-
Boone Gorges posted a new activity comment 14 years ago
I have a local installation where the single sign on is working fine (WP 3.0.1, BP 1.2 branch).
-
Yeah I can see it can be done, I’ve been working on it all day and im stuck here: http://es.science3point0.com/cienciawiki/ with : ‘Parse error: syntax error, unexpected $end in /home/collabbo/public_html/es/cienciawiki/LocalSettings.php on line 144’ – line 144 is ‘require_once($IP.’/extensions/LogoutLoginWP/LogoutLoginWP.php’);’ – Do you think…[Read more]
-
Is it the last line in your LocalSettings.php file? Do you have a closing ?> ? If so, try removing it; if not, try adding it?
-
It is, I didnt, I do now, same error. Any other ideas, Thanks
-
-
-
-
Boone Gorges posted on the forum topic BuddyPress.org avatar upload restrictions? in the group Requests & Feedback: 14 years ago
As I stated above, the problem is not with the BuddyPress software, it is with the environment in which the buddypress.org website is hosted. It is a universal truth that websites will not allow you to upload files (like avatars) unless their permissions have been properly configured. In the case of buddypress.org, they are not […]
-
Boone Gorges posted on the forum topic Feature Request : Topics of Groups I joined in the group Requests & Feedback: 14 years ago
For a new tab, check out the BP Skeleton Component. It’ll show you how to create a new tab, how to register a new component (for a top-level URL like http://example.com/custom-forum-page), and how to use a screen function to display the content.
-
Boone Gorges posted a new activity comment 14 years ago
You could try calling an instance of the Cac_Featured_Content_Widget class and then calling the widget() method. Something like
$fc_widget = new Cac_Featured_Content_Widget(); $fc->widget()
You might need to pass in an argument having to do with $instance. Play around with it and see what you can figure out.Otherwise you should just use a page…[Read more]
-
Thanks Boone, I’ll look into it. On another note, do you have synced mediawiki login on a wp3.01 bp1.2.6 build? Is it possible?
-
I have a local installation where the single sign on is working fine (WP 3.0.1, BP 1.2 branch).
-
Yeah I can see it can be done, I’ve been working on it all day and im stuck here: http://es.science3point0.com/cienciawiki/ with : ‘Parse error: syntax error, unexpected $end in /home/collabbo/public_html/es/cienciawiki/LocalSettings.php on line 144’ – line 144 is ‘require_once($IP.’/extensions/LogoutLoginWP/LogoutLoginWP.php’);’ – Do you think…[Read more]
-
Is it the last line in your LocalSettings.php file? Do you have a closing ?> ? If so, try removing it; if not, try adding it?
-
It is, I didnt, I do now, same error. Any other ideas, Thanks
-
-
-
-
-
Hi Boone, I fixed that problem but Im having issues that it just redirects to the homepage. eg http://www.es.science3point0.com/cienciawiki directs to http://www.es.science3point0.com – Any ideas, 2 days solid and its starting to depress me!
I’ve worked out it’s something to do with Auth WP, if I remove the code below it does not redirect:
-
Any ideas if it doesnt work on subdomains?
-
-
-
Boone Gorges posted on the forum topic BuddyPress.org avatar upload restrictions? in the group Requests & Feedback: 14 years ago
It’s a problem with buddypress.org’s hosting situation. As @crashutah alludes to, buddypress.org shares user database with wordpress.org, which at the moment has pretty severe restrictions on the kinds of files that can be uploaded. I’ve spoken with some of the staff at Automattic about the problem, and they’ve informed me that the general…[Read more]
-
Boone Gorges posted on the forum topic New Group creation fields in the group Miscellaneous: 14 years ago
You shouldn’t need more functions, just conditional checks inside of the plugins. Something like:
function bbg_save_extra_group_details() { global $bp; if ( 'yes' == groups_get_groupmeta( $bp->groups->current_group->id, 'is_this_group_a' ) ) { // do some group A stuff } else { // do some group B stuff } }
You don’t have to use groupmeta to…[Read more] -
Boone Gorges posted on the forum topic New Group creation fields in the group Miscellaneous: 14 years ago
Make sure it’s /wp-content/plugins/bp-custom.php (‘bp’ as in ‘BuddyPress’, not ‘bg’ as in ‘Boone Gorges’) 🙂
It’s fine to keep it in your functions.php if it works for you, though.
-
Boone Gorges posted on the forum topic change CSS according hashtags in activity content in the group How-To and Troubleshooting: 14 years ago
It’s hard for me to guess without seeing the markup. Keep in mind that the css that you’ve posted is looking for a *child* of div.activity-list with the class name “red”. Make sure that the activity item markup still has its CSS class rendered by the following code (in entry.php of your child theme):
class=" "
[…] -
Boone Gorges posted on the forum topic New Group creation fields in the group Miscellaneous: 14 years ago
Basically, you’ll need two functions to make it happen. One will create the form markup, and the other will process the data. Here’s a skeleton:
function bbg_extra_group_fields_markup() { // Put your form markup here, eg: ?> Country groups->current_group->id, 'country', $_POST ); } add_action( 'groups_group_details_edited',…
[Read more] -
Boone Gorges posted on the forum topic 'bp_activity_add()' doesn't respect 'primary_link' in the group Creating & Extending: 14 years ago
No, you’re not doing anything wrong – this appears to be intended behavior. Check out bp_activity_get_permalink() in bp-activity.php. The primary_link is used for the View href only when the activity type is new_blog_post, new_blog_comment, new_forum_topic, or new_forum_post. Would you consider opening an enhancement ticket on trac.buddypress.org…[Read more]
-
Boone Gorges posted on the forum topic What does BP.org use to power the "current location" field in our profiles? in the group How-To and Troubleshooting: 14 years ago
Thanks for the note about the API key. I removed it from the original post. The kind of sorting you’re talking about is possible but is quite a bit trickier. I have successfully used https://wordpress.org/extend/plugins/buddypress-geo/ is a starting point for that kind of filtering, but the repo version of the plugin is broken, and I’ve […]
- Load More
@boonebgorges
Active 1 year, 4 months ago
It is, I didnt, I do now, same error. Any other ideas, Thanks