How to add Currency in Parcel Quotation add on plugin

To add currency for the Parcel Quotation Add on plugin is very simple. Just use the “wpcpq_currency_country” filter. this filter has one arguments “$currency”.

// In this sample code in adding Algerian Dinar currency.
add_filter('wpcpq_currency_country', function( $currency ){
	$currency['DZD'] = 'Algerian Dinar (دج)';
	return $currency;
},10, 1);
0
    0
    Your Cart
    Your cart is emptyReturn to Shop