owls8521
Active member
When I put one of my urls into the Facebook Open Graph Object Debugger, I received the following error:
I found that the following line in PAGE_CONTAINER was causing the issue:
I solved it by moving that line to right before the closing head tag. If you do not do that, Facebook will close the head tag early.
Your page has meta tags in the body instead of the head. This may be because your HTML was malformed and they fell lower in the parse tree. Please fix this in order for the tags to be usable.
I found that the following line in PAGE_CONTAINER was causing the issue:
Code:
<noscript><style>.JsOnly, .jsOnly { display: none !important; }</style></noscript>
I solved it by moving that line to right before the closing head tag. If you do not do that, Facebook will close the head tag early.
Last edited: