• Resolved justano

    (@justano)


    I asked few months ago about how to change “Bank Account Details” title to something else.
    You replied that you’d be adding a filter in the next release of myCred so I would be able to change the title.
    Is it available now?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi @justano,

    Thank you for contacting us, Please use the updated plugin version 2.4.1

    Thread Starter justano

    (@justano)

    I do, I want to change the title of the withdrawal form but can’t figure out how, could you help?

    @justano,

    add_filter( 'mycred_cashcred_bank_transfer_title', 'mycred_cashcred_bank_transfer_title_filter' );
    
    if( !function_exists( 'mycred_cashcred_bank_transfer_title_filter' ) ):
    function mycred_cashcred_bank_transfer_title_filter( $text )
    {
    	//You can change below text
    	$text = 'My Bank';
    
    	return $text;
    }
    endif;

    By using this code you can modify the text.

    Thread Starter justano

    (@justano)

    Thank you

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Edit Withdrawal Form Title’ is closed to new replies.