To uninstall the app you need to follow below given steps:
Step 1: Remove the code from the theme file.
{% render 'th-bundle-product' %}
Step 2: Remove code from the product page. (If added)
(a) Remove the code of bundle from the product template file. (Applicable for product & variant bundle type only)
<div class="th_pb_section" id="th_product_bundle" data-id="{{ product.id }}"></div>
(b) Remove code from the product template. (applicable for all quantity type bundle.)
<div id="th_pb_qty_bundle" class="th_pb_qty_bundle_cls" data-pid="{{ product.id }}"></div>
Step 3: Remove code from the cart file.
(a) Find the "{% for item in cart.items %}" code. If there is no code like this in your theme, Please try to find "cart.items". Remove this below given class and attribute.
class="th_pb_cart_line"
Attribute= data-idth="{{ item.id }}" data-indexth="{{ forloop.index }}"
(b) Find the "{% for p in item.properties %}" code. If there is no code like this in your theme, Please try to find "item.properties". Remove below-given codes.
<span class="th_bundle_discount_text"></span>
{%- if p.first contains 'th_bundle_' -%}{%- continue -%}{%- endif -%}
(c) find item.price and remove the below class from it.
th_item_price
(d) find item.line_price and remove the below class.
th_item_line_price
(d)find cart.total_price and remove below class from it.
th_cart_total_price
(e)find product remove button code and remove the below class from it.
th_pb_remove_cart_item