Okay
  Public Ticket #2621433
WooCommerce customizer missing from appearance menu
Closed

Comments

  • ampsuu started the conversation

    WooCommerce customizer is missing from appearance menu. I want to change Terms and Conditions checkbox text but I can not because WooCommerce settings are not there.

    Can you provide a solution to that or a workaround to change that checkbox text.

  •  675
    Neuron replied

    Hi Ampsuu,

    I am sorry for the late reply we did not work on the weekend.

    We have removed the settings of WooCommerce, since they created conflict with ours.

    You can do that by adding the following snippet in functions.php of your child theme or via the Snippet Plugin.

    add_action( 'init', 'custom_change_term_woo' );
    function custom_change_term_woo() {    
        if ( get_option( 'woocommerce_checkout_terms_and_conditions_checkbox_text' ) ) {        
            update_option( 'woocommerce_checkout_terms_and_conditions_checkbox_text', '[terms] Your text here.' );    
        }
    }
    

    https://wordpress.org/plugins/code-snippets/

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.

  • Alberto Jimenez Perez replied

    Hi, 

    I have the same issue and the snippet doesn't work for me. I have to set terms and condition page because the Checkbox of the privacy policy text at checkout don't appear.

    Thank you in advance.

    Best regards.

  • ampsuu replied

    Thank you. That snippet worked for me.

  •  675
    Neuron replied

    Hi,

    Glad to know that it worked ampsuu.

    Alberto, please make sure to add [terms], that will be replaced with the page.

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.