خودم یافتم..این کد رو بزارید توی کیوشن قالبتون
if( class_exists( 'Affiliate_WP' ) ) {
function affwp_custom_add_currency( $currencies ) {
$currencies['تومان'] = 'تومان';
$currencies['ريال'] = 'ريال ايران';
return $currencies;
}
add_filter( 'affwp_currencies', 'affwp_custom_add_currency' );
}