Mondu Trade Account
by Ainsley Clark 0 (0 reviews)

Mondu Trade Account

Integrates Mondu's Digital Trade Account functionality into WooCommerce, enabling customers to apply for trade accounts during checkout.

Mondu Trade Account ranks #51,965 among WordPress.org plugins with 0+ active installations, is #6,325 of 12,405 in the E-commerce category, and was last updated Jan 4, 2025. Data from WordPress.org, refreshed twice daily — see methodology.

Tested up to WP 6.7.8 (Current: 7.1.1)
v0.2.6 Current Version v0.2.6
Updated 1 year ago Last Update on 04 Jan, 2025
Refreshed 10 hours ago Last Refreshed on
#6,325 of 12,405 in E-commerce No update in over a year
View on WordPress.org
Rank
#51,965
-453 this week
Active Installs
0+
-100%
KW Avg Position
11.5
No change
Downloads
844
+1 today
Support Resolved
0%
No change
Rating
0%
Review 0 out of 5
0 (0 reviews)

Next Milestone 10

Total Progress 40%
0+ 10+
25,347
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro

Unlock Exact Install Count

See the precise estimated active installs for this plugin, calculated from real-time ranking data.

  • Exact install estimates within tiers
  • Track install growth over time
  • Milestone progress predictions
Upgrade to Pro
Need 6 more installs to reach 10+

Rank Changes

49,864 53,275 56,686 60,096 63,507 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026
49,066 54,205 59,344 64,482 69,621 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026
Current #51,965
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

0 10 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026
0 10 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

0.0
0 reviews
Overall 0%
5
0 (0%)
4
0 (0%)
3
0 (0%)
2
0 (0%)
1
0 (0%)

Frequently Asked Questions

Common questions about Mondu Trade Account

The Payment Gateway is not compatible, but the form is. See below for more details.
This plugin adds native support for allowing users to sign up to a Trade Account outside of the checkout. Perfect for CTA's or banners. Note: The user must be logged in to perform this action, as a customer ID is required when Mondu responds to the Trade Account request. Before displaying the form, ensure your users are logged in by using the WordPress is_user_logged_in() function. Block: You can add the Mondu Trade Account Form Block to the block editor, which will output a dynamic form the user can use to sign up for the Trade Account. Shortcode: If you want to programmatically output the shortcode, you can do so by placing the following code in your page template: echo do_shortcode('[mondu_trade_account_form]');
Simply go to the user's account on WordPress by navigating to Users and click on a customer. From there, you should see the following fields: uuid -> The external UUID that's been assigned from Mondu. status -> The buyer status which can be one of unknown, accepted, pending, or declined.
After the buyer authorizes the onboarding process in the hosted checkout page. Status change to accepted triggers a webhook attempt, and the email communication is sent. Status change to declined triggers a webhook, and the declined email is sent. It's recommended you still add email triggers for webhooks, as described below.
There may be times you want to style the checkout gateway with your own styles. To do this, you can either latch onto the default class name mondu-trade or provide your own using a filter. An example of this is below: /** * Adds a custom class to the Mondu Trade Account checkout gateway. * * @param string $class The existing CSS class for the Mondu Trade Account checkout gateway. * @return string The modified CSS class with the custom class name appended. */ function add_custom_mondu_trade_account_class($class) { return $class . ' my-class-name'; } add_filter('mondu_trade_account_checkout_class', 'add_custom_mondu_trade_account_class');
You can use the mondu_trade_get_buyer_status function to fetch the current status of a customer. This function will throw a MonduTradeException if the provided customer ID is invalid. Ensure to handle exceptions properly when calling this function. Parameters: - $customer_id (int): The ID of the customer whose status you want to retrieve. Returns: - string: The current Mondu Trade Account status of the customer. Throws: - MonduTradeException: If the customer ID is not valid. Example: status = mondu_trade_get_buyer_status($customer_id);
You can use the mondu_trade_get_buyer_limit function to fetch the buyer limit for a customer. This function will throw a MonduTradeException if the provided customer ID is invalid or if the buyer status is not accepted. Ensure to handle exceptions properly when calling this function. Parameters: - $customer_id (int): The ID of the customer whose buyer limit you want to retrieve. Returns: - array: An associative array containing the buyer limit details. Throws: - MonduTradeException: If the customer ID is not valid or the buyer status is not accepted. Example: $buyer_limit = mondu_trade_get_buyer_limit($customer_id); Sample Output: Array ( [purchasing_limit] => Array ( [purchasing_limit_cents] => 100000 [balance_cents] => 10000 [max_purchase_value_cents] => 90000 [max_collections_state] => no ) )
There are 4 different actions you can latch onto when Mondu replies with an update after a customer has applied for a Digital Trade Account. Below is a list of available actions. Actions: - mondu_trade_buyer_webhook_received - mondu_trade_buyer_accepted - mondu_trade_buyer_pending - mondu_trade_buyer_declined Example Payload: { "topic": "buyer/{TOPIC_NAME}", "buyer": { "uuid": "66e8d234-23b5-1125-9592-d7390f20g01c", "state": "accepted", "external_reference_id": "DE-1-1000745773", "company_name": "2023-02-07T15:14:22.301Z", "first_name": "John", "last_name": "Smith" } } Example for mondu_trade_buyer_accepted: add_action('mondu_trade_buyer_accepted', function ($customer_id, $buyer) { // Handle accepted status });

Sign In / Register

You need to sign in or register to use this feature.