• Resolved kpetz

    (@kpetz)


    Hi there, I’m thankful for this plugin and I really appreciate it. Actually I need to show bidder’s name in each auction I uploaded. Is it possible to reeplace those symbols “*******” for their client’s name.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @kpetz,

    Please change the below code in the auction plugin.

    Go to Ultimate WooCommerce Auction plugin -> includes -> uwa-misc-functions.php
    Find the uwa_user_display_name function in this file and replace this function with the below code. It will display the username in the bid history table.

    function uwa_user_display_name($user_id) {
    		
    	 $uwa_bid_display_username = get_option('uwa_bid_display_username');
    	 $uwa_disable_display_user_name = get_user_meta($user_id, 'uwa_disable_display_user_name', true);
    	 $c_user_id = get_current_user_id();	 
             $user_name = get_userdata($user_id)->display_name;	
    	 return $user_name;		
    		
    }

    Thank You

    Plugin Author Nitesh

    (@nitesh_singh)

    Hi @payalrajyaguru ,

    Thanks for suggesting the code.

    @kpetz ,

    We will remove this masking code and will modify to show the username by default. This will be done in the next plugin update. If anyone need’s masking feature then its implementation is available in our PRO version.

    @kpetz , Thank you for your nice appreciation. Please do take out some time to review our plugin here – https://www.ads-software.com/plugins/ultimate-woocommerce-auction/#reviews. It really helps our team’s motivation and keeps working towards future updates and provides best possible support.

    Regards,
    Nitesh

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Can’t see bidder’s name in auction product’ is closed to new replies.