• Resolved megavip1

    (@megavip1)


    What other way can you transfer money if you don’t know the email you need for buddypress?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Subrata Mal

    (@subratamal)

    @megavip1 We have filter to change user search in the transfer form.

    Thread Starter megavip1

    (@megavip1)

    An additional plugin?

    @subratamal How To transfair using username only?

    Plugin Author Subrata Mal

    (@subratamal)

    @wesellhost You can use the attached code in theme functions.php file for this.

    add_filter( 'woo_wallet_user_search_by', 'woo_wallet_user_search_by_callback', 10, 1 );
    if ( ! function_exists( 'woo_wallet_user_search_by_callback' ) ) {
    	function woo_wallet_user_search_by_callback( $search_by ) {
    		$search_by = 'login';
    		return $search_by;
    	}
    }
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Money transfer between users’ is closed to new replies.