Home / Admin / WP Simple Pay: Reduce Currency Minimum Amount
Duplicate Snippet

Embed Snippet on Your Site

WP Simple Pay: Reduce Currency Minimum Amount

The minimum amount is $0.50 US or equivalent in charge currency. WP Simple Pay uses $1.00 US by default.

Code Preview
php
<?php
/**
 * @link https://library.wpcode.com/editor/rodjwgom/
 */
add_filter(
	'simpay_global_minimum_amount',
	/**
	 * @param float $minimum_amount
	 */
	function( $minimum_amount ) {
		return 0.50;
	}
);
	

Comments

Add a Comment