• Resolved squeechums

    (@squeechums)


    Just installed this plugin and it’s awesome. I just have 2 questions that are hopefully easy ones πŸ™‚

    1.) Is there a way to make it so users don’t have to register for an account to place a bid? This is going to be a catholic festival (online-only) for silent auctions, raffles, etc. – A lot of our church members are older and less-technical. Would rather they not have to create an account to place a silent bid.

    2.) Can I change the text on the bid button? Right now it says “Custom Bid” – Can I change that to just “Place bid” when the enter the amount they’re bidding?

    Thank you very much!

    PJ

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

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

    (@nitesh_singh)

    Hi @squeechums ,

    Apologies for delayed reply. We normally are notified by forum of new questions but seems these notifications came to wrong email section and we missed replying them.

    Below are point wise reply:

    1. No, sorry but visitor has to register to place a bid.

    2. You can change it using below code:

    add_filter('ultimate_woocommerce_auction_bid_button_text',  'your_function_name_here', 10, 2);
    function your_function_name_here($button_text, $product){
    	/* to change text of directly bid button */
    	if (strtolower($button_text) == "directly bid"){
    		$new_button_text =  __( 'directly bid', 'woo_ua' );
    		return $new_button_text;
    	}
    	/* to change text of custom bid button */
    	if (strtolower($button_text) == "custom bid"){
    	$new_button_text =  __( 'Place Bid', 'woo_ua' );
    	return $new_button_text;
    	}
    	return $button_text;
    }

    Regards,
    Nitesh

Viewing 1 replies (of 1 total)

The topic ‘2 Questions’ is closed to new replies.