Articles on: Uninstall

How to properly uninstall Fileflare


Uninstalling the app


Shopify’s rules state that apps need to delete all the store’s data and will delete your personal data once the app receives the webhook from Shopify. This happens within 48 hours after uninstalling.


All of your Shopify data and uploaded assets will be permanently deleted as soon as Shopify send the request. This can take place anytime within those 48 hours. This is an automated system.


No code is automatically added to your theme


Filelflare does not automatically add any code to your Shopify theme, so if you haven't manually added any code yourself, then you don’t need to do anything. If you did add code manually yourself, then you can see our guide below.


The only code snippets that you are able to manually add to your store are:


  • Legacy (Classic) customer account download links – order page links snippet
  • Legacy (Classic) customer account download links – “View all downloads” link
  • Custom CSS styling for the download button
  • Custom CSS styling for the download page
  • Shopify order confirmation email


To remove them, simply:

  1. Go to your Shopify dashboard
  2. Go to “Online store” > “Themes”
  3. Click “Actions” > “Edit code”




Old method (discontinued by Fileflare mid-2024)
  1. Go to the “Customers/order.liquid” or the “main-order.liquid” file
  • Many new Shopify themes use main-order.liquid
  • Some third-party and older themes use customers/order.liquid


  1. Find the code snippet:
`<div id='digitalAssets'></div>`


  1. Delete this code and click “Save”
  2. Done!


New method
  1. Go to the “Customers/order.liquid” or the “main-order.liquid” file
  • Many new Shopify themes use main-order.liquid
  • Some third-party and older themes use customers/order.liquid


  1. Search for the text:
apps/digital-downloads


It will look something like this:

<a href="/apps/digital-downloads/orders/{{ order.id }}">
<button>View downloads</button>
</a>


  1. Delete this code and click “Save”
  2. Done!



  1. Search for the “main-account.liquid” file.
  2. Search for the text:
apps/digital-downloads


This is the link that will need to be removed. It may be inside a button code snippet, an example below:

<a href="https://example.com/apps/digital-downloads" >
<button>View all downloads</button>
</a>


Remove the custom CSS for the download button


  1. Go to your root CSS file. It is sometimes called “base.css”.
  2. Remove the code marked with #digitalAssets:


#digitalAssets {
--dda-color-100: #F7F9FC; /* Button background color */
--dda-color-200: #E2E7F0; /* Button border color */
--dda-color-400: #CBD2E0; /* Button hover color */
--dda-color-600: #2D3648; /* Button text color */
}


Remove the custom CSS for the download page


  1. Find your root CSS file. It’s sometimes called “base.css”
  2. Now remove the code that is related to "dda" or "fileflare"


You will find all of the code snippets in this guide.


Shopify order confirmation email


It's possible for a merchant to add customisations to their Shopify order confirmation email. If you have added the Fileflare code to this email tempalte, then you can remove it easily.

  1. Go to Shopify settings
  2. Go to "Notifications"
  3. Go to "Customer notifications"
  4. Go to "Order confirmation"
  5. Click "Edit code"
  6. Find the code that includes "Fileflare". It will look similar to this:
<!-- BEGIN Fileflare code -->
{%- assign has_digital_product = false -%}

{%- for item in line_items -%}
{%- if item.requires_shipping == false -%}
{%- assign has_digital_product = true -%}
{%- break -%}
{%- endif -%}
{%- endfor -%}

{%- if has_digital_product -%}
<table class="button main-action-cell">
<tr>
<td class="button__cell">
<a href="https://www.storedomain.com/apps/digital-downloads/email-downloads/{{ id }}" class="button__text">Download your files</a>
</td>
</tr>
</table>
{%- endif -%}
<!-- END Fileflare code -->


Updated on: 28/03/2025

Was this article helpful?

Share your feedback

Cancel

Thank you!