Home Forums WoodMart support forum checkbox Terms And conditions in checkout

checkbox Terms And conditions in checkout

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #602072

    aziztoubou2022
    Participant

    please i want the checkbox Terms and Conditions to be checked by default in the checkout page

    Attachments:
    You must be logged in to view attached files.
    #602146

    Aizaz Imtiaz Awan
    Keymaster
    Xtemos team

    Hello,

    Please try to add the code below in the functions.php file in your child theme.

    add_filter( 'woocommerce_terms_is_checked_default', 'apply_default_check' );
    function apply_default_check() 
    {
        return 1;
    }

    Best Regards

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