WooCommerce Simple Auctions v3.0.9 Released

We’ve just released version 3.0.9 of WooCommerce Simple Auctions, with several fixes.

Fixed

  • “Auction closing soon” email template
  • Stripe auto-charge compatibility
  • Translations
  • “Buy Now” winner

Manual updating can be done by downloading new version of plugin and overwrite old files with new ones or deleting old plugin and installing new one.

Full change log can be found here

You can buy WooCommerce Simple Auctions or its add-ons (Seated Auctions, Buy Bid Credits, and Role Base Bidding) in WPGenie’s Store.

New Plugin: PayPro Global Payment Gateway for WooCommerce

Connect your WooCommerce store to PayPro Global and let a Merchant of Record handle global payments, taxes, and compliance for you

We just released PayPro Global Payment Gateway for WooCommerce, a new plugin that lets your store accept payments through PayPro Global, a global payment platform and Merchant of Record built for selling SaaS, software, and video games.

If you sell digital goods, you’ve probably encountered some of these common issues: collecting and remitting VAT and sales tax across dozens of jurisdictions, handling chargebacks, or offering local payment methods your customers trust. PayPro Global acts as the Merchant of Record, which means they take all of that on themselves.

Our plugin is the bridge that connects PayPro Global to your WooCommerce checkout.

How It Works

The plugin adds a new payment gateway type to WooCommerce. Here’s how it works:

  1. The customer fills in the WooCommerce checkout and clicks “Place Order”.
  2. They’re redirected to the PayPro Global hosted checkout page, pre-filled with their billing details.
  3. After payment, PayPro Global sends an IPN (Instant Payment Notification) back to your store.
  4. The plugin verifies the IPN signature and updates the order status automatically.

You also get a test and debug mode with logging, so you can confirm everything works before going live, and free setup by our support team if you’d rather not configure it yourself.

Pricing

You can get PayPro Global Payment Gateway for WooCommerce for $50. The price includes 1 year of updates and support for 1 domain / website.

If you’re a web developer building for clients, contact us for a coupon code.

How to Add a YouTube Video to WooCommerce Product Pages (Without a Plugin)

Adding a YouTube video to your WooCommerce product pages can significantly boost engagement, improve conversion rates, and help customers better understand your product, ultimately reducing costly returns.

There are several dedicated plugins that let you add YouTube videos to your product pages. But if you want to avoid adding one more plugin to your WordPress site (and that means: another plugin to keep updated, extra scripts loading on every page, worrying if developers will maintain it), here’s another solution: use our code snippet and add it to your child theme.

What this code does:

  1. Adds a Custom Meta Box for YouTube Video ID
  2. Saves the YouTube video ID when the product is saved
  3. Hooks the YouTube video into the product summary, just below the price

We created this for ourselves and are happy to share it 😉

Why Add YouTube Videos to Product Pages?

  • Better product understanding: Customers see the product in action.
  • Higher conversion rates: Video increases trust and purchase intent.
  • Lower return rates: Buyers know exactly what they’re getting.
  • Improved SEO: Video content can increase time-on-page and ranking signals.
  • Lighter server load: Videos stream from YouTube, not your own hosting.

Before You Start: Set Up a Child Theme

This code belongs in a child theme, not your main (parent) theme. A child theme inherits everything from the parent but keeps your custom code separate, so theme updates won’t wipe it.

You need:

  • A base (parent) theme like Storefront (or Avada, Divi, or any WooCommerce-compatible theme works)
  • A new folder at /wp-content/themes/mycustomtheme/ with its own style.css and functions.php

Check our article: Using code snippets and template customizations in child theme

Step 2: Paste the Snippet

Add this at the very bottom of the file, after the last line, and then update file.

/**
 * Simple Add YouTube Video to WooCommerce Product
 * https://wpgenie.org
 * this code snippet goes to themes\child-theme\functions.php
*/
 

add_action( 'add_meta_boxes', 'add_wc_youtube_video_meta_box' );
function add_wc_youtube_video_meta_box() {
    add_meta_box(
        'wc_youtube_product_video',
        __( 'Product YouTube Video', 'woocommerce' ),
        'render_wc_youtube_video_meta_box',
        'product',
        'side', // Places it in the sidebar near the Product Gallery
        'low'
    );
}
 
 
function render_wc_youtube_video_meta_box( $post ) {
 
    $video_id = get_post_meta( $post->ID, '_product_youtube_id', true );
    wp_nonce_field( 'save_wc_youtube_video_meta', 'wc_youtube_video_nonce' );
    
    echo '<p><label for="product_youtube_id"><strong>' . __( 'YouTube Video ID:', 'woocommerce' ) . '</strong></label></p>';
    echo '<input type="text" id="product_youtube_id" name="product_youtube_id" value="' . esc_attr( $video_id ) . '" style="width:100%; padding: 6px;" placeholder="e.g., dQw4w9WgXcQ" />';
    echo '<p class="description">' . __( 'Paste only the 11-character video ID (the part after "v=" in the URL).', 'woocommerce' ) . '</p>';
}
 

add_action( 'woocommerce_process_product_meta', 'save_wc_youtube_video_meta' );
function save_wc_youtube_video_meta( $post_id ) {
 
    if ( ! isset( $_POST['wc_youtube_video_nonce'] ) || ! wp_verify_nonce( $_POST['wc_youtube_video_nonce'], 'save_wc_youtube_video_meta' ) ) {
        return;
    }
 
    if ( isset( $_POST['product_youtube_id'] ) ) {
        $video_id = sanitize_text_field( $_POST['product_youtube_id'] );
        update_post_meta( $post_id, '_product_youtube_id', $video_id );
    }
}
 
/**
 * Hook: woocommerce_single_product_summary.
 *
 * @hooked woocommerce_template_single_title - 5
 * @hooked woocommerce_template_single_rating - 10
 * @hooked woocommerce_template_single_price - 10
 * @hooked woocommerce_template_single_excerpt - 20
 * @hooked woocommerce_template_single_add_to_cart - 30
 * @hooked woocommerce_template_single_meta - 40
 * @hooked woocommerce_template_single_sharing - 50
 * @hooked WC_Structured_Data::generate_product_data() - 60
 */
 
add_action( 'woocommerce_single_product_summary', 'display_youtube_video_above_gallery', 15 );
function display_youtube_video_above_gallery() {
 
    global $product;
    
    if ( ! $product ) {
        return;
    }
 
    
    $video_id = get_post_meta( $product->get_id(), '_product_youtube_id', true );
 
    
    if ( ! empty( $video_id ) ) {
        ?>
        <div class="wc-product-youtube-video-wrapper" style="margin-bottom: 20px; width: 100%; clear: both;">
            <div class="video-container" style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; border-radius: 4px; box-shadow: 0 2px 5px rgba(0,0,0,0.1);">
                <iframe 
                    src="https://www.youtube.com/embed/<?php echo esc_attr( $video_id ); ?>?rel=0" 
                    style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;" 
                    frameborder="0" 
                    allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" 
                    allowfullscreen>
                </iframe>
            </div>
        </div>
        <?php
    }
}

Note: You can also grab this snippet from our Pastebin, where we share all our code snippets: WPGenie on Pastebin.

Step 3: Add a Video to a Product

The snippet adds a new box to your product editor. Go to Products > All Products and open any product. In the right sidebar, near the Product Gallery, you’ll see a box called Product YouTube Video.

Paste only the video ID, not the full URL. The ID is the 11 characters after v= in a YouTube link. For example, in https://www.youtube.com/watch?v=TJEXlKB51M4 the ID is TJEXlKB51M4.

Drop that into the field and click Update.

Step 4: Check the Product Page

Open the product on your store. The video appears in the product summary, just below the price and above the short description.

Repeat Step 3 for any other product you want a video on.

New Plugin: Mysterx – Mystery Boxes for WooCommerce

Bring the thrill of surprise to your WooCommerce store and engage customers with a fun, gamified shopping experience

We just launched MysterX – Mystery Boxes for WooCommerce, a new plugin that brings the fun and excitement of loot boxes to your e-commerce site.

This add-on lets store owners easily create and sell virtual mystery boxes, each containing a curated selection of products. Before buying, customers can see the list of products they could get, and right after checkout they can instantly “open” the mystery box and find out what they got.

This gamified shopping experience boosts engagement through curiosity and anticipation. Surprise boxes are fun to open, and when packed with real value, they work well at clearing inventory or rewarding loyal customers.

How it Works

MysterX adds a custom ‘Mystery Box’ product type to WooCommerce. Store owners configure each box by selecting winnable products, setting stock levels per item, and defining the box price.

On frontend, customers can see the list of gift products in the box, and there’s also option to show the value (price) of each reward and winning chances.

Customers buy a surprise box and open it from My Account > Boxes, where an animated reveal shows their prize. This section also lets them track unopened boxes and view all prizes won.

For a full list of features, visit here: Mysterx – Mystery Boxes for WooCommerce – WordPress plugin | WordPress.org

Get Started Today

PRO version

The PRO version unlocks additional features for user engagement and reward control.

Opening Animation & Confetti On Win

Add game-style spinner animation for the opening and fun confetti animation when the prize is revealed.

Custom Sound Effects

Choose from built-in effects or upload your own audio for spinning, opening, rare item reveal, and legendary item reveal.

Probability & Weight Control

Set custom item weights to determine exactly how rare or common specific products are.

Premium Support

Direct access to the WPGenie ticket support system at wpgenie.org/support.

Screenshots

WooCommerce Auction Plugin: Complete Guide to Running Auctions on Your Own Website

If you think about online auctions, eBay is the first thing that comes to mind. But much has changed since the early days of eBay, from the type of merchandise offered to buyers’ preferences. Nowadays, reports show that just 12% of listings use the auction format. Auctions still shine for niches like collectibles or antiques, but even those sellers are not quite satisfied with the world’s biggest marketplace. High platform fees, no ownership over customer data, zero control over suspensions and search rankings, plus auction limitations like no anti-sniping, are the reasons why many consider an alternative: running auctions on their own website.

Although setting up an online auction site can feel overwhelming at first, with WordPress, WooCommerce, and the right auction plugin, that’s entirely achievable. Of course, that doesn’t mean there’s not a lot to get right before your marketplace can take off!

If you are thinking about running auctions on your own website, this guide covers how auction plugins work, which auction formats are available (and keep in mind, not all plugins support every auction type!), the key features that separate premium plugins from basic ones, and what it takes to run auctions that actually generate results.

What Is a WooCommerce Auction Plugin?

WooCommerce itself handles standard e-commerce: products, shopping carts, checkout, and payments. Because it has no built-in auction functionality, if you want to run auctions on your site, you need an auction plugin.

Auction plugin extends WooCommerce by adding a new product type, auction, with its own rules: start price, end date/time, bidding logic, real-time updates, and automated notifications.

When someone bids on your product, the plugin records that bid, checks it against existing bids and the reserve price if you’ve set one, and updates the current price in real time. When the auction ends, the plugin identifies the winner, sends notification emails, and (if your payment gateway supports it) can automatically charge the winner’s stored card without them needing to manually return and pay. Everything else (product descriptions, images, checkout process, order management) stays exactly as it is in standard WooCommerce. On your website, auction products can sit alongside your regular products, or, if you prefer, get their own dedicated page. You can even group related auctions into lots on a single page.

Types of Auctions You Can Run on WooCommerce

If you are looking for auction plugin, you are most certainly aware that there are different types of auctions.

Once you know what kind of auction you are going to have on your site, you can choose the appropriate plugin. Basic auction plugins handle only standard bidding, while premium plugins offer some or all of the options listed below.

Standard Auction

This is the most familiar format, the one that first comes to mind when people think about auctions. Seller sets the starting price, and buyers place increasingly higher bids. At the end of the auction, the highest bidder wins and pays that final bid price.

This kind of auction is best suited for collectibles, antiques, art, memorabilia, estate items, livestock, anything where competitive bidding between multiple interested buyers is likely to drive the price upward.

Proxy Auction (Automatic Bidding)

Proxy bidding is more of a feature layer that sits on top of standard auctions, not a separate format. With proxy bidding enabled, a buyer sets their maximum bid once. The system then automatically bids the minimum necessary increment on their behalf whenever they’re outbid, up to their stated maximum.

Proxy auction offers advantages both for buyers and for sellers. It removes the frustration of constant re-bidding, while it also tends to produce higher final prices because buyers commit their true maximum rather than gaming the system with low incremental bids.

Reverse Auction

As the name suggests, the logic of this type of auction is inverted: the lowest bid wins. This type of auction is used when someone is buying services (such as freelance work, or construction bids) rather than selling products. For example, if you need a website built, instead of paying a fixed price, you can run a reverse auction where developers compete by bidding lower prices.

This type of auction is best suited for procurement, freelance project commissioning, and bulk supply contracts. It is less common in consumer retail but genuinely useful for B2B use cases.

Sealed Bid (Silent) Auction

Bids are hidden from all participants during the auction. Each bidder submits their bid without knowing what others have offered. At the end of the auction, bids are revealed and the highest (or lowest, in a sealed reverse auction) wins.

Sealed auctions prevent bidding wars that artificially inflate prices and eliminate last-minute sniping. They’re the standard format for charity fundraising events (for example, the traditional silent auction at a gala), estate sales, and situations where the seller wants a clean, fair process without competitive bid escalation.

Penny Auction

A penny auction is a format where each bid increases the price by a very small fixed amount (for example, one cent) but requires bidders to pay a fee for every bid they place. Each new bid also resets a short countdown timer, extending the auction and encouraging continued participation. While the final price of the item may remain low, the total revenue comes from the accumulated bidding fees.
This type of auction is best suited for consumer-facing platforms focused on entertainment and high engagement. It is less about efficient price discovery and more about gamification, making it controversial and less common in traditional commerce.

Private Auction

A private auction restricts participation to a selected group of invited or approved bidders rather than the general public. The auction mechanics can follow standard or other formats, but access is controlled to ensure confidentiality, exclusivity, or qualification of participants. This is often used when sensitive assets or high-value items are involved.
This type of auction is best suited for high-value transactions, B2B deals, and situations where the seller wants to limit visibility or ensure that only serious, pre-qualified bidders take part. It is less common in open marketplaces but widely used in specialized and professional contexts.

As a seller, you need to start by matching the auction format to your product typeinventory goalsbuyer behavior, and revenue targets

This table can help you with that:

Auction Goal Questions to Ask Best Auction Types
Maximize price High-demand items? Collectibles or antiques? Standard/English (ascending bids, highest wins) or Proxy (auto-bids to your max)
Quick sale Perishables or bulk? Time-sensitive? Reverse (price drops until bought) or Sealed bid (one-shot private bids)
Minimize price Services or sourcing (e.g. freelancers)? Reverse (lowest bid wins)
Excitement & engagement Niche communities? Subscriptions tie-in? Silent (hidden bids for suspense) or Penny (low-increment fun bids)
Unique or private Invite-only? High-value? Private (restricted bidders only)

Must-Have Features in a WooCommerce Auction Plugin

As previously said, WooCommerce auction plugin should support different auction types (normal, proxy, reverse, silent). But there are other essential features you may need, from countdown timers and automated email notifications to AJAX bidding. Also, you need to look for robust admin controls such as reserve prices, Buy-It-Now options, bid increment management, and automatic winner payment handling.

Here is a list of features you should consider before purchasing an auction plugin:

Reserve price

The minimum you’re willing to accept. If no bid reaches it, the auction ends without a sale.

Buy-It-Now

Lets impatient buyers skip the auction and purchase immediately at a fixed price. Configurable to disappear after the first bid or stay available throughout.

Real-time bidding

Bids update instantly for every visitor without a page refresh. Without this, buyers won’t know they’ve been outbid until they manually reload.

Anti-sniping protection

If a bid lands in the final minutes, the auction end time extends automatically, giving all legitimate bidders a fair chance to respond.

Automated winner payment

Requires bidders to store a card before bidding, then charges the winner automatically at auction close. Solves the non-paying winners problem.

Relist functionality

When auctions fail — reserve not met, winner didn’t pay, item unsold — you need to relist fast. Look for both manual and automatic relist options.

User engagement tools

Watchlist, My Auctions page, and winning badge on thumbnails — these keep buyers returning and actively participating between auctions.

Email notifications

Full set of editable templates for buyers and admins: outbid, won, payment due, relisted, ending soon. Check that ending-soon timing is configurable.

Admin reporting

Running multiple auctions at once means you need full bid history and winner reports — ideally with CSV export — to stay on top of everything.

Page builder compatibility

Check for explicit compatibility with Elementor, Gutenberg, or whatever you use. You don’t wnat the plugin breaks your layout.

Multivendor support

Building a marketplace? Check for compatibility with Dokan, WC Vendors, WCFM, or similar multivendor plugin.

Who Runs WooCommerce Auctions on Their Own?

From small shops to specialized sellers, many different types of businesses use specialized auction plugins to handle bidding on their own websites.

There are store owners who already use WooCommerce, and want to add auctions alongside regular products without moving to a marketplace like eBay. Companies sometimes run private or invite-only auctions for surplus inventory, equipment, or bulk sales to a known group of buyers. And some use auction plugins to create multi-vendor platforms where users can list and auction their own items, essentially building a niche auction marketplace.

But typically, self-hosted auctions fall into niche categories where item value is subjective or inventory is unique:

Collectible & Memorabilia Dealers

This is the most common group. Because WooCommerce allows for complete branding control, collectors prefer it over eBay to avoid high seller fees.

  • Antique Dealers: Shops selling vintage furniture or rare “one-off” finds.
  • Sports Memorabilia: Sites auctioning signed jerseys, trading cards, and historical equipment.
  • Comic & Game Shops: Used for high-value “slabbed” comics or rare Magic: The Gathering cards.

Luxury & High-End Goods

Brands that want to maintain a “premium” feel use WooCommerce auctions to keep users on their own site rather than a crowded marketplace.

  • Luxury Watch Resellers: Using “Proxy Bidding” features to manage high-stakes sales of Rolex or Patek Philippe pieces.
  • Fine Art Galleries: Independent artists or galleries use it to host timed digital or physical art auctions.
  • Classic Car Brokers: Boutique automotive sites use WooCommerce to list vintage vehicles with “Reserve Prices.”

Non-Profits & Charities

Charities often run “Silent Auctions” for fundraising events. WooCommerce is a favorite here because it integrates easily with donation plugins.

  • School Fundraisers: Auctioning off “Teacher for a Day” experiences or donated gift baskets.
  • Gala Organizers: Using the mobile-friendly interface to let attendees bid from their phones during a live event.

Specialized Niche Markets

  • Livestock & Agriculture: Surprisingly, cattle and horse breeders often use WooCommerce to auction embryos or prize animals directly to other farmers.
  • Real Estate: Boutique firms and land developers use WooCommerce for Accelerated Sales or Sealed Bid auctions. This is particularly effective for property foreclosures or quick-sale land plots where the goal is to find a buyer within a fixed timeframe.
  • Domain Flippers: Web developers often set up a simple WooCommerce site to auction off premium domain names they own.

Getting Started With Self-Hosted Auctions

Here is the essential checklist of what you need to launch a professional self-hosted auction site:

1

WordPress site with WooCommerce installed and configured

WooCommerce is free. You’ll need a hosting environment capable of running WordPress reliably.

2

Auction plugin

Choose a plugin that supports the type of auction you want to run on your website, with all the necessary features listed above.

3

Payment gateway with pre-authorization

You want a processor (like Stripe) that can verify a bidder has the funds before they bid, or at least one that saves their card on file so you can charge the winner immediately.

4

High-performance hosting

Be careful with shared hosting — the last thing you want is a cheap server that crashes in the final minutes of your auction.

Tips for Running Successful Auctions

Having the right plugin properly configured is only the part of the story. The auctions that actually generate results share a few practical characteristics that have nothing to do with settings or features. So, let’s talk about presentation and marketing.

Visuals, Descriptions and Pricing Strategy

If you ever bought or sold something online, you are probably aware that high-quality visuals and detailed descriptions are the most important thing in online sales. Same applies to auctions:  listings live or die on how well the item is presented. Even if you have the most desirable item, a blurry photo and a two-line description won’t generate competitive bidding. Buyers bidding online can’t inspect the item physically, so photos and description are all they got.

Every listing should have multiple high-quality photos from different angles, with any relevant details shown clearly. A short video can do even more: it shows the item’s condition more clearly, conveys scale and movement, and builds buyer confidence and trust. You can add a YouTube video of the auction item directly to the product page so bidders see it without leaving the listing.

Descriptions should answer the questions a serious buyer would ask: condition, dimensions, provenance, any defects. If you wouldn’t feel confident bidding on it yourself based on what you’ve written, rewrite it.

Also, do your research and be careful with starting price. If it’s set too high, it will kill early bidding momentum, and an auction sitting at zero bids discourages participation. Setting a realistic, slightly lower starting price invites early bids, which in turn attracts more bidders. Don’t forget that you have reserve price to protect the value of your item.

Auction Promotion 

An auction with no bidders is just a product with a countdown timer. Competitive bidding requires an audience, and that audience doesn’t arrive automatically. Promotion is not optional, it’s part of running auctions effectively.

Start promoting before the auction opens. Give your existing customers and followers time to notice, get interested, and plan to participate. Email your list with a preview of what’s coming up. Post on social media when the auction goes live and again when it’s ending soon. The final hours of an auction are when bidding escalates most, and a well-timed reminder at that point directly drives last-minute competition.

For specialist niches, community channels are the pillar of promotion. For example, Koi breeders have forums and Facebook groups, while collectors have subreddits and Discord. Charity auctions have mailing lists of existing donors. Find where your buyers already gather and make sure they know your auction exists.

Conclusion

Running WooCommerce auctions on your own site puts you in full control over fees, data, branding, and buyer experience. It’s no wonder that self-hosted auctions are used by thousands of businesses ranging from solo antique dealers to large livestock operations.

With the right plugin like WPGenie’s WooCommerce Simple Auctions, solid hosting, and smart promotion, you can turn unique inventory into competitive bidding wars that drive real results.

That said, self-hosted auctions are not for everyone. They require an existing audience, a willingness to maintain a WordPress site, and realistic expectations about what a plugin can and can’t do on its own. If you’ve read this far and the fit feels right, the next step is simple.

Start small: pick one auction type, nail your listings with pro visuals and low starting prices, promote early via email and niche communities, and scale from there. Self-hosted auctions aren’t just an eBay alternative, they’re your edge in niches where personalization wins.

Ready to get started? Get WooCommerce Simple Auctions in our store!

FAQ

What do I need to set up a WooCommerce auction site?

To set up a WooCommerce auction site you need four things: a WordPress site with WooCommerce installed, an auction plugin that supports the auction types you want to run, a payment gateway, and reliable hosting.

Can I run auctions alongside regular products in WooCommerce?

Yes. An auction plugin adds a new product type “auction” to WooCommerce. Auction products can sit alongside your regular products, or you can give them a dedicated page.

What are the different types of auctions?

The main auction types are: standard (highest bid wins), proxy (system bids automatically on a buyer’s behalf up to their maximum), reverse (lowest bid wins, used for services and procurement), sealed bid (bids are hidden until the auction closes), penny (buyers pay a fee per bid, final price stays low), and private (restricted to invited or approved bidders only). Not all WooCommerce auction plugins support every format, so check before purchasing.

What is proxy bidding?

Proxy bidding is a system where a buyer sets their maximum bid once, and the plugin automatically places the minimum necessary bid on their behalf whenever they are outbid, up to their stated maximum. It’s called “automatic bidding” on eBay.

What is a reserve price in an auction?

A reserve price is the minimum amount a seller is willing to accept for an item. It is set privately and is not visible to bidders. If no bid reaches the reserve price by the time the auction closes, the auction ends without a sale. It exists to protect the seller from being forced to sell below acceptable value, while still allowing a low starting price to encourage early bidding.

What is anti-sniping protection in online auctions?

Sniping is when a bidder places a winning bid in the final seconds of an auction, leaving no time for other bidders to respond. Anti-sniping protection automatically extends the auction end time when a bid is placed in the final minutes, giving all legitimate bidders a fair chance to respond.

What happens if an auction winner doesn’t pay?

Non-paying winners are a real risk in online auctions. The practical solution is choosing an auction plugin that requires bidders to store a card before bidding, then charging the winner automatically at auction end. If payment still fails, you’ll need relist functionality to quickly put the item back up for sale. For more details, read our guide on how to prevent and handle unpaid auctions.

How much does WooCommerce Simple Auctions cost?

WooCommerce Simple Auctions is a complete, feature-rich solution supporting all auction types. A regular license including 1 year of support is currently $55 in our store. Check the listing for the latest pricing and any active discounts.

Celebrating 10 Years of WooCommerce Lottery

Just a few weeks ago, we celebrated 12 years of WooCommerce Simple Auctions, the first-ever auction plugin for WooCommerce. Today, it’s time to celebrate another milestone: 10 years of WooCommerce Lottery!

On March 2nd, 2016, we released WooCommerce Lottery, the first lottery and competition plugin for WooCommerce. What started as a simple lottery extension has grown into a complete competition platform used by thousands of site owners worldwide.

Today, we’re on version 2.2.8, and together with our Pick Ticket Number addon, WooCommerce Lottery now powers professional competition sites with numbered tickets, instant wins, skill-based questions, and manual live draws.

We’ve also expanded the ecosystem around it with Spending Limits for WooCommerce for player protection, Subscription Gifts for WooCommerce for rewarding subscribers with free tickets, and Dokan Lottery Integration for multi-vendor competition marketplaces.

None of this would have been possible without our customers who trusted us from the start and helped shape every feature with their feedback and ideas. A huge thank you to all of you!

20% Off to Celebrate!

To mark 10 years, we’re offering 20% off WooCommerce Lottery on CodeCanyon and 20% off Pick Ticket Number and Dokan Lottery Integration in our store (use code LOTTERY10 at checkout).

Grab WooCommerce Lottery and its addons at anniversary pricing until March 15th!

WooCommerce Auction Winner Didn’t Pay? How to Prevent and Handle Unpaid Auctions

Non-paying auction winners are one of the biggest challenges in managing online auctions. This tutorial explains how WooCommerce Simple Auctions helps prevent non-paying bidders, and what options sellers have when a winning bidder doesn’t complete payment.

If you run WooCommerce auctions, you’ve probably encountered this kind of problem:

“At least once a week I get someone who wins a bid and then doesn’t pay. I just had a buyer who outbid someone else respond to the message by asking me questions about what item they won. They are literally acting like they don’t know what they bid on. I just don’t understand!”

Or as another seller put it:

“I’m so sick of people winning auctions and then just never paying! How do I avoid this?”

Online auctions are a great way to engage customers, create urgency, and drive higher prices through competitive bidding, but almost every seller has experienced the downside: buyers who win auctions but fail to complete payment.

Why does this happen? It could be buyer’s remorse, impulse bidding, automated bots, or even kids bidding for fun through a parent’s account. Whatever the reason, non-paying auction winners are a huge problem for many sellers.

This is why more and more sellers go with the buy-it-now option. It’s a safer alternative, but unfortunately, it’s also less profitable, since auction items typically sell for more than buy-it-now items. Not to mention that buy-it-now never reaches the same level of excitement and engagement that auctions offer.

In this tutorial, we will cover options that WooCommerce Simple Auctions plugin offers to help sellers prevent unreliable bidders from participating in auctions. We will also explain what to do when an auction ends and the winner doesn’t pay for the won item.

Prevent Unpaid Auctions

The most effective way to prevent unreliable bidders is to verify their payment method before they can place any bid. This ensures that only users with a valid, working payment method can participate in your auctions.

With WooCommerce Simple Auctions, you can do this in two ways:  you can require users to add a payment method to their account before bidding (built into Simple Auctions v3.0, works only with Stripe payment gateway), or you can require users to make an actual payment before they can participate in any auction (available through Simple Auctions addons, works with any payment gateway).

Require Users to Provide a Payment Method Before Bidding

Starting with Simple Auctions v3.0 we added a new option in the auction settings: Do not allow bidding without Credit Card on file.

If you’re using the Stripe Payment Gateway, you can set the plugin to only allow bids from users who have a valid credit card saved to their account.

This immediately reduces the number of bidders who are not truly interested in the auction; anyone willing to save a card has at least some real intent. It also sets up everything needed for the next feature:  automatic charging when the auction ends.

Automatically Charge the Winning Bidder’s Credit Card

Starting with Simple Auction v3.0 we also implemented this great feature: Automatically charge for won auction.

This option also works only with Stripe Payment Gateway. When this option is enabled, the winner’s credit card will be automatically charged at the end of the auction.

You can see how this works in this video:

Important: Both features are available from Simple Auctions v3.0 and require the free WooCommerce Stripe Payment Gateway plugin.

Require Users to Make a Payment Before Bidding

If you’re not using Stripe Payment Gateway, WPGenie offers three add-ons to WooCommerce Simple Auctions, and each can help solve the problem of non-paying winners. These addons require users to make a payment before they can participate in any auction, which both verifies that their payment method works and filters out anyone not serious about bidding.

Role Based Bidding and Payment Verification Addon

With Role Based Bidding add-on, bidders need to purchase a specific product and get their role changed to one that can place bids (for example, you can define virtual product called “Become Bidder” and set the price at $1).

This purchase confirms their payment method is valid, and their account role is automatically changed to the one that’s allowed to bid, and from that point they can participate in auctions.

Role Based Bidding add-on is also useful for running members-only auctions, where bidding is restricted to a specific group of registered members.

Buy Bid Credits Addon

With Buy Bid Credits addon, only users who have purchased bid credits can place bids. Bid credit packages are sold as regular WooCommerce products, and users spend credits whenever they place a bid.

Since users must buy credits before bidding, their payment method is automatically verified.

Buy Bid Credits add-on is also used to build penny auction websites.

Seated Auctions Addon

With Seated Auctions add-on, you require users to purchase a “seat” before they’re allowed to bid on a specific auction. This again serves as payment verification and filters out unserious bidders.

You can define a simple product to use as a “seat” and define its price, and you can also limit number of seats available, controlling attendance and bidder quality (for example, if you want to run limited-entry auctions for specific high-end items).

Manage Unpaid WooCommerce Auctions

What are your options if an auction ends, and the winner doesn’t pay? Simple Auctions offers a few build-in features for this kind of situation.

Payment Reminders to Winners

E-mail notifications

When an auction ends, the winner automatically receives an email notification with a payment link.

If the winner doesn’t pay, Simple Auctions can automatically send payment reminder emails. You control how often these reminders go out (default is every 7 days) and how many reminders to send before stopping.

SMS notifications

If email isn’t getting through, Simple Auctions supports SMS notifications via a third-party plugin. This gives you an additional channel to reach winners who haven’t responded to email reminders.

Move the Win to the Next Highest Bidder

If a winner doesn’t pay, you can manually delete their winning bid (you need to do this in the Auction History tab of the auction product).

The next highest bidder will then become the winner.  This means an unpaid auction doesn’t have to be immediately relisted. In many cases, the second bidder is still interested and happy to complete the purchase.

Important: You need to manually contact the next highest bidder and send them auction URL where they can see “Pay Now” button so that new winner can complete payment.

Relisting Unpaid Auction

If the winner doesn’t pay, Simple Auctions has options to manually or automatically relist unpaid auctions.

Automatically Relist Unpaid Auctions

You can set the plugin to automatically relist any auction where the winner hasn’t paid within a set number of hours. Once that time passes, the auction goes back up.

This option is available on product edit page:

Manually Relist Unpaid Auction

If you don’t want to use automatic relist option, once an auction ends without payment, an option for manual relisting will show on product edit page.

You need to set a new duration (start/end dates). There’s also an option to “delete logs on relist”, which removes all previous bids/logs (can’t be undone!).

Conclusion

Unpaid auction winners are (unfortunately) a common problem for sellers, but with the right strategies, you can minimize their impact and keep your auctions running. By requiring bidders to verify their payment method, using automatic charging with Stripe, or implementing payment verification addons, you ensure that only serious buyers participate.

Even if a winner doesn’t pay, WooCommerce Simple Auctions provides you with options to manage the situation: send payment reminders via email or SMS, assign the win to the next highest bidder, or relist the auction automatically or manually. Using these tools together helps protect your revenue, and keep your auctions profitable.

With the Simple Auctions plugin, all you need to do is decide which options are best for your store.

Looking for other ways to improve your WooCommerce store? Check the complete list of our plugins that can help you bring your clients the best online shopping experience!

Celebrating 12 Years of WooCommerce Simple Auctions

Twelve years ago today, on February 13th, 2014, we released WooCommerce Simple Auctions, the first-ever auction plugin for WooCommerce.

Fast forward to today, we’re on version 3.0.6, and our plugin is still the most affordable auction solution for WooCommerce, with more than 8,150 sales on CodeCanyon and an amazing 4.66 out of 5 stars from independent reviewers.

Our plugin has been actively supported and developed for 12 years, and this wouldn’t be happening without all of our customers and supporters who trusted our product and helped us to make it better and better with each new release. So a big thank you to all of you!

During this period we have managed to add a lot of new amazing features, including our latest additions: payment verification, anti-sniping features, and AJAX bidding.

All of this came from listening to what you needed, so we’re sure there are a lot more features to come in the near future!

To celebrate 12 years, we’re offering 25% off WooCommerce Simple Auctions plugin, and also 25% off plugin’s addons: Seated Auctions, Buy Bid Credits and Role Based Bidding (for addons from our store, use code AUCTION12 at checkout).

Get WooCommerce Simple Auctions and addons at anniversary pricing until the end of February!

How to Add Free Tickets to WooCommerce Subscription-Based Competition

Learn how to reward competition subscribers with free tickets using WooCommerce Subscriptions and Subscription Gifts for WooCommerce

Many of our clients running websites with our WooCommerce Lottery plugin and Pick Ticket Number add-on use WooCommerce Subscriptions to run subscription-based competitions.

Recently, we’ve received multiple requests for a reliable way to automatically reward subscribers with free tickets, either when they first subscribe or on each renewal.

That feedback led us to develop Subscription Gifts for WooCommerce, a dedicated add-on that integrates seamlessly with WooCommerce Subscriptions to automatically add gift products (including competition tickets) to subscription orders.

In this tutorial, we’ll show you how the plugin works and how it integrates with WooCommerce Subscriptions. As always, we’ve done our best to keep it simple and easy, so you’ll be able to set up free tickets for subscribers in just a few minutes.

You can also check out the video tutorial showing how to use Subscription Gifts for WooCommerce PRO to gift free tickets on subscription start and renewal:

What You’ll Need Before You Start

Before implementing free ticket rewards, you need:

  • WooCommerce Subscriptions
  • WooCommerce Lottery plugin and Pick Ticket Number addon
  • Subscription Gifts for WooCommerce (free or PRO version)

Overview of the Subscription Gifts for WooCommerce

Subscription Gifts for WooCommerce is a WooCommerce Subscriptions add-on that lets you reward loyal subscribers by easily adding free gifts to their subscription signup.

We created this add-on to gift free tickets to subscribers for competitions based on our WooCommerce Lottery plugin, but it also works with any type of WooCommerce Subscriptions product.

How to Set Up Free Ticket Rewards for Competition Subscribers

Step 1: Install the Plugin

Go to your WordPress dashboard → Plugins → Add New. Search for “Subscription Gifts for WooCommerce,” then click Install Now and Activate.

Important note: You also need to have WooCommerce Lottery, Pick Ticket Number and WooCommerce Subscriptions installed!

Step 1: Create Your Competition Product

Set up your competition as you normally would using WooCommerce Lottery with Pick Ticket Number.

Important:  When setting up competition product, you need to select the option “Randomly assign ticket number (without ticket picking)”!

Step 2: Create Your Subscription Product

In WooCommerce, create a subscription product.

Step 3: Configure Subscription Gifts options

With Subscription Gifts for WooCommerce installed, you’ll see a new “Subscription Free Gifts” panel when editing your subscription product.

For product that will be associated with this subscription, you need to select your competition product.

You can also choose when to add free tickets: on subscription start, on renewal (PRO feature), or both (PRO feature), as well as the quantity of gifted tickets (PRO feature).

Order details

After placing an order, subscribers will see their free tickets in the order details

PRO version features

The PRO version includes:

  • The ability to add free tickets both at subscription signup and on renewals
  • Control over the quantity of gifted tickets included in a subscription
  • Premium support: Direct access to our ticket support system at https://wpgenie.org/support/

Conclusion

If you offer competition subscription on your website, Subscription Gifts for WooCommerce makes it simple to reward your subscribers with free tickets at the start of a subscription, on renewal, or both.
As with all of our plugins, setup is easy, and we offer support for any customization you may need.

FAQ

  1. When setting competition subscription with Subscription Gifts for WooCommerce, can subscribers choose ticket numbers?

    When using Subscription Gifts for WooCommerce, subscribers cannot choose ticket numbers. Subscription Gifts for WooCommerce only works with the option “Randomly assign ticket number (without ticket picking)”.

  2. Can I give multiple free tickets per subscription?

    Yes, the PRO version of Subscription Gifts for WooCommerce allows you to set the number of gifted tickets per subscription.

  3. Can I reward free tickets on both signup and renewals?

    This feature is included in the PRO version, while the free version allows rewards on signup only.

  4. Can I use Subscription Gifts with other WooCommerce products?

    Yes. While designed for WooCommerce Lottery, it can add any free gift product to any subscription.

  5. Do I need to install WooCommerce Lottery to use the add-on?

    No. It works with any WooCommerce Subscriptions product, though Lottery functionality is needed to gift competition entries.


Looking for other ways to improve your WooCommerce store? Check the complete list of our plugins that can help you bring your clients the best online shopping experience!

How to Add Free Gifts to WooCommerce Subscriptions

Want to encourage your customers to subscribe? This tutorial shows you the easiest way to add free gifts to WooCommerce subscriptions.

In recent years subscriptions have become a standard part of how consumers shop online. In 2025, nearly every product category, from food and beauty to health and tech, has integrated some form of subscription. Numbers look great: the rapid expansion of online shopping is expected to drive the growth of the subscription e-commerce market in the coming years. It will grow to $3.48 trillion in 2029 at a compound annual growth rate (CAGR) of 59.5%.

If you’re offering subscriptions in your WooCommerce store, you know that customers love them, but they also think carefully before deciding to subscribe.  Whether it’s a monthly coffee delivery, a membership box, or access to premium content, starting a subscription sometimes takes a little nudge.

One effective way to make a subscription more valuable and enticing for customers is by including a gift. It could be a free product with their first subscription order, making subscribing feel more rewarding. Or it could be a small surprise added to a renewal order to show long-term subscribers you appreciate their loyalty.

In this article, we’ll explain why subscription gifts work, explore the available ways to add free gifts to WooCommerce Subscriptions, and show you the easiest way to set everything up using our Subscription Gifts for WooCommerce add-on.

Why Add Free Gifts to WooCommerce Subscriptions?

With subscriptions, customers are committing to ongoing payments and a possible long-term relationship with your brand. So why not reward that commitment with special “thank you” perk for new subscribers? And why not reward your subscribers during renewals?

Free gifts aren’t just fun: they boost conversions, build loyalty, and even give your brand more visibility.  A case study tested free gifts on subscription renewals and found that customers who received a gift converted at an 85% higher rate than those who didn’t. They were 85% more likely to keep their subscription active rather than skip or cancel the upcoming order.

How to Add Free Gifts to WooCommerce Subscriptions

So, if you’re using the WooCommerce Subscriptions plugin for your store, you may be asking how to reward subscribers with free products. The answer is that free gift functionality typically requires a combination of coupons and specific plugins, or custom code.

Coupon + Free Gift Plugin

The most common method is combining WooCommerce coupons with free gift plugins like “Free Gifts for WooCommerce” or “Buy One Get One Free.”

You create a coupon that makes a specific product free, then use an auto-apply coupon plugin to trigger it when someone purchases a subscription. This method only works for the first subscription order, not renewals.

Custom Code

You can also attempt custom code by hooking into subscription renewal events, but this requires a developer and ongoing maintenance every time WooCommerce or Subscriptions updates.

Both of these solutions have limitations, and that’s why we created Subscription Gifts for WooCommerce.

Overview of the Subscription Gifts for WooCommerce plugin

Subscription Gifts for WooCommerce is a WooCommerce Subscriptions add-on that lets you reward loyal subscribers by easily adding free gifts to their subscription at signup, and with PRO version you can also add free gifts to subscription renewal.

Like with all of our plugins, we try to make it simple and effective. Subscription Gifts for WooCommerce is trivial to use and setup, and in few clicks you’ll be able to add any type of product as a free gift to user with active subscription.

Step-by-Step Guide to Subscription Gifts for WooCommerce 

Let’s look at how to efficiently add gifts to subscription:

Step 1: Install the Plugin

Option 1: Install directly from WordPress dashboard

Go to your WordPress dashboard → PluginsAdd New. Search for “Subscription Gifts for WooCommerce,” then click Install Now and Activate.

Option 2: Upload manually

Download the plugin from WordPress.org, then go to your WordPress dashboard → PluginsAdd NewUpload Plugin. Choose the downloaded .zip file, click Install Now and Activate.

Important note: You also need to have WooCommerce Subscriptions plugin installed!

Step 2: Create Simple Subscription Product and Gift Products

Before adding a gift to subscription, you need to:

  • Create Simple Subscription product, and then choose the subscription price, billing interval and period
  • Create products that are going to serve as gifts (or you can choose among existing products in your store)

Step 3: Add a gift to subscription

With Subscription Gifts for WooCommerce, adding a gift to subscription is really easy.

In WP Edit Product screen, scroll to the Subscription Free Gifts panel. All you have to do is select which products to add as gifts. Free version of Subscription Gifts for WooCommerce enables you to add a free gift on subscription start.

After creating a Simple subscription product, the Subscription Gifts panel appears below

Your customers will see their free gift in order details after placing order.

Order details: free gift with WooCommerce subscription

PRO version features

For store owners who need more advanced functionality, the PRO version includes:

  • The ability to add free gifts both at subscription signup, renewals, or both
  • Control over the quantity of gifted products included in a subscription
  • Premium support: Direct access to our ticket support system at https://wpgenie.org/support/
With PRO version, you can choose when to add gifts to subscription, and also the quantity of gifts

Conclusion

Adding free gifts to WooCommerce Subscriptions doesn’t have to involve coupon setups or custom code. With our Subscription Gifts for WooCommerce, you can reward new subscribers and retain long-term customers with automatic gift products.

Ready to increase signups and reduce churn?  Download Subscription Gifts for WooCommerce from WordPress.org and get started!

FAQ

  1. Does this plugin work with WooCommerce Subscriptions only?

    Yes, Subscription Gifts for WooCommerce is a WooCommerce Subscriptions addon.

  2. With Subscription Gifts for WooCommerce, can you set different gifts for first order vs. renewals? (Like free mug on signup, free sample pack on first renewal?)

    Yes, with PRO version you can set different products as gifts for first order vs. renewals.

  3. What product types work as gifts:  just simple products, or also grouped products, lottery product etc.?

    Subscription Gifts for WooCommerce works with any WooCommerce product type: simple, variable, grouped, virtual, downloadable, and even specialized product types like our Simple Lottery plugin products

  4. Does this plugin handle gift inventory?

    No, the plugin uses WooCommerce’s standard inventory. If a gift product is out of stock, the subscription purchase will be blocked.
    Set up low stock notifications (WooCommerce → Settings → Products → Inventory) so you’re alerted before running out, or disable stock management for gift products entirely so they’re always available.

  5. What’s the difference between free and PRO versions?

    PRO version has all features of the free version, plus option to add gift both on start and on renewal, option to choose quantity for product that is gifted in subscription, and premium support from WPGenie’s developers.

Looking for other ways to improve your WooCommerce store? Check the complete list of our plugins that can help you bring your clients the best online shopping experience!