I am running WP Table Builder Ver. 1.6.4 on WordPress 6.7.1 with PHP 8.4. Everything was automatically updated to the latest version, and I have tried editing and viewing in Firefox 133.0.3 (64-bit) and Google Chrome browsers, with the same results.
I use FeeGrabbr to embed a live news feed. This has been working fine, but when I rearranged the table and moved the Custom HTML to a different cell, it ceased to function.
I tried deleting both the Custom HTML element and even the cell, and readding both. I′ve tried using the “Standard embed code” and the IFrame code. I′ve also tried inserting it between the <span> </span> as well as deleting that. when I first paste either code, it appears and the actual feed appears in the table in the editor, but when I “save the table, the code is either deleted completely or truncated, and the feed does not appear.
If I paste the code outside the WP Table, it works fine, but I cannot position it where I need to if it′s not in the table.
If I try to paste the shared images it appears as below. Here is a link to the folder that has four images that are labeled. 1 wptable images.
Thank you for any help you can provide.
my footer.php HTML structure is:
<!-- Maximum 4 posts in Trending post widget, note that only first post contains Image, other 3 doesn't contain image -->
<div class='widget PopularPosts' data-version='2' id='PopularPosts00'>
<h2 class='title dt noTOC'>Trending</h2>
<div class='itemPp' role='feed'>
<article class='itm mostP'>
<div class='iThmb pThmb'>
<a class='thmb' href="get the url">
<img alt='Post title as Image alt' class='imgThm lazy' src='get the large size image URL' />
</a>
<div class='iFxd'>
<a aria-label='Comments' class='cmnt' data-text='get the comments number' role='button'>
<svg class='line' viewBox='0 0 24 24'><g transform='translate(2.000000, 2.000000)'><path d='M17.0710351,17.0698449 C14.0159481,20.1263505 9.48959549,20.7867004 5.78630747,19.074012 C5.23960769,18.8538953 1.70113357,19.8338667 0.933341969,19.0669763 C0.165550368,18.2990808 1.14639409,14.7601278 0.926307229,14.213354 C-0.787154393,10.5105699 -0.125888852,5.98259958 2.93020311,2.9270991 C6.83146881,-0.9756997 13.1697694,-0.9756997 17.0710351,2.9270991 C20.9803405,6.8359285 20.9723008,13.1680512 17.0710351,17.0698449 Z'></path></g></svg>
</a>
</div>
</div>
<div class='iInf pSml'>
<time class='aTtmp iTtmp pbl' data-text='Jun 11' datetime='2021-06-11T13:20:00+05:30' title='Published or Updated if modified: June 11, 2021'></time>
<div class='pLbls' data-text='in'>
<!-- Show the main category -->
<a aria-label='GFX' data-text='GFX' rel='category'>
</a>
<!-- Show the first tag if available -->
<a aria-label='Review' data-text='Review' rel='tag'>
</a>
</div>
</div>
<div class='iCtnt'>
<div class='iInr'>
<h3 class='iTtl aTtl'><a >15 Best Free Transitions for Alight Motion | Free Download Preset Pack</a></h3>
<div class='pSnpt'>
Love Alight Motion Transitions? here we have 15 Professional Transition…
</div>
</div>
</div>
</article>
<article class='itm'>
<div class='iInf pSml'>
<time class='aTtmp iTtmp pbl' data-text='Mar 1' datetime='2022-03-01T19:07:00+05:30' title='Published: March 1, 2022'></time>
<div class='pLbls' data-text='in'>
<a aria-label='Blogger' data-text='Blogger' rel='category'>
</a>
<a aria-label='Widget' data-text='Widget' rel='tag'>
</a>
</div>
</div>
<div class='iCtnt'>
<div class='iInr'>
<h3 class='iTtl aTtl'><a >How to Add Bookmark Widget on Blogger</a></h3>
</div>
</div>
</article>
<article class='itm'>
<div class='iInf pSml'>
<time class='aTtmp iTtmp pbl' data-text='Feb 28' datetime='2021-02-28T12:31:00+05:30' title='Published: February 28, 2021'></time>
<div class='pLbls' data-text='in'>
<a aria-label='GFX' data-text='GFX' rel='category'>
</a>
<a aria-label='Review' data-text='Review' rel='tag'>
</a>
</div>
</div>
<div class='iCtnt'>
<div class='iInr'>
<h3 class='iTtl aTtl'><a >YouTube Channel Art Banner | Pixellab Free PLP Template</a></h3>
</div>
</div>
</article>
<article class='itm'>
<div class='iInf pSml'>
<time class='aTtmp iTtmp pbl' data-text='Oct 5' datetime='2022-10-05T06:59:00+05:30' title='Published: October 5, 2022'></time>
<div class='pLbls' data-text='in'>
<a aria-label='Blogger' data-text='Blogger' rel='category'>
</a>
<a aria-label='Tutorial' data-text='Tutorial' rel='tag'>
</a>
</div>
</div>
<div class='iCtnt'>
<div class='iInr'>
<h3 class='iTtl aTtl'><a >How to Create Auto Safelink Post in Plus UI | Safelink Script for Plus UI</a></h3>
</div>
</div>
</article>
</div>
</div>
]]>If anyone knows the origin of this issue, I would greatly like to know so I can finally fix the problem once and for all…
The issue is with the widgets on the right side of the page. They seem to randomly disappear completely every so often. I don’t know why. I have not done any updates or anything with the base WordPress install.
I do have automatic updates activated, so do you think there could be an issue there somewhere, perhaps with a particular plugin?
]]>I intend to create new posts via the WordPress REST API. I have thoroughly reviewed the API documentation here.
I would like the ability to create Custom HTML blocks via the API. For example, consider this page. The map is an iframe that points to an HTML file residing in a publicly available directory. The entirety of the Custom HTML code is:
<div class="container">
<iframe src="https://bwsb.synology.me/wordpress/files/med_map.html" width="50%" height="400" frameborder="0" allowfullscreen="" class="map"></iframe>
</div>
How can I create the equivalent of this Custom HTML block via the API?
I’m flexible about where the Custom HTML block appears in relation to the post content. If it would be easier, the code could appear as a comment beneath the main post.
Thank you for reading my inquiry.
]]>I’ve tried some plugin to modify it but each of them only let me add some element or change the existing ones. I also tried using the hook “login_form” in my functions.php but still didn’t work.
I’m currently using WordPress 6.4.2.
I really hope someone can help me. Thank you very much
]]>I am unable to recreate the custom html demo although I added the function in functions.php and selected custom display option while editing the product.
Thanks
]]>My intention is to paste a simple stock price widget code, but upon saving the draft or publishing, I encounter the error message: “Updating failed. The response is not a valid JSON response.”
Interestingly, all other HTML code works seamlessly; the issue seems to specifically revolve around the tag <script>, which triggers the mentioned error.
I’m curious if there might be a WordPress filter or setting that is preventing the inclusion of JavaScript code.
Your assistance in resolving this matter would be greatly appreciated. Thank you.
]]>