how to remove agree with terms and conditions Ella theme

Solved

how to remove agree with terms and conditions Ella theme

RivaajEthnic
Excursionist
50 1 7

Can you help how to remove terms and conditions checkbox from the page using Ella theme

https://www.rivaajethnic.com/products/dress

Accepted Solution (1)
RivaajEthnic
Excursionist
50 1 7

This is an accepted solution.

Thanks all, I found it under Product > Theme settings > unchecked terms and conditions checkbox.

View solution in original post

Replies 9 (9)

suyash1
Shopify Partner
10983 1359 1735

@RivaajEthnic - please open this product page in customize settings and check if you have an option to remove this terms and conditions, using css it can be hidden but then may create an issue if it is mandatory

To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.

lynth
Shopify Partner
203 11 33

If you can't do it using the CMS customization option, try removing it from your liquid template. Do you have product-footer.liquid or component-product.liquid? Look for the "productView-checkbox" class.

If my tips are useful, just mark it as the solution. Cheers!
Feeling grateful? Buy me a coffee!

steve_michael2
Navigator
445 38 61

Hi
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>

<style>
.productView-groupItem {
    display: none !important;
}
</style>

If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEEThanks!

lynth
Shopify Partner
203 11 33

It’s not enough to just hide it. the “Add to Cart” button remains blocked until the checkbox is checked. He needs to remove the code snippet, not just style it.

If my tips are useful, just mark it as the solution. Cheers!
Feeling grateful? Buy me a coffee!
RivaajEthnic
Excursionist
50 1 7

Unable to find product-footer.liquid or component-product.liquid but i see Halo term condition popup.liquid. 

 

Is it the right one? I see the below code in Halo term condition popup.liquid

 

<div class="halo-popup halo-term-condition-popup halo-popup-topDown" data-term-condition-popup id="halo-term-condition-popup">
<div class="halo-popup-wrapper">
<div class="halo-popup-header">
<button type="button" class="halo-popup-close clearfix" data-close-term-condition-popup aria-label="{{ 'general.common.close' | t }}">{% render 'icon-close' %}{{ 'general.common.close' | t }}</button>
<h5 class="halo-popup-title text-center">{{ 'sections.term_condition' | t }}</h5>
</div>
<div class="halo-popup-content halo-popup-scroll custom-scrollbar">{{settings.global_checkbox_content}}</div>
</div>
</div>

 

Shall i delete this file?

RivaajEthnic
Excursionist
50 1 7

I see the below code in one of the liquid files. Shall i remove the below code?

 

<div class="productView-groupBottom">
{%- if settings.show_global_checkbox -%}
<div class="productView-groupItem">
{%- if settings.show_global_checkbox -%}
<div class="productView-checkbox global-checkbox">
<input class="global-checkbox--input" type="checkbox" name="conditions" id="product_conditions_sticky_{{ product.id }}" data-target="#product-checkout-sticky-{{ product.id }}">
<label class="global-checkbox--label form-label--checkbox" for="product_conditions_sticky_{{ product.id }}">{{ settings.global_checkbox_text }}</label>
{%- if settings.global_checkbox_link_text != blank -%}
<button type="button" data-term-condition>{{ settings.global_checkbox_link_text | escape }}</button>
{%- endif -%}
</div>
{%- endif -%}
</div>

suyash1
Shopify Partner
10983 1359 1735

@RivaajEthnic - go to customize settings, open product page in it and disable show global checkbox , this will remove it, do not alter the actual theme code

To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.
RivaajEthnic
Excursionist
50 1 7

This is an accepted solution.

Thanks all, I found it under Product > Theme settings > unchecked terms and conditions checkbox.

suyash1
Shopify Partner
10983 1359 1735

@RivaajEthnic - perfect, please accept any of yours or ours message as a solution

To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.