Stripe error in the 1.0.4 update

MultivendorX Pro

Resolved
Viewing 20 reply threads
  • Author
    Posts
    • #185207
      MaxenceTP
      Participant

      Hello,
      I’m using the stripe module and I have an error on all the pages of the site since the last update:
      Warning: Undefined variable $payment_after_checkout in /var/www/development/wp-content/plugins/mvx-pro/modules/stripe-marketplace/classes/class-mvx-stripe-marketplace.php on line 472

      It is obviously no longer possible to pay on my site, the menu loads continuously: https://prnt.sc/H9jvj8vxxMPc

      By the way, how can I change the text of “Giropay Payments” and “Process Giropay Payments”?

      Thanks

    • #185208
      MaxenceTP
      Participant
      This reply has been marked as private.
    • #185259

      Hi,
      We have fix this issue on your development site kindly check this and let us know.
      Checkout this image https://prnt.sc/HLBHrEHnlRZg

      To fix this issue to your main site. download the mvx-pro plugin from your development site and add this to your main site.
      We will fix this in our next update.

      Regards,

    • #187319

      Hi @maxencetp,
      Please let us know if this issue fix, So we will add the code to fix the plugin.

      Regards,

    • #187537
      MaxenceTP
      Participant

      When I make a payment with Giropay, I get this error:
      Warning: Undefined array key “stripe_source” in /var/www/developpement/wp-content/plugins/mvx-pro/modules/stripe-marketplace/classes/class-mvx-stripe-marketplace-payment-method.php on line 2159
      Warning: Undefined array key “stripe_token” in /var/www/developpement/wp-content/plugins/mvx-pro/modules/stripe-marketplace/classes/class-mvx-stripe-marketplace-payment-method.php on line 2160

      Otherwise it looks good

    • #187592

      Hi,
      Thank you for your reply.
      We are looking into this. Kindly provide us some time.

      Regards,

    • #187735
      MaxenceTP
      Participant

      Also is it normal that in Woocommerce->Settings->Payments stripe is not visible?
      Here is a picture: https://prnt.sc/TaYxSAWzKXdE

      How can I change the name?

    • #187736
      MaxenceTP
      Participant

      Dans le checkout le “Stripe” n’est pas affiché correctement par rapport au bouton (pour les autres moyens de paiement c’est bon) : https://prnt.sc/hRXbASpMyPcB

      Et comment mettre “Stripe” en premier, puis “Bancontact” etc?

    • #187737
      MaxenceTP
      Participant

      Sorry, in English:

      In the checkout the “Stripe” is not displayed correctly in relation to the button (for the other payment methods it’s fine): https://prnt.sc/hRXbASpMyPcB

      And how to put “Stripe” first, then “Bancontact” etc?

    • #188093

      Hi,
      We have fix the giropay issue. Kindly checkout the video – https://gdskavr9sw.vmaker.com/record/uAIGBh10KhsQ42mY
      Please test every possible way the amount commission etc and let us know.

      We also fix this stripe css issue by adding custom code to your function.php

      add_action('wp_head', 'csutom_css_fix');
      function csutom_css_fix(){ ?>
      <style>
      	.woocommerce-checkout #payment input#payment_method_mvx-stripe-marketplace {
      		position: unset!important;
      	}
      </style>
      <?php
      }
      Copy

      will fix this css issue if this issue from our end.

      >> And how to put “Stripe” first, then “Bancontact” etc?

      We did not add this by sequentially wise so its difficult for us to show is sequentially.

      Regards,

    • #188302
      MaxenceTP
      Participant

      >> We did not add this by sequentially wise so its difficult for us to show is sequentially.
      I didn’t really understand what you said :'(

      Can you add it in Woocommerce->Settings->Payments so that we can change the payment method settings?
      https://prnt.sc/TaYxSAWzKXdE

    • #189191

      HI,
      Both are different settings. We can’t show this in Woocommerce->Settings->Payments. Let me know whet did you want to change.

    • #189193
      MaxenceTP
      Participant

      I want to change the position of Stripe to be the first mean of payment, and change the name of the payment method from “Stripe” to “Credit card”

    • #189198

      Our team is looking into this.

      Kindly provide them some time.

    • #189251

      Hi,
      using below code we have change the position kindly check – https://prnt.sc/GDBdqiNSttyD

      add_filter( 'woocommerce_available_payment_gateways', 'mvx_gateway_position_change' );
        
      function mvx_gateway_position_change( $available_gateways ) {
         $newavailable_gateways = array_merge(array_splice($available_gateways, -1), $available_gateways);
         return $newavailable_gateways;
      }
      Copy

      You can change the stripe Text from our setting page. MultivendorX >> Payments >> Stripe Connect

      https://prnt.sc/jkbSGp6vjN0E

      Regards,

    • #189540
      MaxenceTP
      Participant

      Thank you it works !

      Also can I remove some of the icons here : https://prnt.sc/4kLI8qiR6YtO ?

    • #189573

      Hi, the team will provide css for this

    • #189595

      Hi,
      To remove we added custom css on your function.php

      add_action('wp_head', 'remove_card_css_fix');
      function remove_card_css_fix(){ ?>
      <style>
      	img.stripe-jcb-icon.stripe-icon, img.stripe-diners-icon.stripe-icon, img.stripe-discover-icon.stripe-icon, img.stripe-amex-icon.stripe-icon {
          	display: none;
      	}
      </style>
      <?php
      }
      Copy

      Checkout image – https://prnt.sc/yIED8hFJg22P

      Regards,

    • #189632
      MaxenceTP
      Participant

      Thank you, solved

    • #189649

      Thanks for the update . It would be really great if you can give us 5/5 review here: https://wordpress.org/support/plugin/dc-woocommerce-multi-vendor/reviews/#new-post
      This would motivate the team further to do their job more efficiently.

    • #193381

      We are closing this thread as the issue is solved. But if you need any help, please open a new thread.

Viewing 20 reply threads

The topic ‘Stripe error in the 1.0.4 update’ is closed to new replies.