• Resolved palomnik

    (@palomnik)


    I’m trying to set up woocommerce with the subscriptio plugin.

    I am getting this error on the home page:

    Notice: wc_checkout_params is deprecated since version 3.5.4! Use woocommerce_get_script_data instead. in /home/admin/public_html/wp-includes/functions.php on line 4174

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Support con

    (@conschneider)

    Engineer

    Hi there,

    Notice: wc_checkout_params is deprecated since version 3.5.4! Use woocommerce_get_script_data instead. in /home/admin/public_html/wp-includes/functions.php on line 4174

    This is a (benign) PHP warning which should not hinder any code execution. You can turn these off by editing your wp-config.php

    Add this:

    // Enable WP_DEBUG mode
    define( 'WP_DEBUG', false );
    
    // Enable Debug logging to the /wp-content/debug.log file
    define( 'WP_DEBUG_LOG', false );
    
    // Disable display of errors and warnings 
    define( 'WP_DEBUG_DISPLAY', false );
    @ini_set( 'display_errors', 0 );
    

    I am marking this as resolved, but feel free to follow up or open a new thread anytime.

    Kind regards,

Viewing 1 replies (of 1 total)
  • The topic ‘woocommerce error’ is closed to new replies.