Skip to content

Commit

Permalink
B2B marketplace (#85)
Browse files Browse the repository at this point in the history
* added a filter for B2B market plugin

* version bump
  • Loading branch information
tikohov20 authored Jun 27, 2023
1 parent d3df247 commit 22e43a3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: mondu-ai, arthurmmoreira, tikohov20
Tags: mondu, woocommerce, e-commerce, ecommerce, store, sales, sell, woo, woo commerce, shop, cart, shopping cart, sell online, checkout, payment, payments, bnpl, b2b
Requires at least: 5.9.0
Tested up to: 6.2.2
Stable tag: 1.3.3
Stable tag: 1.3.4
Requires PHP: 7.4
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Expand Down Expand Up @@ -57,6 +57,10 @@ Check out [Frequently Asked Questions](https://www.mondu.ai/faq) in the Mondu we

== Changelog ==

= 1.3.4 =

* Changes for B2B market plugin compatibility

= 1.3.3 =

* Changes on plugin to update to the WordPress marketplace
Expand Down
4 changes: 4 additions & 0 deletions src/Mondu/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,10 @@ public function init() {
add_action('wpo_wcpdf_meta_box_after_document_data', [ $this, 'wcpdf_add_status_to_invoice_admin_when_invoice_is_canceled' ], 10, 2);
add_action('wpo_wcpdf_reload_text_domains', [ $this, 'wcpdf_add_mondu_payment_language_switch' ], 10, 1);
}

if ( class_exists('BM') ) {
add_filter( 'bm_filter_price', '__return_false' );
}
}

public function load_textdomain() {
Expand Down
2 changes: 1 addition & 1 deletion woocommerce-mondu.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
die('Direct access not allowed');
}

define('MONDU_PLUGIN_VERSION', '1.3.3');
define('MONDU_PLUGIN_VERSION', '1.3.4');
define('MONDU_PLUGIN_FILE', __FILE__);
define('MONDU_PLUGIN_PATH', __DIR__);
define('MONDU_PLUGIN_BASENAME', plugin_basename(MONDU_PLUGIN_FILE));
Expand Down

0 comments on commit 22e43a3

Please sign in to comment.