Hide Salesforce Sync Section On The Mobile App

This guide will explain how to hide the Salesforce sync options on the mobile setup and home page.

It will hide the options to delete Sent, Draft and Unsent entries on the setup page.

And will hide the options to show Recent and All sent entries on the home page.

Go to the Setup page:

Click the down arrow next to your name on the Formyoula web app and then click “Setup”.

Or use this link to go to the Setup page directly - https://app.formyoula.com/setup/account

image

Paste the code on Mobile Footer.

image

Please use this code:

<style>

/* Hide Salesforce Section On Setup Page  */

.setup-wrapper .sync_wrapper {
	display: none;
}


/* Hide entry import and export on mobile setup page  */

.setup-wrapper #export_recent_entries_btn {
	display: none;
}

.setup-wrapper #delete_unsent_entries_btn {
	display: none;
}

.setup-wrapper #delete_draft_entries_btn {
	display: none;
}

.setup-wrapper #delete_sent_entries_btn {
	display: none;
}

/* Hide recent entries on mobile home page */

.home_content .form_list {
	display: none;
}

.home_content .show_forms {
	display: none;
}

.home_content .load_more_records {
	display: none;
}

.home_content .show_all_entries {
	display: none;
}

</style>

Click “Update Organisation”.

image

Open your Formyoula Mobile app, and it will hide the Salesforce sync options on the mobile setup and home page.

[Optional]: You can hide specific mobile setup page buttons.

For example: Please use the below code to hide “delete_unsent_entries_btn” on the mobile setup page.

<style> 

/* Hide delete_unsent_entries_btn on mobile setup page  */

.setup-wrapper #delete_unsent_entries_btn {
 display: none;
} 

</style>

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