Hello -
I'm using mod_cbpblatest inside of roktabs to display latest blog only, embedded in an article with Modules Anywhere.
I have two issues:
1. I can't get it work in username mode (no avatar, just show username)
I implemented the fix suggested in thread
www.joomlapolis.com/forum/121-profilebook/137398-solved-module-cbpblatest-wall-entry-incorrect?limit=6&start=6
but once nested inside of roktabs, it doesn't work anymore.
Should I be using the MYSQL query that user marykroeger proposed since the simple swapout of changing the modules code from
formatname to
name doesn't hold?
2. In avatar only mode, the size of thumb is HUGE for a module and I don't want to change it in CB itself, since it's perfect there; also when avatars are showing, I needed to kill the bullets, and did (see 2a)
b) I've gotten rid of the bullets so that's solved by changing
Line 96:
Code:
$return .= '<li>' . ( $showAvatar ? ( $avatar . ' ' ) : '' ) . $entryText . '</li>';
to
Line 96:
Code:
$return .= ( $showAvatar ? ( $avatar . ' ' ) : '' ) . $entryText . '<br />';
b) I read this thread
www.joomlapolis.com/forum/121-profilebook/147191-profile-book-latest-avatar-size-help-request
and tried all sorts of stuff to control the avatar size with no results. Can I hardwire a size into the php output string somehow?
Line 96:
Code:
$return .= ( $showAvatar ? ( $avatar . ' ' ) : '' ) . $entryText . '<br />';
Sorry for the noob questions -- old school programmer going up the web languages learning curve
.
Many thanks,
~Avasa