Djole
Forum Replies Created
-
Forum: Plugins
In reply to: [U More Recent Posts] Shortcode examplesThanks pal, I appreciate this
Forum: Plugins
In reply to: [Infinite-Scroll] Working with Buddypress@jrgiblette, Hi pal ,would you copy us here your css selectors?, Im really trying make this thing work. I think I’m making mistake with some of the selectors. Thanks.
Forum: Plugins
In reply to: [BuddyPress Activity Plus] Example of CSS to change icons?You’re welcome.
Glad to help.
Forum: Plugins
In reply to: [BuddyPress Activity Plus] Example of CSS to change icons?Hi,
the easiest way is to replace this icons with one which you want.You even don’t need css at all.Find them and give them the same names and format(camera.png;film.png;link.png) as these in plugin, and then go into plugin folder/img/system/ and make a copy and replace.
in class_bpfb_binder.php find this:
$content = @$_POST[‘content’] . “\n” . $bpfb_code;
its a line 272, and change it to:
$content = $bpfb_code. “\n” . @$_POST[‘content’];
so it will call bpfb first and then content. With css described above, image will go on top left corner,text to right and under.
I hope its helpful.
in class_bpfb_binder.php find this:
$content = @$_POST[‘content’] . “\n” . $bpfb_code;
its a line 272, and change it to:
$content = $bpfb_code. “\n” . @$_POST[‘content’];
so it will call bpfb first and then content. With css described above, image will go on top left corner,text to right and under.
I hope its helpful.
Hi everyone,
is there a way to photos be on top and under photos to show activity content(text)…now is up side down…Its probably not a css?
thanks
Anybody please,this is where I came and I’m not sure why image won’t show up:
`<?php if ( bp_activity_has_content() ) : ?>
<div class=”activity-inner”>
<?php $info = pathinfo($img);?>
<?php $thumbnail = file_exists(bpfb_get_image_dir($activity_blog_id) . $info[‘filename’] . ‘-bpfbt.’ . strtolower($info[‘extension’])) ?
bpfb_get_image_url($activity_blog_id) . $info[‘filename’] . ‘-bpfbt.’ . strtolower($info[‘extension’])
:
bpfb_get_image_url($activity_blog_id) . $img
;
?>
<a>” ” rel=”<?php echo $rel;?>”>
<img src=”<?php echo $thumbnail;?>” />
</a><?php bp_activity_content_body(); ?>
</div>
<?php endif; ?>
<?php do_action( ‘bp_activity_entry_content’ ); ?>`
Hi,
Im also looking for this, if buddypress activity plus show image first,on top of activity content, and under text, it could be used as thumb.
any solution…? thanks