If you need to uninstall Bundle Builder, and you don't have a back up version of your theme to revert to, then you can manually remove any app code from your theme.
We recommend that you make a duplicate of your theme BEFORE starting this process, and complete the changes on your duplicate theme. This will allow you to check your changes before publishing, ensuring there is no impact on your live store.
- 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_url }}
{% if bb_checkout_link != blank %}{{ bb_checkout_link }}{% else %}/cart{% endif
%}
=> /cart
- A loop will need adjusting:
Search for the following: {% for ### in cart.items %}
Ensure that ### is item
in {% for ### in cart.items %}
- Next, search for and remove the following:
{{ bb_inside_cart }}
- 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.