Overview
By default, the CleanCloud web booking tool displays Google Play and App Store badges so customers can download the CleanCloud app.
These badges cannot be removed when using the booking tool’s direct link (via Settings ≡ → Admin → Store Settings → Services Offered → Pickup and Delivery → Visit Store ↗️).
However, if you embed the booking tool on your own website, you can remove the badges entirely or update them to point to your branded app instead.
How to remove app badges when embedding the booking tool in an external website
When embedding your store, you can hide the default app badges by adding the following code:
{
enableAppStoreBadges: false,
showAppStoreBadgesOnDesktop: false,
googlePlayURL: "https://play.google.com/store/apps/details?id=com.cleancloudapp.cleancloud",
appStoreURL: "https://apps.apple.com/us/app/cleancloud/id1031182499",
}
Set enableAppStoreBadges and showAppStoreBadgesOnDesktop to false.
Replace the googlePlayURL and appStoreURL to point to your custom branded app.
Example full embed code:
<link href="http://localhost:3000/webapp/public/webapp/cleancloud.css" rel="stylesheet" />
<div id="myStoreContainer"></div>
<script type="text/javascript" src="http://localhost:3000/webapp/public/webapp/cleancloud.js"></script>
<script type="text/javascript">
CleanCloudWebApp("#myStoreContainer", 55, {
width: 'auto',
height: 700,
welcomeMessage: true,
enableAppStoreBadges: false,
showAppStoreBadgesOnDesktop: false,
googlePlayURL: "https://play.google.com/store/apps/details?id=com.cleancloudapp.cleancloud",
appStoreURL: "https://apps.apple.com/us/app/cleancloud/id1031182499",
"theme": {
"border": {
"visible": true,
"color": "#dddddd",
"width": 1,
}
}
});
</script>
Updating app links in CleanCloud-hosted websites and notifications
If you created your website with the CleanCloud website builder, you can update app links in multiple areas.
Update footer links in hosted websites
Log in to CleanCloud.
Go to Settings ≡ → Admin → Hosted Website → Settings → App Links.
Replace the Play Store (Android) and App Store (iOS) URLs with your custom branded app links.
Update links in customer-facing notifications
Emails and SMS notifications: Edit templates to include branded app links.
Booking tool (embedded): Update links in the embed code.
Booking tool (web builder): Update links in the web builder menu.
Get the App promo carousel (embedded): Update links in the embed code.
Get the App promo carousel (web builder): Update links in the web builder menu.
Get the App promo carousel (direct link): Requires custom development. Contact Support for assistance.
Custom download links
CleanCloud supports custom download links that replace the default OneLink.
Generic CleanCloud app link:
https://cleancloudapp.com/download
Branded app link (per store):
https://cleancloudapp.com/download/%STORE_ID%
Example:
https://cleancloudapp.com/download/34114
On iOS or Android: Automatically redirects customers to the correct store.
On desktop: Prompts customers to choose their store.
FAQs
Can I remove the app badges from the CleanCloud booking tool page?
Can I remove the app badges from the CleanCloud booking tool page?
No. App badges cannot be removed from the booking tool page when accessed directly from CleanCloud’s domain. They can only be removed or customized if the booking tool is embedded in your own website.
Can I point the app badges to my branded app?
Can I point the app badges to my branded app?
Yes. Replace the googlePlayURL and appStoreURL in the embed code or update them in the hosted website settings.
Do custom download links work on all devices?
Do custom download links work on all devices?
Yes. On iOS and Android devices, customers are redirected to the correct store automatically. On desktop, they are prompted to choose.
Why don’t my updated app links show in customer-facing screens?
Why don’t my updated app links show in customer-facing screens?
If links are not updating:
Confirm they were changed in the correct location (embed code, web builder, or hosted site settings).
For direct link booking tools, custom development may be required—contact Support.
🛟 Need more help?
Explore our Help Center articles for answers. Contact us for further assistance.