Welcome to the Abivia Web Development and Hosting Forums. The primary purpose of the forums is to offer support for our products. Please feel free to explore.
Gefegobebeara
The major feature of version 1.0.4 is the ability to read a user's public timeline to supplement search results. Before RC3, the timeline was only consulted if a Twitter API search returned no results. This was primarily done for performance reasons, since there's a delay involved every time the module needs to perform a remote request.
Unfortunately, Twitter frequently gets behind in its search indexing, particularly when overall Twitter activity is very high. RC4 adds options to control when the timeline is retrieved to supplement search results:
Based on a Twitter request from @haroldveldhoen, the next update will allow HTML characters (like ) in the date format.
To get this now, edit the file /modules/mod_abiviamutwitter/tmpl/default.jtml and add result="html" to the echo tag at line 10.
The existing code is
<div jt:if="@@tweet.time" jt:class="tweetat@@_param.pageclass_sfx"><jt:echo value="@@tweet.time"/></div>
The new code is
<div jt:if="@@tweet.time" jt:class="tweetat@@_param.pageclass_sfx"><jt:echo result="html" value="@@tweet.time"/></div>