Resource icon

Widgets Collection for Widget Framework 2.0.2

No permission to download
Change the template code by
Code:
        <!-- end block: sidebar_online_staff -->
           <xen:foreach loop="$OnlineUsers.records" value="$user" i="$i">
             <xen:if is="{$i} <= {$OnlineUsers.limit}">
               <xen:if is="!{$user.is_moderator}">
                 <xen:if is="!{$user.is_admin}">
                   <xen:if is="!{$user.followed}">
                     <xen:if is="{$user.user_id}">
                       <xen:if is="{$widget.options.veravatares}">
                         <li title="{$user.username}" class="Tooltip"><xen:avatar user="$user" size="s" img="true" class="_plainImage" /></li>
                       <xen:else />
                         <a href="{xen:link members, $user}"
                           class="username{xen:if '!{$user.visible}', ' invisible'}{xen:if {$user.followed}, ' followed'}">{$user.username}</a><xen:if is="{$i} < {$OnlineUsers.limit}">,</xen:if>
                       </xen:if>
                     <xen:else />
                       {xen:phrase guest}<xen:if is="{$i} < {$OnlineUsers.limit}">,</xen:if>
                     </xen:if>
                   </xen:if>
                 </xen:if>
               </xen:if>
             </xen:if>
           </xen:foreach>
          <xen:if is="{$OnlineUsers.recordsUnseen}">

Salud2

Thanks mate!
 
hello Im new to xf and installed your widget collection.
Is it default that for example the recent activity widget is displayed with "XenFacil Widget Recent Activity" header ? Theres a way to disable it or is it the branding by default ? (Could not find something in the options, the display header option has no influence on it)
 
hello Im new to xf and installed your widget collection.
Is it default that for example the recent activity widget is displayed with "XenFacil Widget Recent Activity" header ? Theres a way to disable it or is it the branding by default ? (Could not find something in the options, the display header option has no influence on it)
I beg you to edit the widget and review the settings. WidgetFramework put the widget title automatically if you do not enter it.

Salud2
 
Thx for your (fast) reply, I will reinstall bd widget framework and see if it makes any difference. I suspect also addons I recently installed to break allready installed addons, are there any addons known causing this by any chance ?
 
This is an old add-on and I do not know when I can update it. I do not know incompatibility with other addons.

Review the widget settings, please.

Salud2
 
The most likes posts widget (ie threads) knocks my server over - in fact I haven't yet got a page to load with that widget on it. My guess is that the cut-off date in the configuration is not being used as I can't see an ID or date related condition in the where clause (this seems to be the killer query):

-- Thread Id: 228
-- User: USER
-- Host:IP:43072
-- DB: DB
-- Command: Execute
-- Time: 58
-- State: Copying to tmp table
SELECT xf_post.post_id AS post_id, xf_post.thread_id AS thread_id,
xf_post.user_id AS userId, xf_post.username AS userName,
IF(xf_user.username IS NULL, xf_post.username, xf_user.username) AS username,
xf_post.attach_count AS atco, xf_post.likes AS likes,
xf_post.post_date AS fecha, xf_post.message AS mensaje,
xf_thread.title AS title, xf_thread.node_id AS node_id,
xf_thread.discussion_state, xf_thread.last_post_date,
xf_thread.discussion_open, xf_thread.prefix_id,
xf_thread.last_post_id, xf_thread.last_post_user_id,
xf_thread.view_count, xf_thread.reply_count, xf_thread.sticky,
xf_thread.first_post_id, xf_thread.first_post_likes,
xf_thread.discussion_type, xf_thread.last_post_username,
xf_node.title AS node_title, xf_node.node_id AS nodeId,
xf_user.user_id AS user_id,
xf_user.avatar_date, xf_user.gravatar AS gravatar, xf_user.email
FROM xf_post
LEFT JOIN xf_user ON
(xf_user.user_id = xf_post.user_id)
INNER JOIN xf_thread ON
(xf_thread.thread_id = xf_post.thread_id)
INNER JOIN xf_node ON
(xf_node.node_id = xf_thread.node_id)
WHERE message_state = 'visible'

ORDER BY `likes` DESC
 
Last edited:
The most likes posts widget (ie threads) knocks my server over - in fact I haven't yet got a page to load with that widget on it. My guess is that the cut-off date in the configuration is not being used as I can't see an ID or date related condition in the where clause (this seems to be the killer query):

-- Thread Id: 228
-- User: USER
-- Host:IP:43072
-- DB: DB
-- Command: Execute
-- Time: 58
-- State: Copying to tmp table
SELECT xf_post.post_id AS post_id, xf_post.thread_id AS thread_id,
xf_post.user_id AS userId, xf_post.username AS userName,
IF(xf_user.username IS NULL, xf_post.username, xf_user.username) AS username,
xf_post.attach_count AS atco, xf_post.likes AS likes,
xf_post.post_date AS fecha, xf_post.message AS mensaje,
xf_thread.title AS title, xf_thread.node_id AS node_id,
xf_thread.discussion_state, xf_thread.last_post_date,
xf_thread.discussion_open, xf_thread.prefix_id,
xf_thread.last_post_id, xf_thread.last_post_user_id,
xf_thread.view_count, xf_thread.reply_count, xf_thread.sticky,
xf_thread.first_post_id, xf_thread.first_post_likes,
xf_thread.discussion_type, xf_thread.last_post_username,
xf_node.title AS node_title, xf_node.node_id AS nodeId,
xf_user.user_id AS user_id,
xf_user.avatar_date, xf_user.gravatar AS gravatar, xf_user.email
FROM xf_post
LEFT JOIN xf_user ON
(xf_user.user_id = xf_post.user_id)
INNER JOIN xf_thread ON
(xf_thread.thread_id = xf_post.thread_id)
INNER JOIN xf_node ON
(xf_node.node_id = xf_thread.node_id)
WHERE message_state = 'visible'

ORDER BY `likes` DESC


Whew same issue here! Knocked us down and offline tonight when I tried putting the widget on a page. We're very busy, need to limit to past ONE day only. Unfortunately can't set it to one day, seems to default at 15
 
Admin -> Appearance , bottom left is List Widgets, Add widgets. You don't configure anything centrally, you just add widgets. The description next to each field when you do "Add widget" is very detailed, and the options extensive, so you can configure to your heart's content in each individual widget.

(that is obviously talking about Widget Framework itself. The thread you're in is discussing a set of extra widgets for that)
 
Admin -> Appearance , bottom left is List Widgets, Add widgets. You don't configure anything centrally, you just add widgets. The description next to each field when you do "Add widget" is very detailed, and the options extensive, so you can configure to your heart's content in each individual widget.

(that is obviously talking about Widget Framework itself. The thread you're in is discussing a set of extra widgets for that)
thank you, but where can I find widgets to add there?
 
Admin -> Appearance , bottom left is List Widgets, Add widgets. You don't configure anything centrally, you just add widgets. The description next to each field when you do "Add widget" is very detailed, and the options extensive, so you can configure to your heart's content in each individual widget.

(that is obviously talking about Widget Framework itself. The thread you're in is discussing a set of extra widgets for that)
Sorry but I realy don't see them...
 
When you add a widget, widgetFramework show all the active widgets. It is possible that a widget are active but not show (and not works) if the primary add-on is inactive.

Salud2
 
When you add a widget, widgetFramework show all the active widgets. It is possible that a widget are active but not show (and not works) if the primary add-on is inactive.

Salud2
Where can I get primary add-ons for Widgets Collection for Widget Framework?
 
See screenshot.

How can I fix the color, background, etc...

Thanks...
 

Attachments

  • Screen shot 2014-06-20 at 9.10.28 PM.webp
    Screen shot 2014-06-20 at 9.10.28 PM.webp
    17.6 KB · Views: 9
Back
Top Bottom