Forum Replies Created
-
cool, thanks! 2 more questions
1) how do you get to show a list of all the tracks that have been posted?? not the activity but just the tracks..can this be done?
2) any idea if i wanted it to pick up when i wrote a ‘#’ in the post form?? like i wrote #artist and it turns the #artist into a link for that artist..? like how the @ mention works…
the summary on this? how do we get it to work?
@holdenandmason1 could you further elaborate this with a proper code how i could search the entire site even groups, profiles, members etc..??
thanks
great thanks! how do you get to show a list of all the tracks that have been posted?? not the activity but just the tracks..
could you explain this a bit more..could it be extended to include attachments to the update?
thanks
whats the status on this? would also like to find a way for an ignore user or report this/mark as spam in my activity stream
for the whats new text u can try,
<?php if (is_user_logged_in() ) { //only logged in user can view this ?>
//place content here
<?php } ?>
u can use that to show something only to logged in users and:
<?php if (!is_user_logged_in() ) { //only non-logged in user can view this ?>
//place content here
<?php } ?>
to show something only to users who are not logged in
if u are using a text widget try use the widget logic plugin also
why not use the bp-notifications widget plugin and create a widget area where you would like in your template..
check your code for the login form because iv tried this and it goes once a user is logged in..
try this:
<?php if (!is_user_logged_in() ) { //only non-logged in user can view this ?>
<form name=”login-form” id=”login-form” class=”standard-form” action=”<?php echo site_url( ‘wp-login.php’, ‘login’ ) ?>” method=”post”>
<div style=”font-weight:bold; margin-left: 20px; margin-bottom: 10px;”><label>
<input type=”text” name=”log” id=”userbar_user_login” class=”input” value=”<?php echo attribute_escape(stripslashes($user_login)); ?>” /></label></div>
<label><?php _e( ‘Password’, ‘buddypress’ ) ?>
<input type=”password” name=”pwd” id=”userbar_user_pass” class=”input” value=”” /></label>
<p class=”forgetmenot”><label ><input name=”rememberme” type=”checkbox” id=”userbar_rememberme” value=”forever” /> <?php _e( ‘Remember Me’, ‘buddypress’ ) ?></label></p>
<input type=”submit” title=”Login” name=”wp-submit” id=”userbar_wp-submit” value=”<?php _e(‘Login’); ?>” tabindex=”100″ />
<input type=”hidden” name=”redirect_to” value=”<?php bp_root_domain() ?>” />
<input type=”hidden” name=”testcookie” value=”1″ />
</form>
<?php } ?>
thanks, what does this plugin do exactly? where do users go to send gifts??
thats great.. would you know how to get when a user types in ‘@’ then a letter, in the whats new textarea??
for example if i type:
which is hinting that i want to mention someone, so that i can display a message like “Mentioning @N…”
and then once i put a space or type in a comma after @N like “@N,” the message then disappears
similar to what twitter does on its “whats happening?” textarea
can i download this somewhere??
no problem
when will u release this plugin??? could i test it?? really looking for something like this on my site
hi try check on the cubepoints plugin and enhance it to work with bp, would very much like to have it on my site, user points..
or check this forum topic:
https://buddypress.org/forums/topic/cubepoints-and-buddypress-intregration?replies=10#post-44910
i think it should help
this happened with me too
very useful

one question tho, i dont want my users going to the dashboard to see points..
how do i get to display a buddypress displayed users points, it currently only displays a logged in users points no matter wat page ur on when using cp_displaypoints..
anyone know how to do this???
yes it is because of the overflow:hidden, sorry i overlooked this as i am using a jquery plugin to autogrow the textarea as u type into it.. remove the overflow and style the:
form#whats-new-form #whats-new-textarea {
-moz-border-radius:3px 3px 3px 3px;
background:none repeat scroll 0 0 #FFFFFF;
border:1px inset #CCCCCC;
margin-bottom:10px;
padding:8px;
}
form#whats-new-form textarea {
border:medium none;
color:#555555;
font-family:inherit;
font-size:14px;
height:60px;
margin:0;
padding:0;
width:100%;
}
this is what testbp.org has
or simply get firebug addon and use with firefox
nice work! hope this will be available to us buddypress users? when will it be ready? looking good!
would very much like to have something like that on my site, similar to facebook profile badge
no problem, glad to help out
i had the same problem..found answers by searching on google..
try add this to ur default.css file :
textarea {
overflow: hidden;
display:block;
}
worked for me
leme know if it works
@mrjarbenne i dont think you are getting the concept of what i am trying to achieve, with friends you have to make a request and if you are a friend of a user then that user is also your friend..
with following you can follow a user but that doesnt mean that the user will follow you also..thats why a user has followers and people the user is following..and i dont know how to write code to change the friends system to make it like a follow system… thanks for the response though
@r-a-y thanks will check up on that