• Checkout page when not logged in –

    Create an account by entering the information below. If you are a returning customer please login at the top of the page.

    Warning: implode(): Invalid arguments passed in /home3/funkydreamer/public_html/wp-content/plugins/woocommerce/includes/wc-template-functions.php on line 1953

    Account Log In
    (password box with password strength underneath)

    What is causing this and how do I fix it? I have installed the WooCommerce Checkout Manager Plugin but the error says woocommerce. I have not touched the functions.php code.

    https://funkydreamerstorytime.com/checkout/

Viewing 1 replies (of 1 total)
  • Thread Starter kayla

    (@kaylaz)

    Actually, I did change something with the functions.php code using My Custom Functions plugin. It was to change the text on free the button for free items.

    /* Enter Your Custom Functions Here */
    add_filter ('woocommerce_product_add_to_cart_text', 'custom_button_text', 40, 2 );
    add_filter ('woocommerce_single_product_add_to_cart_text', 'custom_button_text', 40, 2 );
    function custom_button_text ( $button_text, $product ) {
      $price = $product->get_price();
      if ( $price == 0 ) {
         $button_text = 'Listen Now';      
      }
      return $button_text;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Checkout Warning: Impode()’ is closed to new replies.