Code visible on page

Hi.

Something strange is going on. On this page a lot of code is visible below the feed of the videoes; https://brubakkenhome.no/interiorveiledning/

I’m sure you can tell me what’s wrong :wink:

Look forward to hear from you.

Regards

Hi @christian3,

Thanks for reaching out.

This is an incompatible content in your page. To better help you with your issue, we need to examine the page. Please give us the following information in a Secure Note.

  • WordPress Login URL
  • Admin level username and password

You can find the Secure Note button at the bottom of your posts.

Thank you.

Hi.

Thanks for your reply. Secure note will follow.

Regards.

Hi @christian3,

I’ve been trying to find a solution but I couldn’t figure out why it is happening in your install. Since there’s a 3rd party plugin involve, we can’t dig more about the issue but I found some workaround that would require a little CCS and JS.

I added this code to X > Theme Options > JS

jQuery(".entry-content, .x-global-block")
    .contents()
    .filter(function() {
        // get only the text nodes
        return this.nodeType === 3;
    })
    .wrap( "<p></p>" );

I also added this code to X > Theme Options > CSS

#cs-content ~ p, .x-global-block .x-section ~ p {
  display: none;
}

Please note that custom development is outside the scope of our support. Issues that might arise from the use of custom code and further enhancements should be directed to a third-party developer.

Hope that helps.

Thank you.

Hi.

Thanks a lot for your help! Much appreciated :slight_smile:

Regards.

Hi @christian3,

You’re welcome and it’s our pleasure to help you. If you have any other concerns, feel free to reach us.

Thank you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.