Resource icon

[bd] Widget Framework 2.6.6

No permission to download
It's working as expected to me. Can you post the link to your site where it is not working?

I didn't post clearly enough. It does post a message if they posted to many characters but while you're typing it doesn't display how many characters you have left. I've removed it and most likely won't be having it on my site now so it is ok.
 
It's working as expected to me. Can you post the link to your site where it is not working?


To create a HTML widget, use the renderer "[Advanced] HTML" (or "[Advacned] HTML (without wrapper)" if you like it).
To show the widget in a page with node_id #10, use the position "pagenode_container" and use the expression "$page.node_id == 10".
I get it now.
So expression available are just like php expressions.
"$variable any condition"
 
For widget expressions, is there a way to prevent it from showing up in a specific forum?

Say a forum in thread_view. Can it from displaying in the trashcan forum for instance?
 
For widget expressions, is there a way to prevent it from showing up in a specific forum?

Say a forum in thread_view. Can it from displaying in the trashcan forum for instance?
Yes, you can do that. Something like

Code:
$forum['node_id'] == 10
 
I'm unable to locate the images addon for the RSS feeder. Can someone provide a link? Would like to display images from RSS feeds in sidebar.
 
I use the thread renderer to show the latest threads. In the widget title I use the text "Latest 10 threads". A member came up with the idea to make this title into a link so that users can go to the page which shows a list of more than 10 threads recently created (http://www.domain.com/community/index.php?find-new/878/threads). The problem I ran into now when embedding some HTML code in the title form is that I ran out of characters.

My question is if it in the future would be possible to extend the number of characters allowed for title if one would choose to wrap something up in HTML?
 
I use the thread renderer to show the latest threads. In the widget title I use the text "Latest 10 threads". A member came up with the idea to make this title into a link so that users can go to the page which shows a list of more than 10 threads recently created (http://www.domain.com/community/index.php?find-new/878/threads). The problem I ran into now when embedding some HTML code in the title form is that I ran out of characters.

My question is if it in the future would be possible to extend the number of characters allowed for title if one would choose to wrap something up in HTML?
Probably.
 
To create a HTML widget, use the renderer "[Advanced] HTML" (or "[Advacned] HTML (without wrapper)" if you like it).
To show the widget in a page with node_id #10, use the position "pagenode_container" and use the expression "$page.node_id == 10".
I'm getting the following error:

Code:
Use of undefined constant node_id - assumed 'node_id'

I have
Code:
$page.node_id == 137
in the Expression field, and
Code:
pagenode_container
in the Position field.
 
I'm getting the following error:

Code:
Use of undefined constant node_id - assumed 'node_id'

I have
Rich (BB code):
"$page.node_id == 137"
in the Expression field, and
Rich (BB code):
pagenode_container"
in the Position field.
missing quotes. Try again.

Salud2
 
Just installed this, didn't realise it took away all other sidebar blocks.

currently using
Xen-TR Who Has Visited and a usergroup legend mod

is there any way of getting these to show

or at least maybe creating a widgets that do the same

:edit forget taht disabled clear sidebar :D
 
When will you release it? You had shared it through private registration; I seem to have removed myself from it :( .
Sent you via email.

I'm getting the following error:

Code:
Use of undefined constant node_id - assumed 'node_id'

I have
Code:
$page.node_id == 137
in the Expression field, and
Code:
pagenode_container
in the Position field.
My bad, please use this
Code:
$page['node_id'] == 137

This did not work :/ It disabled it on all forums.
Please note that it will only works in forum_view or thread_view template location. Which location are you using?
 
I'm finding that if I specify the position of "all" my widgets will appear on thread_view. However, if I specify only "thread_view" instead - because that is what I want - nothing appears on thread_view. Could anyone help me out with that one?
 
I'm finding that if I specify the position of "all" my widgets will appear on thread_view. However, if I specify only "thread_view" instead - because that is what I want - nothing appears on thread_view. Could anyone help me out with that one?

Have you tried clearing thread_view with the clear widget?
 
Have you tried clearing thread_view with the clear widget?

Yes, currently I have this setup:

thread_view (4)
Clear Sidebar
Users Online Now
Tab Group: thread_view/Posts
TaigaChat Pro Shoutbox

Any one of these will appear inside the thread view if I set them to 'all' but unfortunately disappear once set to thread_view.
 
Back
Top Bottom