Hi,
thanks for checking. Actually, everything is ok with the import and the backend.
There’s however a problem with the data in the table, which I just noticed, when using the “View source” function in the browser for your page.
The table HTML code is all there, but the browser can not interpret it properly, due to the script tag:
<script type="text/javascript" async="" src="//assets.pinterest.com/js/pinit.js"/>
This is a self-closing HTML tag, but that’s not support on the <script>
tag. Instead, this must be written as
<script type="text/javascript" async="" src="//assets.pinterest.com/js/pinit.js"></script>
everywhere.
Can you therefore please change this accordingly in all table cells?
Regards,
Tobias