Home Forums WoodMart support forum Remove collapse Terms&Conditions block

Remove collapse Terms&Conditions block

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #271322

    zurich
    Participant

    Hi!
    How can i remove collapsed Terms & Conditions block at checkout page and set link to the page to open in new window?

    #271336

    Hello,

    This is Woocommerce functionality and our theme does not have the option or any influence. You can find the option in the Woocommerce > Settings > Advanced.

    Best Regards

    #271440

    zurich
    Participant

    Thank you for the response!
    But where I can moderate it?
    https://monosnap.com/file/UJNrXDBAduLZniMlMfoks08aIBGRG5

    #271484

    Hello,

    You can find this page in Dashboard > Pages, please note this page should be created in the default WordPress without any builders.

    If you have any questions please feel free to contact us.

    Best Regards

    #271504

    zurich
    Participant

    Question is why in one case terms & conditions is opened as new page in new window in other case it’s opens in collapsed block

    #271528

    Hello,

    Please make the full backup of your site as well as the Theme settings export and check the issue on the Storefront theme to detect if our theme causes the problem.

    Best Regards

    #271534

    zurich
    Participant

    My website is fine. I just want to turn off the expand block on checkout page. In your demo, the block expands; on my site, the block expands. But when I install your theme on a new empty staging site, the terms and conditions link moves to a new page in a new window. I want the link not to expand the block, but to leads to a separate page with policy. Now is clear?

    #271668

    Hello,

    Please make the full backup of your site as well as the Theme settings export and check the issue on the Storefront theme to detect if our theme causes the problem. Our theme does not influence this functionality.

    Best Regards

    #271670

    zurich
    Participant

    Hi!
    You still don’t understand me. 🙂
    First video is from your demo site with expanding block and displaying terms on the checkout page/
    https://monosnap.com/file/6qfHzxLXDcSlOBwzQxokzERO5eica7

    Second video is from staging site where link opens new page
    https://monosnap.com/file/2z7ziqe6y5GDhHUy6Y4sBr2GP26Nko

    I want to make like in second video. How can I make it?

    #271832

    Hello,

    This is the defult Woocommerce functionality. If you want to change that, add this JS code to the Theme Settings > Custom JS > On document ready:

    jQuery(document.body).on('updated_checkout', function(){
    	jQuery('.woocommerce-terms-and-conditions-link').on('click', function(e){
    		e.stopPropagation();
    		e.preventDefault();
    		var url = jQuery(this).attr('href');
    		window.open(url, '_blank');
    	});
    });

    Best Regards

Viewing 10 posts - 1 through 10 (of 10 total)