• Resolved jmvhout

    (@jmvhout)


    Mollie doesn’t shows up on mobile. There are no payment options at al.
    The plugin is up to date. (Link maybe doesn’t work if you don’t have anything in your card.)
    I tried to disable payment options outside Mollie but with no results.
    I work with elementor but this disabled on this page.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Syde Niklas

    (@niklasinpsyde)

    Hi @jmvhout,

    The Payment methods in your checkout will only show up after a valid billing country has been selected. This works on both desktop and mobile on your site for me.
    Currently, your billing country field is empty by default, but if you change it for example to NL, then the payment methods will show up immediately.
    The default state of the field can be modified by adding this filter to your child theme’s functions.php file:

    /**
     * Change the default country on the checkout page
     */
    add_filter( 'default_checkout_billing_country', 'change_default_checkout_country' );
    
    function change_default_checkout_country() {
      return 'XX'; // country code, e.g.: 'NL'
    }

    Kind regards,
    Niklas

    Thread Starter jmvhout

    (@jmvhout)

    Oke strange, I changed to settings to default Netherlands and that fixed the problem. Didn’t need to change the functions.php file. Strange I still see other payments but not Mollie if I don’t set a country.

    But problam solved, thanks.

    Plugin Support Syde Niklas

    (@niklasinpsyde)

    Hi @jmvhout,

    Oke strange, I changed to settings to default Netherlands and that fixed the problem. Didn’t need to change the functions.php file.

    I forgot about the “Default customer location” setting in WooCommerce, which basically achieves the same result in your case.

    Strange I still see other payments but not Mollie if I don’t set a country.

    In version 5.11 and newer, we had to add a check to the checkout fields because some sites were sending incorrect information to the Mollie API.
    To prevent this from happening, the payment methods will be hidden when an empty or invalid billing country is selected. So this is intentional behavior.

    Kind regards,
    Niklas

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Not working on phone’ is closed to new replies.