• Hi..my country its not so good with paypal.. i need to change the paypal to other peyment method.. like bitcoin, just change the paypal payment email to bitcoin wallet address.

    Please help me to do this..

    Thanks and best regard.

Viewing 1 replies (of 1 total)
  • Plugin Author YITHEMES

    (@yithemes)

    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

Viewing 1 replies (of 1 total)
  • The topic ‘Change Payment Method’ is closed to new replies.