Viewing 5 replies - 1 through 5 (of 5 total)
  • fgleite,

    There’s a form at the end of your pages, see this screenshot of the code: https://www.dropbox.com/s/2t3ifah3yij0zx1/Screenshot-2015-09-28-09.11.08.png?dl=0

    I imagine it’s either in a template such as page.php or there’s a shortcode at that bottom of your pages in the editor, which would be some text inside brackets like this: [shortcode=form]

    If you look in those template files and find the form code, removing it should solve your issue.

    Thread Starter fgleite

    (@fgleite)

    Thank you cdcampbell26,

    I’ve looked for this but it’s not there, unfortunately..
    I even looked at every php page listed on the editor.

    Is there any other way I can find/hide it?

    Thank you again

    fgleite,

    That’s odd. Without knowing the theme or looking at the template files, the only sure fire way to hide it would be to add the following code to your style.css file:

    /* Hide form controls at bottom of pages */
    #left form {
      display: none;
    }
    
    /* Make sure form appears on the contact page */
    /* Copy code and add the post ID for any other pages using forms */
    .post-14 form {
      display: block;
    }

    I added a rule for .post-14 because that’s your contact page and we want forms to appear there. Any other form you add you’ll want to make sure you add its ID to make sure it displays as well.

    Let me know if this resolves it for you!

    Thread Starter fgleite

    (@fgleite)

    cdcampbell26,

    It’s working pretty fine!
    Thank you very much for spending your time here helping me.
    I really appreciate it.

    Have a nice day!
    Fernando

    Fernando,

    Glad I could help! Have a great day!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Remove "Submit file" button’ is closed to new replies.