To remove Bundle Builder from your Apps section within your Shopify admin, please navigate to:
- From your store Admin, click 'Apps', in the main menu.
- A drop down will appear from the top - click 'App and sales channel settings'.
3. Click 'Uninstall', next to your Bundle Builder app.
Remnant Bundle Builder Files
After Bundle Builder is uninstalled, several files will still be present within the theme - even after removal of the app. The app does not automatically remove these, and therefore manual removal of the files is required.
You'll be able to spot these pretty easily - they will all contain 'bundlebuilder' within their file names, in your code editor.
As with any code changes, we recommend you remove these first on a duplicate version of your theme, so you're able to test any changes before setting them live.
The Automated Collection
The automatically-created collection "'Bundle builder products' contains all bundles, in case you wish you return to Bundle Builder at a later date. Without the app, the bundles will cease to function, and the customer will not be able to purchase these.
Merchants often leave this information present on the store, if operating seasonal sales, such as festive periods and limited time deals. If the app is no longer installed, these bundles cannot be accessed and the customer should not be able to purchase.
Dummy Products
Deleting the app won't automatically remove your dummy products - these will remain within your Shopify admin. We would advise leaving these for a short period of time after uninstalling - they'll be needed if customers decide to return orders to the store.
After uninstallation, we'd recommend archiving these dummy products, so they aren't accessible on your store. Customers won't be able to purchase them, but they may look 'broken', and redirect to an error message after the app is uninstalled.
After your returns period, or if you don't have one, you can safely go ahead and delete these products from your store.
Charges
To avoid being charged by Shopify, you'll need to ensure the app is removed from the app listing. Once removed, this informs the Shopify system to stop any charges for the app.
Reversing Multiple SKU Installation
If you have installed Multiple SKU onto your theme, you may need to manually remove code from your theme. This applies if further changes have been made on the cart-template.liquid file after the date of the Multiple SKU installation. This will normally only apply if you initially installed Bundle Builder before July 2022.
Step 1 - Replace the following variables:
bb_price
=> item.price
bb_line_price
=> item.line_price
bb_final_line_price
=> item.final_line_price
bb_final_price
=> item.final_price
bb_original_line_price
=> item.original_line_price
bb_original_price
=> item.original_price
bb_total_price
=> cart.total_price
bb_original_total_price
=> cart.original_total_price
bb_items_subtotal_price
=> 'cart.items_subtotal_price
{%if bb_checkout_link!=blank%}{{bb_checkout_link}}{%else%}{{routes.cart_url}}{%endif%}
=> {{routes.cart_ur}}
{%ifbb_checkout_link!=blank%}{{bb_checkout_link}}{%else%}/cart{%endif%)
=> /cart
Step 2 - A loop will need adjusting:
Search for the following: {% for ### in cart.items %}
Ensure that ### is item
in {% for ### in cart.items %}
Step 3 - Search for and remove the following snippet:
{{ bb_inside_cart }}
Step 4 - Remove all the lines starting with the following text:
{% capture bb_
{% render 'bb'
{% include 'bundlebuilder
Comments
0 comments
Please sign in to leave a comment.