Banner Logo

Be a part of the family: Connect, Receive Support,
Contribute, and Reap Abundant Rewards!

Stripe Payout Description

WCMp Core

Resolved
Viewing 18 reply threads
  • Author
    Posts
    • #123178
      redilson
      Participant

      Hi WCMP team,

      When commissions are paid out to vendors via Stripe, the description is a long ID and doesn’t reference the sub order or the website. This makes it very confusing for vendors as they don’t have an easy way to figure out what order the transfer was for.

      Is there a way to add the Site Name and Sub Order # to the transfer? I’ll attach an image.

    • #123179
      redilson
      Participant
      This reply has been marked as private.
    • #123260

      Hi,
      Are you using wcmp schedule payment( free ) or wcmp stripe marketplace addon to transfer data??. If wcmp stripe then is it sca enable or disabled ( direct, charge and transfer .. ). Can you please explain.

    • #123262
      redilson
      Participant

      Using the free/included WCMP Stripe schedule payment to vendors.

    • #123320

      Hi,
      In the case of the WCMp plugin ( free ), we don’t add any description. So default description passed. We are checking the code and will add a description filed support as well as a filter (third-party modification ) so that anyone can change as per the requirement. We will enhance this in our future updates.
      Thanks for your suggestion.

    • #123345
      redilson
      Participant

      That will be great, thank you. Vendors will appreciate it!

    • #123358

      You are welcome, Redilson.

    • #124080
      redilson
      Participant

      Before closing this thread, any estimate on timeline for this?

    • #124098

      we will bring this in our next update !!!

    • #125108
      redilson
      Participant

      Hello,

      I believe I saw this in the latest update, but I’m not seeing anywhere to enter in the description for the payout…can you provide some info on how to do that? Thank you.

    • #125176

      @redilson, let me check with the developer.
      Kindly provide us some time.

    • #125268

      @redilson, the vendor can see the description in their own stripe account.

    • #125328
      redilson
      Participant

      Are we not able to adjust what the description says? I haven’t updated to the latest version on a live site yet as I was looking for this before I did. Does it just say the sub order number on the vendor side in their Stripe account?

    • #125359

      Hi @redilson , thanks for connecting with us .
      After paying the commission you can see the transaction details on your stripe account.
      ( see this screenshot: https://scrnli.com/EW3KPqnWkIQsuW )

    • #125564
      redilson
      Participant

      Hello, thanks for the assistance. The image you shared isn’t working (404). I understand that the description will be see in the Stripe account. What I’m trying to find out what it will say though before I actually update. I don’t have a sandbox set up to test it myself.

      Does it say: “{site_name} – Order X” for example? Is there a way to set what the description says on our side?

    • #125602

      Hi,
      We have a filter for modification by developers. You can easily do this. We set descriptions like — Commissions are { commissions is } paid from {site_name}.
      Thanks

    • #126758
      redilson
      Participant

      Hi Raju,

      Thanks for the info! I was able to get updated and see that the description is there for the vendor’s transfer in their Stripe account. That’s great. However, it’s showing the Master Order number instead of the sub order, which is the only order number the vendors see and would need to match to their own account when logged in. Is it possible to put the sub order number instead?

      Also, the wording as it is doesn’t make read correctly. Right now it reads: “Commissions are [master order number] paid from {site_name}”. See the attached.

      Could it be changed to: “Commissions for order number [sub order number] paid from {site_name}”

      Thanks so much for adding this into the Payouts, vendors appreciate it already!

    • #126803

      Hi,
      That was not master order number. That was commissions numbers.
      BTW, I have modified the code. But didn’t tested. Use it in your current theme funtions.php file.

      add_filter('wcmp_stripe_description_at_paid_time', function($text, $commissions) {
          $order_ids = array();
          if ($commissions) {
              foreach ($commissions as $key => $commission_id) {
                  $order_ids[] = get_post_meta($commission_id, '_commission_order_id', true);;
              }
          }
          $text = 'Commissions for order number ' . implode(",", $order_ids) . ' paid from ' . get_bloginfo('title');
          return $text;
      }, 10, 2);
      Copy
    • #129916

      Hi, we haven’t heard back from you for a while. We presume this issue has been fixed.

      Please open another thread if you need any further help

Viewing 18 reply threads

The topic ‘Stripe Payout Description’ is closed to new replies.