Forum Replies Created
-
In reply to: Following / Followers at testbp.org
yes buddypress followers was just released
In reply to: How to make Facebook Style Activity Stream@djpaul he is asking for post-form attachments similar to FB style
In reply to: BuddyPress Likehow can i add the like to custom components??? if i want to like other things apart from activity updates
In reply to: Javascript Issues!have you tried using an absolute path and see if it works??
@vee_bee please let us know if u manage
In reply to: I have adapted BP-Real Names plugin@grosbouff will you be updating real names to work with latest bp?? i left you a comment on your site but no reply
In reply to: I have adapted BP-Real Names pluginhttp://dev.benoitgreant.be/wordpress-mu/blog/2009/11/buddypress-real-names
thats the plugin homepage, maybe ul find his details there?In reply to: I have adapted BP-Real Names plugin+1 intrested in this..please letme know wen u manage to finish it
In reply to: Music Player Plugin anywhere?u need the bp-gallery plugin on http://buddydev.com
users can upload audio video n photos with that pluginim asking, how to add a post form when you go to a users profile…on buddypress.org you can go to another users profile and theres a post form, wen u write in that post form it automatically picks up the displayed user’s username and ur post will come out as an @mention..
anyone know how to do this?
In reply to: Buddypress Ads Module+1 ..i would very much like something like this, iv been searching high n low n cant seem to find a solution..really need such an ads module..
In reply to: JQuery Issuesput your jquery code in the footer.php file, not the div…
for example:
script type=”text/javascript” src=”wherever the jquery plugin file is” /script
script type=”text/javascript”
jQuery(document).ready(function($){
your code
});
/scriptryt above wp_footer();
i have left out < in the script part above coz these forums wont allow code argh! lolIn reply to: JQuery Issuesadd this to functions.php
function my_init() {
if (!is_admin()) {
wp_deregister_script(‘jquery’);
// load the local copy of jQuery in the footer
// wp_register_script(‘jquery’, ‘/wp-includes/js/jquery/jquery.js’, false, ‘1.3.2’, true);
// or load the Google API copy in the footer
// wp_register_script(‘jquery’, ‘http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js’, false, ‘1.4.2’, true);wp_enqueue_script(‘jquery’);
}
}
add_action(‘init’, ‘my_init’);comment out which one you want to use, then add ur jquery code to the footer.php above wp_footer();
best way to load jquery is in the footer for faster page loadingIn reply to: How do I call images in my child theme?or you could create a div then set a background-image, width and height with css..
called mydiv or whatever, there doesnt have to be anything inside it..#mydiv {
display:block;
height: 100px;
width:100px; //whatever the dimensions of your image is
background-image: url(“../images/homepage_placeholder.jpg”);
}the buddypress themes dont get the image if you dont use absolute paths for
in your template
i dont know of another way to make it work withselector
In reply to: How do I call images in my child theme?you have write out the whole path

thats the only way i got it to work with my theme..alt attribute is for web crawlers and search engines, incase the image doesnt load..
thats how you would call it using the bp-default theme, depends where you placed your theme?im also having trouble with this, anyone???
In reply to: Marketplace plugin for WP3 & Buddypress 1.2try buddypress classifieds plugin, could be a step in the right direction
In reply to: How send/draw Twitter Post into a Live BP Streamcheck out the tweetstream plugin
In reply to: Tweetstream (twitter plugin) Beta testers needed!download it from the plugin homepage or wordpress.org, its very much alive and works great
In reply to: profile viewscheck this plugin it displays the avatars of members who have recently viewed your profile..but it only shows for the logged in user if it is your profile..
In reply to: Profile field setup for groups?there used to be this plugin which could do exactly this but it hasnt been updated to work with bp 1.2..all plugins on that site have stopped being updated..maybe someone could take this on and update it for bp 1.2?
In reply to: CSS hover on activity-items ?div.activity-comments ul li:hover { background: #— !important; } replace — with what you want the color to stay as
best solution, use firebug add-on with firefox, to find ids and classes of elements n ul figure all this out..
In reply to: buddypress.org analyticsthanks
