Forum Replies Created
-
I figured out my problem. You CAN NOT install WP 3.0 multi site in a sub directory. I put on the root and everything works now.
@DJPaul and @mercime Here is my set up:
I installed wp 3.0.1 in a subdirectory (mysite.com/social/) – Works, no issues
I then installed latest buddypress (v 1.2.5.2) -activated it – White screen of death– I put debug mode on and I get the errors anca posted above.
I then researched some more and activated network mode for multiple blogs (even though i don’t need multiple blogs) –activated buddy press site wide and it works— partly. Now profile pages are not showing up. I am at a loss here. I don’t understand why buddypress breaks when you install on sub directories and sub domains. It only works for me when I install it on a clean domain. I didn’t have this problem w 2.92 and older buddypress, however, i need to move my sites to 3.0 and this is giving me a lot of grief. If anyone could help out, that would be great.I get this too. I really would like to know how to resolve this???
Yea, I like that check box, but wish it also went to internal message box, as apposed to only their external email.
It’s all in the css files.
Have you tried using firebug with firefox? It is a great tool that shows you where the css is located and allows you to change content live in the browser.
Caution:
You need to be careful, changing the css on one page may effect others.
I had to create custom css id’s for certain items so that it would not effect others
Hope this helps
I agree, messaging is completely worthless without autocomplete.
I have friends enabled. made friends with users and still no autocomplete.
When I inspect in firebug, it says that autocomplete is off. See below code.
<input id="send-to-input" class="send-to-input ac_input" type="text" name="send-to-input" autocomplete="off"/>
I have searched the forums and found people have similar problems(though they were several months old), however, no solution has been posted that I could find.
Is this a 1.1.1 bug?
Hopefully a moderator sees this and helps us out.
I too am having this problem. Is this a javascript issue? Any help on this matter would be fantastic.
I am not sure if this is the proper way to do this, but to fix this problem, I changed the code in the bp-core-adminbar.php on the following lines from:
echo '<li id="bp-adminbar-notifications-menu"><a href="' . $bp->loggedin_user->domain . '/">';
to
echo '<li id="bp-adminbar-notifications-menu"><a href="' . $bp->loggedin_user->domain . 'messages/">';
Hope this works for others who might have had this problem
Cheers
Chew
This post was addressed and answered in the following thread.
cheers
Thanks David, this code works perfectly
Thanks for the advice…I guess. I feel like I was being scolded for asking a question… anyway.
First off, I think the work Andy and the gang did to make Buddy Press is brilliant. Which is why I picked it over other social site options.
Second, I know it is still in the beginning stage and totally look forward to all the themes and plugins to come. Another reason I picked Buddy Press.
Third, thanks for the advice of where the calls were for the user and options bar. I have managed to remove the me bar from profile pages.
Again thanks,
–Chew
I too started a post about this too. https://buddypress.org/forums/topic/bubble-up-notice-to-all-users-message#post-26350
Maybe this will be a feature in the future update.
I would love to figure out how to remove the ‘me’ bar when looking at other peoples profiles. I can’t seem to figure this out! Any ideas? Maybe in the roadmap?
Cheers
thanks Jeff, will do
What I would like to happen is remove the me column when i am looking at other peoples profiles… it should only be there when i am on my profile, not others. It does the same thing when looking at groups. Is there anyway to remove this???
Is there anyway to bubble up the notice to all users message to the home page of my site. I would like it that when a users logs in, that message is at the top of my site, along with when they visit there inbox.
Any help would be greatly appreciated.
i dont think this works anymore… anyone figure out a way to do this in newer versions?
Hey Guys, I still can’t get this to work? I am on bp ver 1.1
Maybe things got changed in the update that would effect the way this works? I really need to have custom pages for this to work for my site. Again, to recap, here is what I have done:
put the below code into : (wordpress mu and buddy press are installed into subfolder)
mysite/subfolder/wp-content/themes/bp-sn-parent/functions.php and created a page in the same directory called dashboard.php
CODE:
// creates custom page
define('BP_DASHBOARD_SLUG', 'dashboard');
function bp_show_dashboard_page() {
global $bp, $current_blog;
if ( $bp->current_component == BP_DASHBOARD_SLUG && $bp->current_action == '' ){
// The first variable here must match the name of your template file below
bp_core_load_template( 'dashboard', true );
} }
add_action( 'wp', 'bp_show_dashboard_page', 2 );
//
end custom page
URGENT: Need to figure this out!!!!
Hey John,
I’m trying to access either! neither seems to work!
we put this code in /wp-content/themes/bp-sn-parent/functions.php and created a page in the same directory called dashboard.php
is there a reason why we cant navigate to the dashboard.php?
// creates custom page
define('BP_DASHBOARD_SLUG', 'dashboard');
function bp_show_dashboard_page() {
global $bp, $current_blog;
if ( $bp->current_component == BP_DASHBOARD_SLUG && $bp->current_action == '' ){
// The first variable here must match the name of your template file below
bp_core_load_template( 'dashboard', true );
} }
add_action( 'wp', 'bp_show_dashboard_page', 2 );
//
end custom page
any help is appreciated!
Hey, I have been having the same problem! I found a partial solution to this in a previous post, but it only makes certain specified ‘slugs’ private, and not the entire site. Is there anyway we can modify this code to make it privatize the whole site?
the code is located in bp-custom.php in the mu-plugins folder.
//this makes directories private
function oci_restrict_access(){
global $bp, $bp_unfiltered_uri;
if (!is_user_logged_in() &&
(BP_MEMBERS_SLUG == $bp_unfiltered_uri[0] ||
BP_FORUMS_SLUG == $bp->current_component ||
BP_GROUPS_SLUG == $bp->current_component ||
BP_HOME_BLOG_SLUG == $bp->current_component)){
bp_core_redirect( get_option('home') . "/wp-login.php" );
}
}
add_action( 'wp', 'oci_restrict_access', 3 );any help would be great!