Resource icon

[bd] Widget Framework 2.6.6

No permission to download
Anyone here who has installed the latest version and confirm if everything is alright ?
Latest version is running in XenForo 1.2 here https://xfrocks.com (with default widgets only for now).

Can anyone help me with this. I am trying to get a slider at my homepage. I don't want to code an entire widget for this so deciding to use advanced php widget and use get the variables from some other widget. I need a php forloop for recent threads with this markup

HTML:
<ul class="slider class">
                    <li>
                        <a href="thread url" target="_blank"><img src="attachment URL" alt="attachment1"/></a>
                        <div class="slider description">
                            <h3>Thread Title</h3>
<p>Thread Excerpt</p>
                        </div>
                    </li>
  </ul>
Sorry I don't understand your intention.
 
After the last update the HTML advanced widget is not working anymore.
gKZpviY.png


I am ussing xenforo 1.2.0
It is working fine for me. Post your markup here for troubleshooting
 
Sorry I don't understand your intention.


I want something like this
PHP:
    <xen:if hascontent="true">
        <ul class="class="slider">
            <xen:contentcheck>
                <xen:if is="{$widget.options.type} == 'new'">
                    <xen:foreach loop="$threads" value="$thread">
                            <li class="thread-{$thread.thread_id} thread-node-{$thread.node_id}">
                                <xen:avatar user="$thread" size="s" img="true" />
                                    <xen:if is="{$widget.options.display.show_prefix}">{xen:helper threadprefix, $thread}</xen:if>
                                      <a {xen:if '{$thread.title} != {xen:helper snippet, $thread.title, @wf_threads_titleMaxLength}', 'title="{$thread.title}" class="Tooltip"'}
                                      href="{xen:if '{$_threadLink}', {xen:raw $_threadLink}, {xen:link threads, $thread}}">{xen:helper snippet, $thread.title, @wf_threads_titleMaxLength}</a>
                                    <div class="userTitle">{xen:raw $_secondRow}</div>
                          </li>
                </xen:foreach>
                </xen:if>
            </xen:contentcheck>
        </ul>
    </xen:if>

To create a slider for recent threads from one category.

slider.webp
 
I want something like this
PHP:
    <xen:if hascontent="true">
        <ul class="class="slider">
            <xen:contentcheck>
                <xen:if is="{$widget.options.type} == 'new'">
                    <xen:foreach loop="$threads" value="$thread">
                            <li class="thread-{$thread.thread_id} thread-node-{$thread.node_id}">
                                <xen:avatar user="$thread" size="s" img="true" />
                                    <xen:if is="{$widget.options.display.show_prefix}">{xen:helper threadprefix, $thread}</xen:if>
                                      <a {xen:if '{$thread.title} != {xen:helper snippet, $thread.title, @wf_threads_titleMaxLength}', 'title="{$thread.title}" class="Tooltip"'}
                                      href="{xen:if '{$_threadLink}', {xen:raw $_threadLink}, {xen:link threads, $thread}}">{xen:helper snippet, $thread.title, @wf_threads_titleMaxLength}</a>
                                    <div class="userTitle">{xen:raw $_secondRow}</div>
                          </li>
                </xen:foreach>
                </xen:if>
            </xen:contentcheck>
        </ul>
    </xen:if>

To create a slider for recent threads from one category.

View attachment 53426
Your best bet is edit the template wf_widget_threads I think. Because you will need the thread data etc.
 
Sigh, i'm begging to one add-on developer to make the XML file for make it work with this framework...
I am not supporting poorly coded add-ons.

I need help from the Universe, how to make one add-on sidebar work with the framework when the developer doesn't care to do it?! :unsure:
 
Last edited:
Thanks for the update :) Can I see an example of widget page ? I don't quiet understand what this does.
Thank you
I do not think anyone has published any yet, as it is just released. If you understand what it is does in your ordinary right column, just imagine that in widget pages our ordinary forum content is also replaced with widgets, ie. you decide all you content in all columns by using widgets.
 
You can add widget pages in your node tree.
I'm lost. When i see some examples i may find myself on this. :)

For me the super, hiper, major, colossal feature this Framework needs, is to stop making custom add-ons sidebars disappear. I find myself in a mad situation when a add-on developer refuses to add support. And there is no easy info from this author if we must do it manually. :(
 
I want something like this
PHP:
    <xen:if hascontent="true">
        <ul class="class="slider">
            <xen:contentcheck>
                <xen:if is="{$widget.options.type} == 'new'">
                    <xen:foreach loop="$threads" value="$thread">
                            <li class="thread-{$thread.thread_id} thread-node-{$thread.node_id}">
                                <xen:avatar user="$thread" size="s" img="true" />
                                    <xen:if is="{$widget.options.display.show_prefix}">{xen:helper threadprefix, $thread}</xen:if>
                                      <a {xen:if '{$thread.title} != {xen:helper snippet, $thread.title, @wf_threads_titleMaxLength}', 'title="{$thread.title}" class="Tooltip"'}
                                      href="{xen:if '{$_threadLink}', {xen:raw $_threadLink}, {xen:link threads, $thread}}">{xen:helper snippet, $thread.title, @wf_threads_titleMaxLength}</a>
                                    <div class="userTitle">{xen:raw $_secondRow}</div>
                          </li>
                </xen:foreach>
                </xen:if>
            </xen:contentcheck>
        </ul>
    </xen:if>

To create a slider for recent threads from one category.

View attachment 53426
Tell @Daniel Hood I've also asked him to make the same thing pretty much, but for the slider to also include images from blogs. http://xenforo.com/community/threads/bd-widget-recentfeatures-slider-for-xi-blogs-threads.56594/
 
I have actually un-installed this Addon about 2 or 3 months ago, since I did not need this Addon anymore.

Now I have upgraded my Forum to XF-version 1.2 and it shows this phrase at "Members Online Now"

online_now_x_members_y_guests_z


Do you know how I can fix/update this phrase ?

I do not want to install this Addon, I just want to fix the phrase.
Is there any way to do this ?


Many thanks!

:)
 
Top Bottom