-
r-a-y posted on the forum topic Add a new Tab in the group Miscellaneous: 13 years, 7 months ago
@tubruk – Check out bp-themes/bp-default/forums/index.php. In that file is a hook to add more tabs:
eg. Add this to your theme’s functions.php:
function my_new_fantabulous_forum_tab() { ?> <a href="YOUR LINK">Another Forum Loop </a> <?php } add_action( 'bp_forums_directory_group_types', 'my_new_fantabulous_forum_tab' );
If you want your tab to be…[Read more] -
mercime posted on the forum topic Cant create groups??? in the group How-To and Troubleshooting: 13 years, 9 months ago
@tubruk to troubleshoot why you can’t create groups, you will need to strip down to default BuddyPress installation because a custom theme or a plugin may be interfering with what can easily be done – creating groups – with a clean BuddyPress installation. That’s why I suggest that you change your theme to default theme and […]
-
mercime posted on the forum topic Cant create groups??? in the group How-To and Troubleshooting: 13 years, 9 months ago
@tubruk WP/BPversions? Change to bp-default theme, keep BP activated and deactivate all other plugins.
-
thenghui posted on the forum topic BP Album in the group Miscellaneous: 13 years, 11 months ago
@tubruk: do you mean version: 0.1.9?
-
Bowe posted on the forum topic Facebook Connect Plugin stable in the group How-To and Troubleshooting: 13 years, 12 months ago
@tubruk: Be sure to enable “BuddyPress compatibility” on the plugin settings page 🙂
-
r-a-y posted on the forum topic Feature Request : Topics of Groups I joined in the group Requests & Feedback: 14 years ago
@tubruk – You can define multiple forum ids by separating the IDs by comma.
eg.
I just tested this and it works great!
-
Janis posted on the forum topic Error functions.php ? in the group How-To and Troubleshooting: 14 years, 1 month ago
hi,
remove spaces before and after php tags. had the same issue. -
r-a-y posted on the forum topic blog sturcture in the group Miscellaneous: 14 years, 1 month ago
Hi @tubruk,
From what you typed, I can’t really confirm what it is you want to do.
Sounds more like a theme issue, you might want to check modemlooper’s BP Columns theme for hints on how to structure the page into 3 columns:
https://wordpress.org/extend/themes/bp-columns -
Roger Coathup posted on the forum topic Age and Gender in the group How-To and Troubleshooting: 14 years, 2 months ago
@tubruk if you are having a problem using Adam at Hyperspatial’s functions for age (they look fine to me), then please leave a comment for him on his blog The code you have for gender needs to be used inside a loop that’s iterating over fields, and have the correct profile fields and values set up […]
-
mercime posted on the forum topic events plugin? in the group How-To and Troubleshooting: 14 years, 2 months ago
In the end, it’s all a matter of when you need to implement the calendar component. A matter of choice whether one is willing to wait one month or so as the plugin matures since there are still some bugs, compared to using a plugin that’s tested functional in live installs now. So @tubruk if you […]
-
Roger Coathup posted on the forum topic Activity & Forum in the group Miscellaneous: 14 years, 2 months ago
@tubruk – this is known issue – take a look at this thread (it covers blog comments and forum responses in the activity stream): https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/replying-to-blog-post-in-the-activity-stream-as-post-comments-rather-than-just-activity-stream-replies/
and for a simple solution from @nuprn1…[Read more]
-
Roger Coathup posted on the forum topic Need to check if bp_profile_field_data() has data in the group How-To and Troubleshooting: 14 years, 3 months ago
@tubruk : As I said in my previous post… you’ll have to post your code (use pastebin.com) so that we can see where your problem might be.
-
Roger Coathup posted on the forum topic Need to check if bp_profile_field_data() has data in the group How-To and Troubleshooting: 14 years, 3 months ago
@tubruk Are you using the default theme, or something similar? Are you trying to do this in the profile-loop.php file inside the profile loop? Is it only the About Me field you want to replace? if so, you need to edit your profile loop with something like this (note: the default template files use tables for […]
-
Roger Coathup posted on the forum topic Need to check if bp_profile_field_data() has data in the group How-To and Troubleshooting: 14 years, 3 months ago
@tubruk I’m not really sure what you are trying to do with your code. Whereabouts are you trying to hide fields with no data? In the default theme profile-loop.php, fields without values are already not displayed. As for quick fixes: You’ll need to replace ‘your-field-id’ with a variable that’s got the field id in it. You’ll […]
-
Roger Coathup posted on the forum topic Need to check if bp_profile_field_data() has data in the group How-To and Troubleshooting: 14 years, 3 months ago
@tubruk in your child theme, wherever you want to hide fields that have no data, you can put a simple if statement, something like: if (bp_get_profile_field_data(‘field=your-field-id’) === “”) : // don’t display code else: // display code endif; Which file to edit, all depends where it is you are wanting to display / hide the profile field. […]
-
Roger Coathup posted an update 14 years, 3 months ago
@tubruk
Not recently active