Lack of interest HTML Widget without id, key or definition

This suggestion has been closed automatically because it did not receive enough votes over an extended period of time. If you wish to see this, please search for an open suggestion and, if you don't find any, post a new one.

Robert9

Well-known member
Today i tried to add a html-widget, but there is nothing to identify it.
Why the id is not passed here for example, please?
It would make it much more easy to add some spcial css.
Yes, i know that i can do it in expanded mode, but why i should, if also an html-widget should and could have at least an id.
 
Upvote 1
This suggestion has been closed. Votes are no longer accepted.
Easy change in widget_html template.

Find:

Code:
<div class="block-container">

and add

Code:
{{ widget_data($widget) }}

after it looks like that

Code:
<div class="block"{{ widget_data($widget) }}>

works fine for me

1615756690798.webp
 
Top Bottom