Resource icon

[bd] Widget Framework 2.6.6

No permission to download
[FEATURE SUGGESTION] On responsive mode the widgets are being shown at the end of the forum_list template, it would be awesome if the widgets get displayed after the board name (at the start of the forum_list instead of the end).
Can you give more detail? Perhaps with screenshots.
 
This is a tricky one... or maybe not...

I have 2 custom user fields that I've created... and each is in number format.

Can I create a custom widget using some simple php to add all those values together for each user and display it? And if so what do I need to add when I create the widget?

For example to create a site wide total from all members... or something.
 
Hi,

I grouped different widgets, and now they are tabbed in different groups.

See 9 widgets in 2 groups:
Untitled.webp

Now, is there any way to add sliding to tabs, so that it goes to next tab (in each group) automatically each 3 seconds (if mouse is not hovering on content of that tab)

By default users should click on tabs in order to see other tabs content. Now I want to add sliding.

Any opinion will be appreciated.
 
[FEATURE SUGGESTION] On responsive mode the widgets are being shown at the end of the forum_list template, it would be awesome if the widgets get displayed after the board name (at the start of the forum_list instead of the end).
If you use sidebar, that's the default behavior of XenForo.
 
Is there any way we could get template variables for use inside a widget? In combination with a PHP callback, even?

EDIT: Create template, use xen callback tag, assign widget to use newly made template, ???, profit.
 
@xfrocks Can you display custom user fields in a widget? Say for example you have a custom user field where people put in how many points they have made.

Then I want to take all of those values for all users and add them up... and displays the total points for the entire community in a widget. Can I do that easily or is that an addon?
 
Can I do that easily or is that an addon

The widget framework is for displaying data, not calculating etc.

You could create a template (which calls asdociated models/callbacks )which holds all the values that you want to display and then display anywhere you want to. If a hook doesnt exist, you can create that.

Another option is for you to create/get someone to create a widget renderer of all the data you want displayed and link it via the framework.
 
The widget framework is for displaying data, not calculating etc.

You could create a template (which calls asdociated models/callbacks )which holds all the values that you want to display and then display anywhere you want to. If a hook doesnt exist, you can create that.

Another option is for you to create/get someone to create a widget renderer of all the data you want displayed and link it via the framework.

Ahh okay. Thanks. Maybe I'll look into hiring someone to do it in the future.
 
Adding new Media and new Albums would be really nice too. (Something like new posts: thumbnail + title + owner. if possible: + number of likes, comments, views)
Thanks. Great tool to reach different goals.
 
Any idea on how to add resources prefixes to XFRM widget will be appreciated.
Thanks @Gemma for your answer and finding the way.

Here is the way @Gemma found to add prefix to XFRM widget:

In the wf_widget_xfrm_resources template, find:
Code:
<a href="{xen:link resources, $resource}">{$resource.title}</a>
Replace it with:
Code:
<a href="{xen:link resources, $resource}">{xen:helper resourcePrefix, $resource}{$resource.title}</a>
Untitled.webp
 
When you use the link to browse the site showing you where all the widget hooks are... how do you make it stop doing that?
 
Back
Top Bottom