Forum Replies Created
-
any suggestions ?
any help ?
thanks
any solutions please ?
thanks @mercime
actually I was using this .
“
and it was creating the problem , now after I removed this line , its all ok ….but the other problem I mentioned about unable to change the default-header.jpg image from the default.css #header , it still persist …
can you please show me some light ?
thank for the suggestion but I actually want a solution for these problem, later will be thinking about supporting browsers …
is there anybody to actually provide some help in these issue ?
I’m testing this in localhost ..@hnla
Kindly have a look into this topic, pleaseany help would be fine , please
can anyone help please ?
please have a look
thank you@LPH2005 Thanks a lot for your quick response ….
I went through the yellowboxstudio.com’s write-up on techboise.com .. Its nice….
But a step-by-step guide to implement jquery parallax on buddypress-default theme like techboise would be great
note: as I couldn’t understand how a single jpg file would do such thing (as only one jpg image is address in the css) when yellowboxstudio’s wrtie-up say the concept of 4 layers
for me its loading great , don’t what the issue , but this site has one of the beautiful theme on the platform of buddypress default theme …
Firstly I would like to thank you about this great plugin
Secondly because you are so supportiveThanks a ton !
Just a thought

Can the “Add Friend” and “Cancel Friend” option in the Bubble be ajaxed ? so that the page doesn’t reload ! It would be great !!!Thanks
Thanks A lot

One more thing ! I’m getting mention and PM option link when hovering over my own avatar ….will this be solved in the next update ? then I will rather wait for that

thanksany clue please ?
Invite anyone is an awesome plugin, only invitation plugin with multiple email sending feature….
with it , some thing free would be much nicer
thanksOne question ! Point no #3 Human Verification , you mention about WPMU Dev premium plugin ? Can you please tell the name of that plugin ?
yes now I understand a bit
A lot of thanks to you @hnla
ThanksYes atlast … Thanks a lot @hnla and also @rogercoathup

`
function cancel_header_padding_for_no_adminbar() {if(defined( ‘BP_DISABLE_ADMIN_BAR’ ) || $bp->doing_admin_bar == false) ?>
body {padding-top:0;}
<?php
}
if (!is_user_logged_in())
add_action( ‘wp_head’, ‘cancel_header_padding_for_no_adminbar’ );
`but One stupid question :
what is the difference between `!is_user_logged_in()` and `is_user_logged_in()` ?I tried this but it didn’t worked , same thing is happening , Sorry

`
function cancel_header_padding_for_no_adminbar() {if(defined( ‘BP_DISABLE_ADMIN_BAR’ ) || $bp->doing_admin_bar == false && !is_user_logged_in()) ?>
body {padding-top:0;}
<?php
}
add_action( ‘wp_head’, ‘cancel_header_padding_for_no_adminbar’ );
`Thank I’ll try and get back to you
@MrMaz
I find an issue here
On users profile page BP links tab is displayed at the begining , I mean even before Activity tab …
Like it should be Activity, Profile, Blogs, Messages, Friends, Groups …. and then Links , but in my site its displayed
Links, Activity, Profile … and so on …. What should be done to display link as it should be ?will some thing like this work ?
`define(“BP_LINK_POSITION”,50);`@hnla , @rogercoathup : One thing I donot understand (surrendering that I am a novice) , the snippet suggest that `if user is logged in then the condition is to padd 0px` , but what is need according. to the scenario is `if a user id logged out the padd 0 px , else padd 25 px`
isn’t it ?`
function cancel_header_padding_for_no_adminbar() {
if (is_user_logged_in())
body {padding-top:25;}else(defined( ‘BP_DISABLE_ADMIN_BAR’ ) || $bp->doing_admin_bar = false) ?>
body {padding-top:0;}
<?php
}
add_action( ‘wp_head’, ‘cancel_header_padding_for_no_adminbar’ );
`could it be like this ? I have not tested as I think it has some syntax error