Hiding Buttons On The Entry Detail Page

In this guide, we will explain how to hide the edit button in the draft and sent entries.

  1. Click the “New Form”.
image
  1. Drag and Drop one HTML and two Text fields and rename the text fields.
image
  1. Click the pencil icon on the HTML field and paste the below code.
image

HTML Code:

<style>
    .sent_entry .form_nav_container .edit {
        display: none;
    }
    .draft_entry .form_nav_container .edit {
        display: none;
    }
</style>
  1. Click the Check button and then click “Save & Close” to save the form.
image
  1. Try the form.
image
  1. The edit button in the draft and sent entries will be hidden.
image

Additionally, please use this CSS to hide the “Clone” button:

<style>
    .sent_entry .form_nav_container .clone {
        display: none;
    }

    .draft_entry .form_nav_container .clone {
        display: none;
    }
</style>

For any questions, please contact us - [email protected] or the Formyoula in-app chat 🙂