It is adding its options to every single block. But the settings are not being used at all for these blocks.
This is making is very difficult to locate elements in the code editor of a page.
It is also making things ‘messy’.
To give just a glimpse (sine I can’t add screenshots here), one block has the following bits of code in it:
"extended_widget_opts": {"id_base":-1, "column":
{"desktop": "12", "tablet": "12", "mobile":"12"},"alignment" :
{"desktop": "default", "tablet": "default", "mobile": "default"}, "roles":
{"state":"'","options":"hide"}, "visibility":{"selected":"0", "options": "hide", "acf":
{"visibility":"hide", "field":"'', "condition":''', "value":"'}},"author_page" :{"author_pages":
{"selections": "1"}}, "devices" :{"options": "hide"}, "days":{"options": "hide"}, "dates":
{"options": "hide", "from":"''',"to":"'},"styling" :
And it goes on and on…
Thank you
]]>I’ve been having trouble with removing this line of text that’s appearing at the top of on every single page of my site.
It’s not in any settings, and when I use the Inspect tool, it shows that the code is appearing after the <head> tag ends, and right after <body class> tag starts.
I’ve scoured through all the theme files in theme file editor and have also tried switching to other themes. Somehow, it’s just there so it doesn’t seem to be a theme problem. (I’m using Flatsome Child theme by the way).
The line of text randomly appeared and has been there for months. I’m not sure how it even got there to begin with.
Please help with any suggestions on what can be done to remove this line of code.
Thank you!
]]>https://drive.google.com/file/d/1UCOwkD2Td9pgysU559xU_KY-DYhOs1TD/view?usp=share_link
]]>Regards,
Fabio
There seems to be an error in the code of the Events Widget as of version 6.0. Compare the code output:
Version 5.12.1
<section id="em_widget-3" class="widget widget_em_widget">
<div class="inner">
<h2 class="widget-title">[title]</h2>
<ul>
<li>
<a href="[url]">[link text]</a>
<ul>
<li>[event date]</li>
<li>[event location], [event time]</li>
</ul>
</li>
<li class="all-events-link">
<a href="[url]" title="[title]">[link text]</a>
</li>
</ul><
/div>
</section>
Version 6.1.1
<section id="em_widget-3" class="widget widget_em_widget">
<div class="inner">
<h2 class="widget-title">[title]</h2>
<div class="em pixelbones em-list-widget em-events-widget">
<li>
<a href="[url]">[link text]</a>
<ul>
<li>[event date]</li>
<li>[event location], [event time]</li>
</ul>
</li>
<li class="all-events-link">
<a href="[url]" title="[title]">[link text]</a>
</li>
</div>
</div>
</section>
A DIV has been added in the later version (since 6.0) and the UL tags are missing. It leads to invalid HTML code and can break the styling.
Could you please add the UL tags back in a coming release?
Thanks!
]]>Do you have a solution to this problem? I do not want html to be displayed only after a specific paragraph. I want this code to run along with the text of the post.
Thanks.