• Resolved Kevin Coleman

    (@kevincoleman)


    I’ve spotted an error caused by some code newly introduced in 5.8.0. class-wc-stripe-helper.php:589 and :598 have calls to in_array(), but there’s nothing in the code to assure that the args passed in will be of type array. In my case a blank string was getting passed, which threw a warning visible to site users.

    I fixed this with a (kind of terrible) shim that checks the input type and wraps it in an array if it’s a string, but I expect you may want to solve this in another way or in another place. It looks like this:

    	public static function should_load_scripts_on_product_page() {
    		$prb_locations = self::get_settings( null, 'payment_request_button_locations' ) ?? [ 'product', 'cart' ];
    		if ( getType($prb_locations) == 'string') {
    			$prb_locations = array($prb_locations);
    		}
    		if ( ! in_array( 'product', $prb_locations, true ) ) {
    			return apply_filters( 'wc_stripe_load_scripts_on_product_page_when_prbs_disabled', true );
    		}
    
    		return true;
    	}
    
    	public static function should_load_scripts_on_cart_page() {
    		$prb_locations = self::get_settings( null, 'payment_request_button_locations' ) ?? [ 'product', 'cart' ];
    		if ( getType($prb_locations) === 'string') {
    			$prb_locations = array($prb_locations);
    		}
    		if ( ! in_array( 'cart', $prb_locations, true ) ) {
    			return apply_filters( 'wc_stripe_load_scripts_on_cart_page_when_prbs_disabled', true );
    		}
    
    		return true;
    	}
    

    I realize it’s possible this is a conflict between my theme (Go) and the plugin, but for what it’s worth there may be many other themes out there with similar issues. Adding the resiliency to the plugin might not hurt. This is one of those cases where using a strongly-typed language would have helped! Oh, PHP.

    Of course, I can keep shimming the solution for now (I’ll disable auto-updates for the time being), but I’d love to be able to just use the vanilla plugin without worrying.

    I listed the page that brought this to my attention here on the report, but of course I’ve shimmed it so you won’t see the warning now. The warning read as such:

    Warning: in_array() expects parameter 2 to be array, string given in /home/kevincoleman/kevoceramics.com/wp-content/plugins/woocommerce-gateway-stripe/includes/class-wc-stripe-helper.php on line 590

    Thanks for taking a look at this.

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi Kevin,

    Thank you for contacting us and reporting this issue.

    I wasn’t able to track a lot of similar issues with this error so far and this kind of problem is usually caused by a conflict with your theme or with another plugin.

    Are you able to try a full conflict test?

    The best way to determine this is to:

    • Temporarily switch your theme to Storefront
    • Disable all plugins except for WooCommerce and Stripe
    • Repeat the action that is causing the problem

    If you’re not seeing the same problem after completing the conflict test, then you know the problem was with the plugins and/or theme you deactivated. To figure out which plugin is causing the problem, reactivate your other plugins one by one, testing after each, until you find the one causing conflict. You can find a more detailed explanation on how to do a conflict test here.`

    Thread Starter Kevin Coleman

    (@kevincoleman)

    Hi Felipe,

    Looks like there’s already another recent report of it here: https://wordpress.org/support/topic/error-en-la-linea-589/

    And one here:
    https://wordpress.org/support/topic/warning-in_array-expects-parameter-2-to-be-array-string-given-in-2/

    I get that there’s a whole testing flow that is centered around testing the bug on Storefront, but frankly in this case it’s pretty clear that with a simple amount of type checking/validation the plugin could be more resilient. The variable that is being populated with string | array type is coming from the payment_request_buttons_locations setting, so it’s looking pretty likely there just need to be some controls on handling types.

    Could we blame this on a theme? Maybe. Could we very easily make the plugin more resilient anyway? Definitely.

    If you need me to jump through the hoops of testing with Storefront I’ll set up a local site. I suspect it’ll work with Storefront—but stop for a second and think about the nature of the problem at hand. I think you’ll find it’s just a bit better to lean on the side of plugin resiliency anyway.

    • This reply was modified 2 years, 8 months ago by Kevin Coleman.
    Thread Starter Kevin Coleman

    (@kevincoleman)

    I noticed there was more forward progress on 5.8.1 since 5.8.0 in this area, so I went ahead and made a PR that reformats the implementation appropriately.

    https://github.com/woocommerce/woocommerce-gateway-stripe/pull/2191

    Hi!

    Thanks for replying to let us know about what you see and that you have submitted a pull request in the GitHub repo. From this support channel we cannot address the customization of the Stripe plugin. But your submission to GitHub should meet your needs in trying to make the plugin more resilient.

    I do recommend testing with Storefront as well. If the issue does resolve you should also work with the developers for your site’s theme for help on that part of things. I hope this helps!

    Thread Starter Kevin Coleman

    (@kevincoleman)

    Much appreciated!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘New 5.8.0 bug on single product pages’ is closed to new replies.