Ultimate Auction for WooCommerce - Excellent WP Auction Plugin
Ultimate Auction is an excellent WP Auction plugin to auction your Art, Vehicle, Painting, Collectibles, Stamp, Real Estate, Car, KOI, Horse etc.
Next Milestone 3K
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Rank Changes
Downloads Growth
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
Tracked Keywords
Showing 5 of 5| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| bids | 1 | — | Tag | 18 hours ago |
| auction | 3 | — | Tag | 18 hours ago |
| woocommerce auction | 3 | — | Tag | 18 hours ago |
| woocommerce auction plugin | 3 | — | Tag | 18 hours ago |
| bidding | 7 | — | Tag | 18 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Support Threads Overview
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- trunk
- Last Updated
- Dec 30, 2025
- Requires WP
- 5.5+
- Tested Up To
- 6.9
- PHP Version
- 7.0 or higher
- Author
- Nitesh Singh
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 4.7
- Reviews
- 125
- Support Threads
- 1
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about Ultimate Auction for WooCommerce - Excellent WP Auction Plugin
[uwa_new_auctions days_when_added="10" columns="4" orderby="date" order="desc/asc" show_expired="yes/no"]
Field details:
days_when_added = Only display 10 days auctions on creation date..
columns = Default woocommerce
orderby = Default woocommerce
order = Default woocommerce
show_expired = Default is yes. if we select "no" then expired auction will not be displayed.
What Hooks are available for this plugin
1) If you are going to add some custom text before "Bidding Form",this hook should help you.
ultimate_woocommerce_auction_before_bid_form
Example of usage this hook
add_action( 'ultimate_woocommerce_auction_before_bid_form', 'here_your_function_name');
function here_your_function_name()
{
echo 'Some custom text here';
}
2) If you are going to add some custom text after "Bidding Form",this hook should help you.
ultimate_woocommerce_auction_after_bid_form
Example of usage this hook
add_action( 'ultimate_woocommerce_auction_after_bid_form', 'here_your_function_name');
function here_your_function_name() {
echo 'Some custom text here';
}
3) If you are going to add some custom text before "Bidding Button",this hook should help you.
ultimate_woocommerce_auction_before_bid_button
Example of usage this hook
add_action( 'ultimate_woocommerce_auction_before_bid_button', 'here_your_function_name');
function here_your_function_name() {
echo 'Some custom text here';
}
4) If you are going to add some custom text after "Bidding Button",this hook should help you.
ultimate_woocommerce_auction_after_bid_button
Example of usage this hook
add_action( 'ultimate_woocommerce_auction_after_bid_button', 'here_your_function_name');
function here_your_function_name() {
echo 'Some custom text here';
}
5)You can use this hook while auction is closing
ultimate_woocommerce_auction_close
add_action( 'ultimate_woocommerce_auction_close', 'here_your_function_name', 50 );
function here_your_function_name($auction_id) {
$product = wc_get_product($auction_id);
//Your Custom Code here
}
6) You can use this hook while admin deletes bid.
ultimate_woocommerce_auction_delete_bid
add_action( 'ultimate_woocommerce_auction_delete_bid', 'here_your_function_name', 50 );
function here_your_function_name($auction_id) {
$product = wc_get_product($auction_id);
//Your Custom Code here
}
add_filter('ultimate_woocommerce_auction_product_condition', 'here_your_function_name' );
function here_your_function_name( $array ){
/*
Exiting array keys. 1)new 2)used
*/
$array['new']='New2';
$array['used']='Used2';
/*
You can Add New Condition to Auction Product Like below.
*/
$arr2 = array('new_factory' => 'Factory Sealed Packaging');
$arr3 = array('vintage' => 'Vintage');
$arr4 = array('appears_new' => 'Appears New');
$array = $array + $arr2 + $arr3 + $arr4;
return $array;
}
2) Bid Button Text
ultimate_woocommerce_auction_bid_button_text
function here_your_function_name(){
return __('Button Text', 'ultimate-woocommerce-auction');
}
3) Heading for Total Bids
ultimate_woocommerce_auction_total_bids_heading
add_filter('ultimate_woocommerce_auction_total_bids_heading', 'here_your_function_name1' );
function here_your_function_name1(){
return __('Total Bids Placed:', 'ultimate-woocommerce-auction');
}
4) Pay Now Button
ultimate_woocommerce_auction_pay_now_button_text
add_filter('ultimate_woocommerce_auction_pay_now_button_text', 'here_your_function_name' );
function here_your_function_name(){
return __('Pay Now Text', 'ultimate-woocommerce-auction');
}