Copy link to clipboard
Copied
The table "struct" is displaying on the webpage and I can't find in the CF files or wordpress where to hide or remove table(s). I am not a CF expert or wordpress, but I have experience with HTML.
Copy link to clipboard
Copied
There is probably something that looks like this in your code:
<cfdump var="...">
Remove or comment that out. To use comments to prevent CF code from executing, you'll use HTML comments with one extra dash on each side:
<!---
bad stuff here
--->
Dave Watts, Fig Leaf Software
Copy link to clipboard
Copied
Thank you so much.