Hide Awesome Forms features.

How do I hide everything except for the “Add” button in the Awesome / Advanced Forms feature?

Use the code below to hide the everything but the “Add” button that’s displayed in the Awesome/Advanced Forms feature:

1) Log into your App Manager and select your app.

2) Click Colors from the left-hand-side of the screen (or the middle of the screen).

3) Scroll down to the Advanced SCSS box and enter the code below. If there is already code in the advanced SCSS box, do not remove it. Start a new line “after” the last character in the box, then paste the above code.

/**Begin remove everything except add from awesome forms*/

ion-view[state="awesomeforms-list"] [class="table container ng-table"] {display:none}; ion-view[state="awesomeforms-list"] [class="ng-table-counts btn-group pull-right"] {display:none}; ion-view[state="awesomeforms-list"] [class="ng-binding"] {display:none};

/**End remove everything except add from awesome forms*/

4)Click “Save”