Skip to main content

Removing or Updating the Download App Badges

Learn how to hide or replace the default app badges and Get the App carousel links with your own branded app.

Rafael avatar
Written by Rafael
Updated over 2 weeks ago

Overview

By default, the CleanCloud web booking tool displays Google Play and App Store badges in the promo carousel, allowing customers to download the CleanCloud app.

  • These badges cannot be removed when using the direct booking tool link.

  • 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.

πŸ“Œ Note: The Get the App carousel does not display in the CleanCloud app itself (since the app is already installed).


How to remove the Get the App carousel

1. Embedding the booking tool in an external website

When embedding your store, you can hide the default app badges by adding the following code:

{
showGetAppPromoCard: false,
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 with your branded app links.

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>


2. Embedding the booking tool with the CleanCloud hosted website builder

When customizing your booking tool via the CleanCloud hosted website builder (Settings ≑ β†’ Admin β†’ Hosted Website), you can configure:

  • Show app store badges

  • Show app store badges on desktop

  • Show Get the App promo card


Updating app links in hosted websites

Update footer links in the hosted website

  1. Log in to CleanCloud.

  2. Go to Settings ≑ β†’ Admin β†’ Hosted Website β†’ Settings β†’ App Links.

  3. Replace the Play Store (Android) and App Store (iOS) URLs with your branded app links.

  4. If you don’t want the badges to display, go to Block Settings and disable Show download app bar.


Updating 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.


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: Redirects customers automatically to the correct store.

  • On desktop: Prompts customers to choose their store.

πŸ“Œ Note: If the branded app download link does not redirect to your branded app, please contact Support to have it updated.


πŸ›Ÿ Need more help?

Explore our Help Center articles for answers. Contact us for further assistance.

Did this answer your question?