Your questions are targeting too many topics for a single post. There’s no way anyone can reply and get a helpful discussion going without leading to complete confusion on everything. Please post your questions again, this time splitting them into individual topics.
Thank you for providing us with the support questions!
it really helps us solve your issue.
Since you say that the links redirect to the homepage, it means the files are not there/not in the right place.
Do you have a child theme, or buddypress template pack installed? Or do you have default theme?
Got a back and forth convo of reviewers that’s quit comical. They did approve. I think BuddyPress should be an exception but at the same time must use all BuddyPress functions / components and of course pass WordPress theme scan.
The child theme they are questioning is just a CSS file one page template and a funtions file. That should pass 100% but they scan it and it fails 99% because they are scanning against WordPress not BuddyPress
How big is BP? Should it have it’s on theme section in the repo or will the requirement be that it will work as WP theme when BP is switched off? Do we as a community need our own site for free BP child themes? These questions and many more when we come back from this commercial break. 
Reviewers requirements for bp-default:
`REQUIRED: No content width has been defined. Example:
if ( ! isset( $content_width ) ) $content_width = 900;
REQUIRED: Could not find post_class. See: post_class <div id="post-” >
REQUIRED: Could not find comment_form. See: comment_form
REQUIRED: Could not find add_theme_support( ‘automatic-feed-links’ ). See: add_theme_support
REQUIRED: options.php. Themes should use add_theme_page() for adding admin pages.
Line 5: add_action( ‘admin_menu’, array( ‘Bp_Dtheme_Options_Page’, ‘add_options_page’ ) );Line 8: function add_options_page() {
REQUIRED: get_the_author_email found in the file search.php. Deprecated since version 2.8. Use get_the_author_meta(’email’) instead.
Line 28:
REQUIRED: get_the_attachment_link found in the file attachment.php. Deprecated since version 2.5. Use wp_get_attachment_link() instead.
Line 15: ID, true, array(450, 800)); This also pop
REQUIRED: get_links_list found in the file links.php. Deprecated since version 2.1. Use wp_list_bookmarks() instead.
Line 19:
REQUIRED: delete_usermeta found in the file ajax.php. Deprecated since version 3.0. Use delete_user_meta() instead.
Line 95: delete_usermeta( $bp->loggedin_user->id, ‘bp_new_mention_count’ );
REQUIRED: .gallery-caption css class is needed in your theme css.`
So this is maybe weird, but in WP plugins it is no longer giving me the message to upgrade to the latest BP. Umm… I have 1.2.6 so do I just backup, deactive BP plugins and add the new BP? Do I need to upgrade to 1.2.7 and then 1.2.8 or is it OK to go directly to the latest? Did I miss upgrade instructions somewhere? Sorry if these are dumb questions… If I could just click upgrade it would be simple, but manually doing it I am not sure of the steps.
1st. This is a Buddypress support forum only, not questions about wordpress plugins.
2. There are many plugins out there that would fit your taste, you must go searching for the right one, not us.
3. Don’t bump posts more than once every 24 hours.
So why after Boone asked you not to @mention everyone under the sun do you go and do it again? and I have remarked on this on another thread, do stop it and for a little light bedtime reading please have a look at this RFC on forum, list, board nettiquette for guidance
http://www.catb.org/~esr/faqs/smart-questions.html
I am new to buddypress. I am trying to develop a social network site where people post the pictures (photo sharing) and get instant comment. I have several questions, but will start with few:
1. How do I search for related themes where user upload pictures and also view recently uploaded pictures and comments. I am looking for simple theme that works well with images.
2. I am trying to understand how are images stored in the database that are uploaded by users. I looked at buddypress DB schema and don’t see any blob columns.
At this point I have wordpress installed and I will be installing buddypress today.
Not a bad idea, not sure though that it would be that easy to add another support forum. I can see arguments against as well as for, it would need discussing a little further.
Try BP-Media:
https://buddypress.org/community/groups/bp-album/
There’s also a paid plugin for this as well:
http://buddydev.com/plugins/bp-gallery/
—
As for members list, you’ll have to either use a plugin or code something that restricts access to that as by default, everything is open to the public.
And regarding a forum for signed-in members, currently BuddyPress uses a concept called “Groups” (much similar to Facebook’s fan pages). Forums can be enabled on a per-group basis, and groups can be public, private or hidden.
—
Hope that answers your questions for the most part!
I’ve already tested BP Group Hierarchy, but got these questions…
1. would like to hear from someone who just used that in a production environment, any feedbacks?
2. what other plugins can you recommend aside from BP Group Hierarchy that is used widely?
3. are there any HYBRID buddypress outhere? i mean any developers who are selling CUSTOM buddypress setups? can you list it’s features?
TIA
i <img src="smileys/heart.gif" width="" height="" alt="<3" title=" BP !
Thanks Modemlooper (smiling as I consider your handle, btw)
I’ll have a look at the pieces of code you’ve referenced and come back with my questions and/or results.
I was looking EVERYWHERE for the same thing and nobody would answer my questions. I finally found out how to accomplish adding a tab to the nav bar.
Paste this code into your bp-custom.php file located in your “plugin” directory:
function my_test_setup_nav() {
global $bp;
bp_core_new_nav_item( array( ‘name’ => __( ‘test’ ), ‘slug’ => ‘test’, ‘parent_url’ => $bp->loggedin_user->domain . $bp->slug . ‘/’, ‘parent_slug’ => $bp->slug, ‘screen_function’ => ‘my_profile_page_function_to_show_screen’, ‘position’ => 40 ) );
bp_core_new_subnav_item( array( ‘name’ => __( ‘Home’ ), ‘slug’ => ‘test_sub’, ‘parent_url’ => $bp->loggedin_user->domain . $bp->slug . ‘/’, ‘parent_slug’ => $bp->slug, ‘parent_slug’ => $bp->slug, ‘screen_function’ => ‘my_profile_page_function_to_show_screen’, ‘position’ => 20, ‘item_css_id’ => ‘test_activity’ ) );
function my_profile_page_function_to_show_screen() {
//add title and content here – last is to call the members plugin.php template
add_action( ‘bp_template_title’, ‘my_profile_page_function_to_show_screen_title’ );
add_action( ‘bp_template_content’, ‘my_profile_page_function_to_show_screen_content’ );
bp_core_load_template( apply_filters( ‘bp_core_template_plugin’, ‘members/single/plugins’ ) );
}
function my_profile_page_function_to_show_screen_title() {
echo ‘something’;
}
function my_profile_page_function_to_show_screen_content() {
echo ‘weee content’;
}
}
add_action( ‘bp_setup_nav’, ‘my_test_setup_nav’ );
This will add a button into the nav bar named “test” which redirects back to the profile page. It would only take a bit more tweaking to get it to display the page you want. Hope this helps.
hi,
due to 22 corrupted Backups i will need to restore my DB manually (table by table) – my Provider tells me that the reason for the corrupted backups is that im using InnoDB-table technology.
so here my two questions:
1. is BP or WP using the InnoDB storage-engine technology by standard or is it any plugin (like performance-boosters which bring that along) ?
2. which table’s are native coming along with BP and WP, so i can restore at least users and posts?
thanks and best regards
Romanski
@ssmith2
Please start a new thread and repost your support question rather than hijacking someone elses thread. Supplying answers to 2 unrelated questions can only lead to confusion. 
Hi all,
I’m not looking for a straight answer or code so I can just copy and paste it (although I accept that too
. I have been looking at filtering content by tags etc, but can’t really find what I’m looking for. The thing is I have been asked for the following:
I need to build website with Buddypress, where users can do the typical (add friends, groups, etc…). The main challenge is that the site’s content will be sorted using different Tags (maximum 100 or so and they will be added only by the Admin). Logged in users will be able then to SAVE the Tags they like by clicking on them (sort of subscribing to a tag). That way, when the user comes back to the site and logs in, all the content throughout the website will be specific according to the tags that user has “subscribed” to.
My main questions are:
– Is this possible at all? If so, could you please point me to the right direction and post some links to the Codex or examples you might know? My main concern is how do I get around that “tag subscription”/saving tags sort of thing.
– If not… is there another approach that would work better for this kind of thing?
Thanks a lot!
@Chaotic_Cannon, I believe @hnla meant that you could continue the thread here instead of the wp forum as @mercime frequents this forum as well as the wp forum, and this is a more suitable place to talk about your questions related to buddypress. It would be easier for mercime and all involved in this thread to follow the conversation.
No reason to get defensive.
When you say you like the other forum plugins better, is that because buddypress forums are tied to groups? If so, you may want to check out this plugin which makes the forums standalone ala vbulletin (“normal forums”) etc:
http://buddydev.com/buddypress/introducing-global-sitewide-forums-plugin-for-buddypress/ For a demo, check out the sites forum.
Other then that it is possible to integrate the max theme with bp template pack. You could have your friend check that out.
Buddypress is more advanced than e.g. wp-symposium, but it is not really an out-of-the-box solution. Most likely you need help from a coder friend or you´d need to hire some to help with your customizations.
I asked the question in another forum, Mercime suggested I come here and post.
I did that, and then Mercime was the one that double posted a reference link here and in the WP forum so people can see that this is an ongoing topic covering both WP and BP compatibilities and questions. I simply let people know here that there was more info posted in the other forum about this question and then I had a question specifically for Paul who makes a BP plugin(s) and obviously uses these forums more often than the WP forums.
So dont single me out for doing something when there is actually 1 person that has been willing to help me out on 1 site forums and another 1 here, and me trying to make sure everyone is kept in the loop. I am sure there are people that frequent here and not WP forums, and vice versa.
I am a director for an established site that has over 50,000 hits a day and I can safely say it is bad board etiquette to single out people on forums when they are simply asking for help. It shows that a community is more willing to bash people than help them and will ensure that people will stop asking questions for help.
@Chaotic_Cannon You are forcing mercime to follow and respond to two threads on the same topic while trying to get you to focus on one; note the links posted! Please stop this
it’s bad board nettiquette, choose one thread (likely this one given the direction of the questions) and stick to it.
This seems like the place to go with questions about the forum, so here goes:
I can’t get to the forum directory. If a user tries to go to http://www.intennis.com/forums they are redirected to the homepage. If I go to a group page and then click on forum from within the group I can see my test post (http://www.intennis.com/groups/forum-test/forum/ as an example). But the main /forum directory doesn’t work. Does anyone have any idea of what may be broken?
I’m very new to all this and I’m sure this questions has been asked before: how do I install buddypress? do I need to install wordpress first? can the two be installed separately? I cant find anything in support and although I have read the ‘read me’ document in the download, I cant figure it out…
My bad
Because I added this code to functions.php and wp-config.php
and didn’t work…
But I changed some stuff and now its working
And now its working
Thank’s guys and sorry for the dummy questions
I already changed alot of stuff on buddypress core to make my site works how it supposed to work
But thanks for everything
Hi there,
I have done research to determine how to use WP multisite with multiple domains (actually only 2).
I need help in determining:
1) how to set this up,
2) if WP multisite is needed the answer to my goal,
3) what plugins to use to do the domain mapping.
I am setting up a wordpress site for my client. Bilingual content, but no automatic translation. I want to use 2 different domain names, one for each language, each one containing keywords each site (or language section) has to rank well for in the search engines. Let’s say to simplify that these are 2 sites.
I want to make administration of content easy, so wp theme and plugins for both sites can be in a single wp install – hence my interest in WP MU.
SEO is the most important element to consider with the overall setup. Ease of use/administration is second.
I guess I need the search engines to consider each site as having it’s own separate TLD (top level domain), even though they might actually be installed using WP MU in a subdirectory or subdomain on the initial WP installation.
Questions:
A) Would this setup achieve what I want (SEO)?
Do I need a domain mapping plugin, or the WP multi network plugin, or …?
thanks
~F
PS: C) do I also need a dedicated IP?
Hi-
I’m newbie in Buddypress I have two questions:
1) Is it possible to change members profile link to something like this:
example.com/admin (rather than example.com/members/admin)
PS: I disabled blog component.
2) Is it possible to get component link more easier for example I forced to use this line to get settings page:
global $bp;
$bp->bp_nav; //it seems 100 is a parent id or page id
Thanks!
I had the same problem with jcarousel and buddypress, and paid a few dollars over at wpquestions to get the fix, which involved editing a line of code in a buddypress js file which handles easing. The full answer is here if anyone else gets stuck: http://wpquestions.com/question/show/id/1615
hth