Hi @mamiku
I think that if you wnt to manually pay commission, you can use the same field to ask for different informations
All you have to do is overwrite dashboard-settings.php template, copying it from wp-content/plugins/yith-woocommerce-affiliates/templates/shortcodes/ and pasting it under wp-content/themes/<your theme or child folder>/woocommerce/yith-wcaf/shortcodes/
In you brand new file, then, change the field and labels, to match your requirements (don’t forget to keep the same name attribute, anyway)
Finally, add this little snippet of php code at the end of your template
<?php
if( ! empty( $_REQUEST['payment_email'] ) ){
$payment_email = trim( $_REQUEST['payment_email'] );
YITH_WCAF_Affiliate_Handler()->update( $affiliate['ID'], array( 'payment_email' => $payment_email ) );
$change = true;
}
?>
(This is required to save submitted data, eve if it doesn’t pass default email validation)
Hope this helps
Have a nice day