• Resolved mdbelen

    (@mdbelen)


    Hi! I′m really new to wordpress and creating website of any kind.
    This is about a wordpress that was set up , but I want to change things.

    Te thing is on the bottom of the web, there is a lines that says: “?Gracias por contactar con nosotros! Nos pondremos en contacto contigo muy pronto.” on the bottom white part.
    I want to remove it, but can not find where it is. I think its connected to WPforms, I tried removing that text from the options on the pluging, but it keeps appering. It doesn′t go away.

    So, I′ll like to know if anyone could help me with this.
    Thanks!!

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hey, mdbelen, it looks like your changes took effect; I get this message after submitting: Su Mensaje Fue Enviado!

    I’d recommend clearing your site’s cache (either via a caching plugin or server settings) if changing your form’s settings don’t immediately take effect.

    Thread Starter mdbelen

    (@mdbelen)

    Hi! Thanks for the reply!! However the problem is still there.
    If you load the page, and scroll down, the message is there withouth using the WPForm. I want to erase it form the page.
    I do not want it to be shown permanently, because now, even if you don′t complete the form, it appers at the bottom of the page.

    • This reply was modified 1 year, 9 months ago by mdbelen.

    You can try:

    <script>
      // Get all the <p> tags on the page
      var paragraphs = document.getElementsByTagName('p');
    
      // Loop through each <p> tag
      for (var i = 0; i < paragraphs.length; i++) {
        var paragraph = paragraphs[i];
      
        // Check if the text content of the paragraph starts with "?Gracias"
        if (paragraph.textContent.trim().startsWith("?Gracias")) {
        
          // Hide the paragraph
          paragraph.style.display = 'none';
        }
      }
    </script>
    
    Thread Starter mdbelen

    (@mdbelen)

    Hi! Thank you! It worked!!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Removing WordPress text on botton related to wpforms’ is closed to new replies.