{"id":36364,"date":"2025-04-09T09:40:04","date_gmt":"2025-04-09T09:40:04","guid":{"rendered":"https:\/\/ithemelandco.com\/?p=36364"},"modified":"2026-05-19T12:35:12","modified_gmt":"2026-05-19T12:35:12","slug":"woo-automatically-add-free-gifts-to-orders","status":"publish","type":"post","link":"https:\/\/ithemelandco.com\/blog\/woo-automatically-add-free-gifts-to-orders\/","title":{"rendered":"How to Automatically Add Free Gifts to WooCommerce Cart"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Automatically adding free gifts to WooCommerce cart is one of the easiest ways to increase conversions, improve customer satisfaction, and encourage larger purchases. Whether you want to reward loyal customers, create \u201cBuy X Get Y\u201d promotions, or boost average order value, automated free gift campaigns can make your offers more attractive without adding extra manual work.In this guide, you\u2019ll learn how to auto add free gifts in WooCommerce using both custom code and advanced plugin-based methods. We\u2019ll also show you how to create flexible gift rules with the <a href=\"https:\/\/ithemelandco.com\/plugins\/free-gifts-for-woocommerce\/?utm_source=blog&amp;utm_content=automatically-add-gift\">GIFTiT \u2013 Free Gifts For WooCommerce plugin<\/a>, including cart subtotal rewards, automatic gift products, coupon-based offers, and tiered promotions.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why should you automate free gift promotions in WooCommerce?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Automating free gift promotions in WooCommerce can significantly benefit your online store. Here are some key reasons to consider:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/00-why-automate-free-gifts-promotions.png\"><img fetchpriority=\"high\" decoding=\"async\" width=\"750\" height=\"971\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/00-why-automate-free-gifts-promotions.png\" alt=\"Reasons to automate free gifts promotions in woocommerce\" class=\"wp-image-36367\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/00-why-automate-free-gifts-promotions.png 750w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/00-why-automate-free-gifts-promotions-500x647.png 500w\" sizes=\"(max-width: 750px) 100vw, 750px\" \/><\/a><figcaption class=\"wp-element-caption\">Why automate gifts promotions<\/figcaption><\/figure>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Boost Customer Satisfaction<\/strong>: Free gifts create a positive shopping experience, making customers feel valued and appreciated.&nbsp;&nbsp;<\/li>\n\n\n\n<li><strong>Increase Sales<\/strong>: Promotions like &#8220;Buy X, Get Y Free&#8221; encourage customers to add more items to their cart to qualify for the gift.&nbsp;&nbsp;<\/li>\n\n\n\n<li><strong>Enhance Loyalty<\/strong>: Rewarding repeat customers with free gifts fosters long-term relationships and encourages repeat purchases.&nbsp;&nbsp;<\/li>\n\n\n\n<li><strong>Save Time and Effort<\/strong>: Automating the process eliminates the need for manual intervention, ensuring consistency and reducing errors.&nbsp;&nbsp;<\/li>\n\n\n\n<li><strong>Stand Out from Competitors<\/strong>: Unique promotions like free gifts can differentiate your store and attract more customers.&nbsp;&nbsp;<\/li>\n\n\n\n<li><strong>Increase Conversions in E-commerce Websites<\/strong><\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">By automating free gift promotions, you can streamline your marketing efforts while delivering value to your customers.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to add free gifts in WooCommerce without a plugin?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">While using a plugin like free gifts for WooCommerce is the easiest and most efficient way to automatically add free gifts to WooCommerce orders, you can also achieve this functionality without a plugin by using custom codes.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you\u2019re comfortable with coding, you can use WooCommerce hooks to automatically add a free gift to the cart when certain conditions are met.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Here\u2019s an example:<\/p>\n\n\n\n<figure class=\"wp-block-pullquote\"><blockquote><p><strong>Automatically Add Free Gifts to WooCommerce Orders when the Cart total is more than $50.<\/strong><\/p><\/blockquote><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">To apply this rule, add the following code to your theme\u2019s `functions.php` file or a custom plugin like <a href=\"https:\/\/wordpress.org\/plugins\/code-snippets\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Code Snippet<\/a>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\n\n&nbsp;&nbsp;&nbsp;add_action('woocommerce_before_calculate_totals', 'add_free_gift_to_cart');\n&nbsp; function add_free_gift_to_cart($cart) {\n&nbsp; &nbsp; &nbsp; \/\/ Set the free gift product ID\n&nbsp; &nbsp; &nbsp; $free_gift_id = 123; \/\/ Replace with your free gift product ID\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\/\/ Set conditions (e.g., minimum cart total)\n&nbsp; &nbsp; &nbsp; $min_cart_total = 50; \/\/ Minimum cart total to qualify for the free gift\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\/\/ Check if the free gift is already in the cart\n&nbsp; &nbsp; &nbsp; $free_gift_in_cart = false;\n&nbsp; &nbsp; &nbsp; foreach ($cart-&gt;get_cart() as $cart_item_key =&gt; $cart_item) {\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if ($cart_item&#91;'product_id'] == $free_gift_id) {\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $free_gift_in_cart = true;\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }\n&nbsp; &nbsp; &nbsp; }\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\/\/ Add the free gift if conditions are met\n&nbsp; &nbsp; &nbsp; if ($cart-&gt;subtotal &gt;= $min_cart_total &amp;&amp; !$free_gift_in_cart) {\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $cart-&gt;add_to_cart($free_gift_id);\n&nbsp; &nbsp; &nbsp; }\n\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\/\/ Remove the free gift if conditions are not met\n&nbsp; &nbsp; &nbsp; if ($cart-&gt;subtotal &lt; $min_cart_total &amp;&amp; $free_gift_in_cart) {\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; foreach ($cart-&gt;get_cart() as $cart_item_key =&gt; $cart_item) {\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if ($cart_item&#91;'product_id'] == $free_gift_id) {\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $cart-&gt;remove_cart_item($cart_item_key);\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }\n&nbsp; &nbsp; &nbsp; }\n&nbsp; }\n\n?&gt;<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>&nbsp;Replace `123` with the actual product ID of your free gift.<\/li>\n\n\n\n<li>Adjust the `$min_cart_total` value to set the minimum cart total required to qualify for the free gift.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Before adding code to `functions.php` in a WordPress theme, consider:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/wp-functions-code-tips.png\"><img decoding=\"async\" width=\"862\" height=\"980\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/wp-functions-code-tips.png\" alt=\"Wordpress tips for adding code in function.php file\" class=\"wp-image-36368\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/wp-functions-code-tips.png 862w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/wp-functions-code-tips-500x568.png 500w\" sizes=\"(max-width: 862px) 100vw, 862px\" \/><\/a><figcaption class=\"wp-element-caption\">WordPress code tips<\/figcaption><\/figure>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Always backup your site and the `functions.php` file.<\/li>\n\n\n\n<li>Use a <a href=\"https:\/\/developer.wordpress.org\/themes\/advanced-topics\/child-themes\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">child theme<\/a> to avoid losing changes when the parent theme updates.<\/li>\n\n\n\n<li>Ensure the code is necessary and aligns with your site&#8217;s functionality.<\/li>\n\n\n\n<li>Double-check for correct PHP syntax to avoid breaking the site.<\/li>\n\n\n\n<li>Avoid adding heavy or redundant code that could slow down your site.<\/li>\n\n\n\n<li>Consult an expert before applying the code to the live site or use a plugin like Code Snippet if you have no experience.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">For most users, using a dedicated plugin like free gifts for WooCommerce is recommended for ease of use and advanced features. However, these manual methods can work well for simple scenarios.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What are the best plugins for automatically adding free gifts to customer order in WooCommerce?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If you want to automate free gift promotions in WooCommerce, using a dedicated plugin is the most efficient and user-friendly solution. Here are some of the best plugins available:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1- Free Gifts for WooCommerce<\/h3>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/05\/01-giftit-plugin-bnr-wide.png\"><img decoding=\"async\" width=\"1544\" height=\"500\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/05\/01-giftit-plugin-bnr-wide.png\" alt=\"GIFTiT - Free Gifts For WooCommerce by ithemeland banner\" class=\"wp-image-48613\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/05\/01-giftit-plugin-bnr-wide.png 1544w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/05\/01-giftit-plugin-bnr-wide-1536x497.png 1536w\" sizes=\"(max-width: 1544px) 100vw, 1544px\" \/><\/a><figcaption class=\"wp-element-caption\">GIFTiT plugin by iThemeland<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/ithemelandco.com\/plugins\/free-gifts-for-woocommerce\/?utm_source=blog&amp;utm_content=automatically-add-gift\" target=\"_blank\" rel=\"noreferrer noopener\">Free gifts for WooCommerce plugin<\/a> is a lightweight, easy-to-use plugin, that offers excellent features and flexibility. By using this powerful plugin, gift products are added automatically without manual intervention to the customer cart. You can also set multiple rules and conditions for different promotions to boost sales and improve customer satisfaction by automatically rewarding shoppers with free gifts.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">With its lightweight and user-friendly interface, store owners can effortlessly set up multiple gift campaigns with flexible conditions, such as minimum cart value, specific product purchases, or customer loyalty tiers. Customers enjoy a seamless experience as free gifts are automatically added to their cart or presented as an optional selection, increasing engagement and encouraging higher-order values.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This powerful plugin supports multiple gift rules, allowing you to run simultaneous promotions\u2014such as &#8220;Buy X, Get Y Free&#8221; or &#8220;Spend specific value, choose a free gift product.&#8221; You can also, restrict gifts by user roles, product categories, time-limited offers, and many other conditions, ensuring targeted and effective marketing.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">With full WooCommerce compatibility, the plugin integrates smoothly into your store without slowing it down. Whether you want to reward loyal customers, clear excess inventory, or increase new product sales, free gifts for WooCommerce plugin provide a hassle-free way to increase conversions and customer delight.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Features:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Set up free gifts based on cart total, product quantity, specific products, and many other methods.<\/li>\n\n\n\n<li>Automatically add free gifts to WooCommerce orders or offer multiple free gift options for customers to choose from.<\/li>\n\n\n\n<li>No coding required\u2014perfect for non-technical users.<\/li>\n\n\n\n<li>Compatible with most WooCommerce themes and plugins.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Price<\/strong>: Start from $89\/Year for 1 Site<\/p>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center main-cta-cnt has-background is-layout-flex wp-container-core-columns-is-layout-8a83d729 wp-block-columns-is-layout-flex\" style=\"background-color:#3d67ff;padding-top:30px;padding-right:30px;padding-bottom:30px;padding-left:30px\">\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group is-layout-constrained wp-container-core-group-is-layout-5980c20d wp-block-group-is-layout-constrained\" style=\"padding-top:15px\">\n<p class=\"single-cta-heading has-white-color has-text-color has-link-color wp-elements-f8e1add8464777653a00ca2733bff66e wp-block-paragraph\" style=\"font-size:26px;font-style:normal;font-weight:800\">GIFTiT &#8211; Free Gifts For WooCommerce<\/p>\n\n\n\n<p class=\"single-cta-desc has-white-color has-text-color has-link-color wp-elements-b0d847be81671b6aa824bba0562f8b89 wp-block-paragraph\" style=\"font-size:16px\">The easy way to automatically add free gifts to WooCommerce orders<\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button main-cta-button\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" href=\"https:\/\/ithemelandco.com\/plugins\/free-gifts-for-woocommerce\/?utm_source=blog&amp;utm_content=automatically-add-gift\" style=\"border-style:none;border-width:0px;border-radius:40px;color:#ffffff;background-color:#0fba5e;padding-top:10px;padding-right:30px;padding-bottom:10px;padding-left:30px;font-style:normal;font-weight:500\" target=\"_blank\" rel=\"noreferrer noopener\">Buy Plugin<\/a><\/div>\n\n\n\n<div class=\"wp-block-button is-style-outline is-style-outline--1\"><a class=\"wp-block-button__link has-white-background-color has-text-color has-background wp-element-button\" href=\"https:\/\/wordpress.org\/plugins\/ithemeland-free-gifts-for-woo\/\" style=\"border-style:none;border-width:0px;border-radius:40px;color:#3d67ff;padding-top:10px;padding-right:30px;padding-bottom:10px;padding-left:30px;font-style:normal;font-weight:500\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Free Version<\/a><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"532\" height=\"355\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/giftit-test-banner.png\" alt=\"GIFTiT - Free Gifts For WooCommerce plugin by ithemeland\" class=\"wp-image-48720\" style=\"width:440px;height:auto\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/giftit-test-banner.png 532w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/giftit-test-banner-500x335.png 500w\" sizes=\"(max-width: 532px) 100vw, 532px\" \/><\/figure>\n<\/div>\n<\/div>\n\n\n\n<h3 class=\"wp-block-heading\">2. WPC Free Gift Coupons for WooCommerce<\/h3>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/02-wpc-free-gifts-coupons-for-woo-bnr.png\"><img loading=\"lazy\" decoding=\"async\" width=\"833\" height=\"326\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/02-wpc-free-gifts-coupons-for-woo-bnr.png\" alt=\"wpc free gifts coupons for woo plugin\" class=\"wp-image-36370\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/02-wpc-free-gifts-coupons-for-woo-bnr.png 833w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/02-wpc-free-gifts-coupons-for-woo-bnr-500x196.png 500w\" sizes=\"(max-width: 833px) 100vw, 833px\" \/><\/a><figcaption class=\"wp-element-caption\">WPC free gift coupons plugin<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/wordpress.org\/plugins\/wpc-free-gift-coupons\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">WPC free gift coupon for WooCommerce<\/a> is the perfect solution for stores that leverage coupon-based promotions, seamlessly integrating free gifts into your existing discount strategies. This powerful plugin automatically adds a free gift to the cart when a valid coupon is applied, enhancing customer satisfaction and boosting sales. You can set flexible conditions, such as minimum order value or required products, to control eligibility, and even offer customers the option to choose their preferred gift from a selection\u2014making promotions more engaging and personalized. Ideal for flash sales, loyalty rewards, or seasonal campaigns, WPC Free Gift Coupons ensures a smooth and automated way to delight shoppers while driving conversions.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Features:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Automatically add free gifts to the cart when a coupon is applied.<\/li>\n\n\n\n<li>Set conditions like minimum order value or specific products to qualify.<\/li>\n\n\n\n<li>Option to allow customers to choose from multiple free gifts.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Price<\/strong>: Free to download<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3. YITH WooCommerce Gift Cards<\/h3>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/03-yith-woo-credit-cards-bnr.png\"><img loading=\"lazy\" decoding=\"async\" width=\"841\" height=\"333\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/03-yith-woo-credit-cards-bnr.png\" alt=\"Yith woocommerce credit cards plugin\" class=\"wp-image-36371\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/03-yith-woo-credit-cards-bnr.png 841w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/03-yith-woo-credit-cards-bnr-500x198.png 500w\" sizes=\"(max-width: 841px) 100vw, 841px\" \/><\/a><figcaption class=\"wp-element-caption\">Yith gift cards plugin<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/wordpress.org\/plugins\/yith-woocommerce-gift-cards\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Yith WooCommerce gift cards<\/a> plugin is the ultimate solution for stores looking to merge gift card sales with enticing free gift promotions, creating a seamless and rewarding shopping experience. This versatile plugin allows you to easily sell and manage digital or physical gift cards, while also enabling special promotions where customers receive free gifts with their gift card purchase.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">With fully customizable gift card designs and email templates, you can tailor every aspect to match your brand, making it ideal for holidays, loyalty rewards, or special campaigns. By combining gift cards with free gifts, YITH WooCommerce Gift Cards help boost engagement, increase sales, and delight your customers with added value.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Features:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Sell and manage gift cards in your store.<\/li>\n\n\n\n<li>Option to offer free gifts as part of gift card promotions.<\/li>\n\n\n\n<li>Customizable gift card designs and email templates.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Price:<\/strong> $129 \/ 1 year<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">4. Free Gift Product For Woocommerce<\/h3>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/04-free-gift-product-for-woo-bnr.png\"><img loading=\"lazy\" decoding=\"async\" width=\"978\" height=\"330\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/04-free-gift-product-for-woo-bnr.png\" alt=\"Free gift product for woocommerce plugin\" class=\"wp-image-36372\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/04-free-gift-product-for-woo-bnr.png 978w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/04-free-gift-product-for-woo-bnr-500x169.png 500w\" sizes=\"(max-width: 978px) 100vw, 978px\" \/><\/a><figcaption class=\"wp-element-caption\">Free gifts products plugin<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/wordpress.org\/plugins\/free-gifts-product-for-woocommerce\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Free gift product for Woocommerce<\/a> is the perfect plugin for stores that need advanced rules and unmatched flexibility in their promotional campaigns. With this powerful tool, you can set up automated free gifts based on cart value, specific products, or even product categories, ensuring targeted and effective promotions. For added convenience, you can offer free shipping as an alternative to physical gifts, giving customers more choices.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The plugin also enhances visibility with customizable gift notifications on the cart and checkout pages, creating a seamless and engaging shopping experience. Whether you&#8217;re running seasonal deals, loyalty rewards, or clearance sales, Free Gift Product for WooCommerce helps boost conversions and customer satisfaction effortlessly.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Features:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Set up free gifts based on cart total, product categories, or specific products.<\/li>\n\n\n\n<li>Offer free shipping as an alternative to physical gifts.<\/li>\n\n\n\n<li>Display a customizable gift notification on the cart and checkout pages.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Price:<\/strong> $25 Life Time And Unlimited Site in Work<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">5. WooCommerce Smart Coupons<\/h3>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/05-woo-smart-coupons-bnr.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1006\" height=\"315\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/05-woo-smart-coupons-bnr.png\" alt=\"Woocommerce smart coupons plugin\" class=\"wp-image-36373\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/05-woo-smart-coupons-bnr.png 1006w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/05-woo-smart-coupons-bnr-500x157.png 500w\" sizes=\"(max-width: 1006px) 100vw, 1006px\" \/><\/a><figcaption class=\"wp-element-caption\">Smart coupons plugin<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/wordpress.org\/plugins\/wt-smart-coupons-for-woocommerce\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">WooCommerce Smart Coupons<\/a> is the ultimate marketing tool for stores that want to boost sales through strategic coupon-based promotions, including irresistible free gift offers. This powerful plugin lets you automatically apply coupons for free gifts or discounts, making promotions seamless for both you and your customers.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Create compelling buy-one-get-one (BOGO) deals, bulk discounts, or tiered rewards to incentivize purchases, while also having the flexibility to send digital gift cards or store credits\u2014perfect for loyalty programs or referral rewards. With WooCommerce Smart Coupons, you can drive conversions, reward customers, and maximize revenue\u2014all while keeping your promotions fully automated and hassle-free.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Features:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Automatically apply coupons for free gifts or discounts.<\/li>\n\n\n\n<li>Offer buy-one-get-one (BOGO) deals and other promotions.<\/li>\n\n\n\n<li>Send gift cards or store credits to customers.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Price:<\/strong> $89.00 \/year for Single Site<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to automatically add free gifts to WooCommerce orders with the plugin<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The <a href=\"https:\/\/ithemelandco.com\/plugins\/free-gifts-for-woocommerce\/?utm_source=blog&amp;utm_content=automatically-add-gift\" target=\"_blank\" rel=\"noreferrer noopener\">free gifts for WooCommerce plugin<\/a> is a powerful and user-friendly tool that allows you to automatically add free gifts to customer orders based on specific conditions. Here\u2019s a step-by-step guide to setting it up:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Install and Activate the Plugin<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Download the ZIP file of Free gifts for WooCommerce plugin<\/li>\n\n\n\n<li>Go to your <strong>WordPress dashboard&gt; Plugins &gt; Add New.<\/strong><\/li>\n\n\n\n<li>Upload the ZIP file.<\/li>\n\n\n\n<li>Click <strong>Install Now<\/strong> and then <strong>Activate<\/strong>.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Configure the Plugin Settings<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">After activation, go to<strong> iThemeland &gt; Free Gift<\/strong> in your WordPress dashboard. You\u2019ll see the plugin\u2019s settings page, where you can configure your free gift rules.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/06-open-free-gift-for-woo-plugin.png\"><img loading=\"lazy\" decoding=\"async\" width=\"474\" height=\"376\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/06-open-free-gift-for-woo-plugin.png\" alt=\"Open free gift for woo plugin by ithemelandco\" class=\"wp-image-36374\"\/><\/a><figcaption class=\"wp-element-caption\">Open GIFTiT plugin<\/figcaption><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Create a Free Gift Rule<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">In the main page of the plugin, click on the <strong>Add Rule<\/strong> button to see the <strong>Rule<\/strong> form.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/07-click-on-add-rule-btn-1024x290.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1212\" height=\"290\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/07-click-on-add-rule-btn.png\" alt=\"Click on add rule button\" class=\"wp-image-36375\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/07-click-on-add-rule-btn.png 1212w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/07-click-on-add-rule-btn-500x120.png 500w\" sizes=\"(max-width: 1212px) 100vw, 1212px\" \/><\/a><figcaption class=\"wp-element-caption\">Add new rule<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">In the <strong>Rule<\/strong> form, you need to:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Select one of the methods under which the free gift will be offered. For example:<\/li>\n<\/ol>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Subtotal<\/strong>: Offer a free gift if the cart total exceeds a specific amount.<\/li>\n\n\n\n<li><strong>Buy x Get y<\/strong>: Offer a Y product as free gift if a certain number of X product are added to the cart.<\/li>\n\n\n\n<li><strong>Cheapest item<\/strong>: Offer the cheapest item in the cart as free gift.<\/li>\n\n\n\n<li>And more.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/00-select-rule-method.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1227\" height=\"577\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/00-select-rule-method.png\" alt=\"Select desierd rule method from list\" class=\"wp-image-36390\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/00-select-rule-method.png 1227w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/00-select-rule-method-500x235.png 500w\" sizes=\"(max-width: 1227px) 100vw, 1227px\" \/><\/a><figcaption class=\"wp-element-caption\">Select gifting method<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Once you have chosen the method, the smart rule form will be changed to display the fields and options based on the selected method.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For example, if you choose the <strong>Simple <\/strong>method, which means all customers who place an order on your site can receive a gift, then you have to set the following fields:<\/p>\n\n\n\n<ol start=\"2\" class=\"wp-block-list\">\n<li>Write a number in the <strong>Get<\/strong> field to specify how many gifts customers can receive.&nbsp;<\/li>\n\n\n\n<li>Mark <strong>Auto Add gift To Cart <\/strong>checkbox to automatically add free gifts to WooCommerce orders. If you don\u2019t mark this option, customers can choose from multiple free gift options if desired.<\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/08-create-a-simple-gift-rule-1024x685.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1181\" height=\"685\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/08-create-a-simple-gift-rule.png\" alt=\"Create a simple method gift rule\" class=\"wp-image-36376\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/08-create-a-simple-gift-rule.png 1181w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/08-create-a-simple-gift-rule-500x290.png 500w\" sizes=\"(max-width: 1181px) 100vw, 1181px\" \/><\/a><figcaption class=\"wp-element-caption\">Fill the rule form<\/figcaption><\/figure>\n\n\n\n<ol start=\"4\" class=\"wp-block-list\">\n<li>Select the product(s) you want to offer as free gifts in the <strong>Include Products <\/strong>field.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">You can customize advanced settings (Optional) such as:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Include categories<\/strong>: Offer products belonging to one or more categories as free gifts.<\/li>\n\n\n\n<li><strong>Exclude Products<\/strong>: Prevent specific products from qualifying for free gifts.<\/li>\n\n\n\n<li><strong>Set conditions to Limit Free Gifts<\/strong>: For example, set a maximum number of free gifts per order or offer free gifts for specific customers (e.g., logged-in users only).<\/li>\n<\/ul>\n\n\n\n<ol start=\"5\" class=\"wp-block-list\">\n<li>Click <strong>Save settings<\/strong> to activate the rule.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">Now, if your customers add products to their carts, the free gift is automatically added to the cart:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/09-result-of-simple-rule-on-customer-cart.png\"><img loading=\"lazy\" decoding=\"async\" width=\"970\" height=\"228\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/09-result-of-simple-rule-on-customer-cart.png\" alt=\"Result of simple rule gift on customer cart\" class=\"wp-image-36377\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/09-result-of-simple-rule-on-customer-cart.png 970w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/09-result-of-simple-rule-on-customer-cart-500x118.png 500w\" sizes=\"(max-width: 970px) 100vw, 970px\" \/><\/a><figcaption class=\"wp-element-caption\">Result of created rule<\/figcaption><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">How to set up free gifts based on cart total?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Here is the example scenario:<\/p>\n\n\n\n<figure class=\"wp-block-pullquote\"><blockquote><p><strong>If the Cart total is greater than or equal to $50, one belt is added to the cart automatically.<\/strong><\/p><\/blockquote><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">To apply this rule, first you need to choose Subtotal from the list of the <strong>Method<\/strong> field.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/10-set-gift-rule-based-on-cart-subtotal.png\"><img loading=\"lazy\" decoding=\"async\" width=\"573\" height=\"515\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/10-set-gift-rule-based-on-cart-subtotal.png\" alt=\"Add free gift rule based on cart subtotal\" class=\"wp-image-36378\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/10-set-gift-rule-based-on-cart-subtotal.png 573w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/10-set-gift-rule-based-on-cart-subtotal-500x449.png 500w\" sizes=\"(max-width: 573px) 100vw, 573px\" \/><\/a><figcaption class=\"wp-element-caption\">Subtotal gifting method<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Then enter <strong>50<\/strong> in the <strong>Subtotal Amount<\/strong> field as the minimum cart total required to qualify for the free gift.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Now, you have to write <strong>1<\/strong> in the <strong>Get <\/strong>field and mark <strong>Auto add gift to cart<\/strong>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Under the <strong>Product Get<\/strong> section, add <strong>Belt<\/strong> in the <strong>Include Products<\/strong> field to offer it as a free gift.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Click <strong>Save Settings<\/strong> to activate the rule.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/11-auto-add-belt-as-free-gift-rule.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1614\" height=\"720\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/11-auto-add-belt-as-free-gift-rule.png\" alt=\"Automatically add belt as free gift rule\" class=\"wp-image-36379\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/11-auto-add-belt-as-free-gift-rule.png 1614w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/11-auto-add-belt-as-free-gift-rule-500x223.png 500w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/11-auto-add-belt-as-free-gift-rule-1536x685.png 1536w\" sizes=\"(max-width: 1614px) 100vw, 1614px\" \/><\/a><figcaption class=\"wp-element-caption\">Set gift rule based on cart total<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">So, as shown below, the free gift is automatically added to the customer carts when the cart total meets the condition.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/12-cart-result-when-conditions-meet.png\"><img loading=\"lazy\" decoding=\"async\" width=\"986\" height=\"228\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/12-cart-result-when-conditions-meet.png\" alt=\"Cart result when rule conditions meets\" class=\"wp-image-36380\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/12-cart-result-when-conditions-meet.png 986w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/12-cart-result-when-conditions-meet-500x116.png 500w\" sizes=\"(max-width: 986px) 100vw, 986px\" \/><\/a><figcaption class=\"wp-element-caption\">Result of cart subtotal free gift<\/figcaption><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Can I offer different free gifts based on purchase conditions?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">You can offer different free gifts based on purchase conditions using the Free Gifts for WooCommerce plugin. This is particularly useful for implementing tiered pricing or tiered quantity promotions, where customers receive different free gifts depending on how much they spend or how many items they purchase.<br>Our example scenario is: <\/p>\n\n\n\n<figure class=\"wp-block-pullquote\"><blockquote><p><strong>Tier 1: If customers buy less than 2 items \u2192 Get 1 Cap for free keychain.<\/strong><br><strong>Tier 2: Buy 3 to 5 items \u2192 Get 2 caps for free.<\/strong><br><strong>Tier 3: Buy 6 to 10 items \u2192 Get 3 free caps.<\/strong><\/p><\/blockquote><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">To apply this rule, you need to follow the instructions below:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Choose <strong>Tiered Quantity<\/strong> from the list of <strong>Methods.<\/strong><\/li>\n\n\n\n<li>Create <strong>3<\/strong> levels by pressing the <strong>Add item<\/strong> button 3 times under the <strong>Quantities and Settings<\/strong> section.<\/li>\n\n\n\n<li>Set the fields of each level as shown below.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/13-add-gifts-based-on-purchase-conditions-rule.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1170\" height=\"693\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/13-add-gifts-based-on-purchase-conditions-rule.png\" alt=\"Add gifts based on purchase conditions rule\" class=\"wp-image-36381\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/13-add-gifts-based-on-purchase-conditions-rule.png 1170w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/13-add-gifts-based-on-purchase-conditions-rule-500x296.png 500w\" sizes=\"(max-width: 1170px) 100vw, 1170px\" \/><\/a><figcaption class=\"wp-element-caption\">Tiered quantity method example<\/figcaption><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Mark the <strong>Auto Add Gift To Cart<\/strong> checkbox to instruct the plugin to automatically add the free gift to the customer&#8217;s cart.<\/li>\n\n\n\n<li>Add <strong>Cap<\/strong> as free gift in the <strong>Include Products<\/strong> field under the <strong>Product Get<\/strong> section.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">By pressing <strong>Save Settings<\/strong>, the customers will receive the free gift when their cart meets the condition.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For example, if they add 4 products, they will receive 2 caps for free.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/14-auto-added-gift-to-cart-when-conditions-meets.png\"><img loading=\"lazy\" decoding=\"async\" width=\"983\" height=\"226\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/14-auto-added-gift-to-cart-when-conditions-meets.png\" alt=\"Result if added gift to cart when conditions meet\" class=\"wp-image-36382\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/14-auto-added-gift-to-cart-when-conditions-meets.png 983w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/14-auto-added-gift-to-cart-when-conditions-meets-500x115.png 500w\" sizes=\"(max-width: 983px) 100vw, 983px\" \/><\/a><figcaption class=\"wp-element-caption\">Result for tiered quantity rule<\/figcaption><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">How to remove a free gift if the cart conditions change?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">When using the free gifts for WooCommerce plugin, free gifts are automatically added to the cart when specific conditions (e.g., cart total or product quantity) are met. If the cart conditions change and no longer qualify for the free gift, the plugin can automatically remove the free gift from the cart.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">You can also see a list of all rules that you have already created in the <strong>Rules<\/strong> tab. It is simply possible to disable any of them with one click as shown below:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/15-how-disable-a-rule-in-rules-list-1024x486.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1220\" height=\"486\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/15-how-disable-a-rule-in-rules-list.png\" alt=\"How disable a rule in rules list\" class=\"wp-image-36383\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/15-how-disable-a-rule-in-rules-list.png 1220w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/15-how-disable-a-rule-in-rules-list-500x199.png 500w\" sizes=\"(max-width: 1220px) 100vw, 1220px\" \/><\/a><figcaption class=\"wp-element-caption\">Disable your gifting rule<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">How to combine free gifts with discount coupons?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Combining free gifts with discount coupons can create a powerful promotional strategy to boost sales and customer satisfaction.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The free gifts for WooCommerce plugin allows you to set up free gift rules that work alongside discount coupons.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For example, if you want to offer a free gift when a customer applies a specific coupon code, you just need to add condition, then set the conditions field as follows:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Open the list of <strong>Conditions<\/strong> and choose <strong>Coupons applied<\/strong> under the <strong>Cart<\/strong> tab.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/16-select-coupons-applied-in-conditions.png\"><img loading=\"lazy\" decoding=\"async\" width=\"439\" height=\"297\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/16-select-coupons-applied-in-conditions.png\" alt=\"Select coupons applied in conditions list\" class=\"wp-image-36384\"\/><\/a><figcaption class=\"wp-element-caption\">Combine free gifts with coupons<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Then choose one of the options from the next field:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>At least one of any:<\/strong> The customer must have at least one coupon (any coupon) in their cart to qualify for the free gift.<\/li>\n\n\n\n<li><strong>At least one of the selected:<\/strong> The cart must contain at least one coupon from a predefined list to trigger the free gift.<\/li>\n\n\n\n<li><strong>All of the selected: <\/strong>The customer must have every coupons from a specified list in their cart to be eligible for the free gift.<\/li>\n\n\n\n<li><strong>Only selected: <\/strong>The cart must exclusively contain coupons from the chosen list (no extra items) to receive the free gift.<\/li>\n\n\n\n<li><strong>None of the selected: <\/strong>The cart must not contain any coupons from the specified list to qualify for the offer.<\/li>\n\n\n\n<li><strong>None at all: <\/strong>The cart must contain no coupons at all.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/17-select-condition-options-1024x258.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1201\" height=\"258\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/17-select-condition-options.png\" alt=\"Select condition options\" class=\"wp-image-36385\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/17-select-condition-options.png 1201w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/17-select-condition-options-500x107.png 500w\" sizes=\"(max-width: 1201px) 100vw, 1201px\" \/><\/a><figcaption class=\"wp-element-caption\">Coupons applied condition<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Once you choose one of the options, the plugin allows you to add the Coupon Names in the next fields.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/18-select-coupon-name-1024x186.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1613\" height=\"186\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/18-select-coupon-name.png\" alt=\"Select coupon name\" class=\"wp-image-36386\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/18-select-coupon-name.png 1613w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/18-select-coupon-name-500x58.png 500w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/18-select-coupon-name-1536x177.png 1536w\" sizes=\"(max-width: 1613px) 100vw, 1613px\" \/><\/a><figcaption class=\"wp-element-caption\">Add coupon name<\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Finally, by pressing <strong>Save changes,<\/strong> the free gift will be offered only when the condition is met.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How to track and manage gift inventory?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The free gifts for WooCommerce plugin includes a comprehensive reporting tool that allows you to track and analyze the performance of your free gift promotions.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">With this tool, you can monitor key metrics such as the number of free gifts claimed, the most popular free gifts, and the impact of promotions on order values.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">It also provides real-time inventory tracking under <strong>Reports &gt; Gifts\/Products <\/strong>tab, ensuring you never run out of stock for your free gift products.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The reporting tool enables you to export data to CSV or XLS for further analysis, helping you optimize your promotions and make data-driven decisions to enhance customer satisfaction and boost sales.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/19-track-gifts-inventory-in-reports-tab-1024x447.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1177\" height=\"447\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/19-track-gifts-inventory-in-reports-tab.png\" alt=\"Track gifts inventory in reports tab\" class=\"wp-image-36387\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/19-track-gifts-inventory-in-reports-tab.png 1177w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/19-track-gifts-inventory-in-reports-tab-500x190.png 500w\" sizes=\"(max-width: 1177px) 100vw, 1177px\" \/><\/a><figcaption class=\"wp-element-caption\">Track your gifts in report dashboard<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">How to notify customers about free gifts in their order?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Notifying customers about free gifts in their order is a great way to enhance their shopping experience and encourage repeat purchases. Here\u2019s how you can do it:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1. Use a custom plugin to show popup notification<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">There are some plugins that you can use to automatically display free gift notifications on the cart page, checkout page, or via a popup when the conditions are met.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Those plugins allow you to customize the notification message (e.g., &#8220;Congratulations! You\u2019ve unlocked a free gift with your order. &#8220;)<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Add a note in the order confirmation email<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">To add a note in the order confirmation email follow these steps:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Go to <strong>WooCommerce &gt; Settings &gt; Emails<\/strong>.<\/li>\n\n\n\n<li>Edit the <strong>Order Confirmation Email<\/strong> template.<\/li>\n\n\n\n<li>Add a note like: &#8220;Thank you for your order! As a special bonus, we\u2019ve included a free gift: [Free Gift Name].&#8221;<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">3. Include a thank you note in the package<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Add a printed note or sticker inside the package mentioning the free gift (e.g., &#8220;Enjoy your free gift!&#8221;). This adds a personal touch.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">4. Display a popup message<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">In the free gifts for WooCommerce plugin, you can enable pop-up to display offered gift products in the customer Cart or Checkout page.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To enable pop up message, go to <strong>iThemeland &gt; Free Gift &gt; Settings&nbsp;<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Then mark the following items:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Show popup after page load in Cart page<\/li>\n\n\n\n<li>Show popup after page load in Checkout page<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/20-display-popup-msg.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1489\" height=\"1061\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/20-display-popup-msg.png\" alt=\"Display popup messages settings in display tab\" class=\"wp-image-36388\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/20-display-popup-msg.png 1489w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/20-display-popup-msg-500x356.png 500w\" sizes=\"(max-width: 1489px) 100vw, 1489px\" \/><\/a><figcaption class=\"wp-element-caption\">Show free gifts as popup <\/figcaption><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">By notifying customers about free gifts, you create a positive shopping experience and increase customer satisfaction!<\/p>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center main-cta-cnt has-background is-layout-flex wp-container-core-columns-is-layout-8a83d729 wp-block-columns-is-layout-flex\" style=\"background-color:#3d67ff;padding-top:30px;padding-right:30px;padding-bottom:30px;padding-left:30px\">\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group is-layout-constrained wp-container-core-group-is-layout-5980c20d wp-block-group-is-layout-constrained\" style=\"padding-top:15px\">\n<p class=\"single-cta-heading has-white-color has-text-color has-link-color wp-elements-f8e1add8464777653a00ca2733bff66e wp-block-paragraph\" style=\"font-size:26px;font-style:normal;font-weight:800\">GIFTiT &#8211; Free Gifts For WooCommerce<\/p>\n\n\n\n<p class=\"single-cta-desc has-white-color has-text-color has-link-color wp-elements-b0d847be81671b6aa824bba0562f8b89 wp-block-paragraph\" style=\"font-size:16px\">The easy way to automatically add free gifts to WooCommerce orders<\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button main-cta-button\"><a class=\"wp-block-button__link has-text-color has-background wp-element-button\" href=\"https:\/\/ithemelandco.com\/plugins\/free-gifts-for-woocommerce\/?utm_source=blog&amp;utm_content=automatically-add-gift\" style=\"border-style:none;border-width:0px;border-radius:40px;color:#ffffff;background-color:#0fba5e;padding-top:10px;padding-right:30px;padding-bottom:10px;padding-left:30px;font-style:normal;font-weight:500\" target=\"_blank\" rel=\"noreferrer noopener\">Buy Plugin<\/a><\/div>\n\n\n\n<div class=\"wp-block-button is-style-outline is-style-outline--2\"><a class=\"wp-block-button__link has-white-background-color has-text-color has-background wp-element-button\" href=\"https:\/\/wordpress.org\/plugins\/ithemeland-free-gifts-for-woo\/\" style=\"border-style:none;border-width:0px;border-radius:40px;color:#3d67ff;padding-top:10px;padding-right:30px;padding-bottom:10px;padding-left:30px;font-style:normal;font-weight:500\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Free Version<\/a><\/div>\n<\/div>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"532\" height=\"355\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/giftit-test-banner.png\" alt=\"GIFTiT - Free Gifts For WooCommerce plugin by ithemeland\" class=\"wp-image-48720\" style=\"width:440px;height:auto\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/giftit-test-banner.png 532w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/giftit-test-banner-500x335.png 500w\" sizes=\"(max-width: 532px) 100vw, 532px\" \/><\/figure>\n<\/div>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\">How to test and troubleshoot automatic free gift issues?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If your automatic free gift feature isn\u2019t working as expected, follow these steps to test and troubleshoot the issue:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1. Test the free gift rule<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Add Products to Cart:<\/strong> Add items that meet the free gift conditions (e.g., cart total or product quantity).<\/li>\n\n\n\n<li><strong>Check Cart:<\/strong> Verify if the free gift is automatically added.<\/li>\n\n\n\n<li><strong>Adjust Cart:<\/strong> Change the cart (e.g., remove items) to see if the free gift is removed when conditions are no longer met.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">2. Check the plugin settings<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Go to <strong>iThemeland &gt; Free Gifts &gt; Rules&nbsp;<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Ensure the free gift rule is enabled and the conditions (e.g., cart total, product quantity) are correctly configured.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Verify that the free gift product is in stock and published.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3. Clear caching<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If you\u2019re using a caching plugin or server-side caching, clear the cache to ensure the latest changes are reflected.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">4. Check for conflicts<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Disable other plugins: <\/strong>Temporarily deactivate other plugins to check for conflicts.<\/li>\n\n\n\n<li><strong>Switch theme: <\/strong>Test with a default theme like <a href=\"https:\/\/wordpress.org\/themes\/storefront\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Storefront<\/a> to rule out theme-related issues.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">5. Test with different conditions<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Try creating a new free gift rule with simpler conditions (e.g., lower cart total) to see if the issue persists.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">6. Contact plugin support<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If the issue remains unresolved, contact the Free Gifts for WooCommerce plugin <a href=\"https:\/\/ithemelandco.com\/blog\/support-center\/\" target=\"_blank\" rel=\"noreferrer noopener\">support team<\/a> with details of the problem and steps to reproduce it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Adding automatic free gifts to WooCommerce orders is a proven strategy for increasing customer engagement, improving cart value, and encouraging repeat purchases. From simple \u201cfree product in cart\u201d campaigns to advanced conditional promotions, free gifts help online stores create a more rewarding shopping experience.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">While custom code can work for basic setups, using the <a href=\"https:\/\/ithemelandco.com\/plugins\/free-gifts-for-woocommerce\/?utm_source=blog&amp;utm_content=automatically-add-gift\">GIFTiT \u2013 Free Gifts For WooCommerce plugin<\/a> gives you far more flexibility, automation, and control without technical complexity. With features like auto add free gifts, subtotal-based rewards, tiered promotions, and coupon conditions, you can launch high-converting campaigns that grow your WooCommerce store more effectively.<\/p>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-7387b849 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">FAQ<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\">How do I automatically add a free gift in WooCommerce?<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">You can automatically add a free gift in WooCommerce by using custom PHP code with WooCommerce hooks or by using a plugin like GIFTiT \u2013 Free Gifts For WooCommerce. The plugin method is easier and provides advanced conditions without coding.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Can WooCommerce add free products to the cart automatically?<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">WooCommerce does not include a built-in auto add free product feature by default. However, plugins and custom code allow you to automatically insert free products into the cart when customers meet specific conditions.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">What is the best plugin to auto add free gifts in WooCommerce?<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">GIFTiT \u2013 Free Gifts For WooCommerce is one of the best plugins for automatically adding free gifts because it supports subtotal rules, Buy X Get Y offers, customer segmentation, coupon conditions, and automatic cart updates.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Can I add a free gift based on cart total in WooCommerce?<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">Yes. You can create rules that automatically add free gifts when the cart subtotal reaches a specific amount, such as \u201cSpend $50 and get a free product.\u201d<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">How do I create Buy X Get Y free gift offers in WooCommerce?<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">You can create Buy X Get Y promotions using WooCommerce free gift plugins. These rules allow customers to receive a free product automatically after purchasing a required quantity of items.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Can free gifts be combined with WooCommerce coupons?<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">Yes. Advanced WooCommerce free gift plugins allow you to combine free gift promotions with coupon codes, making it possible to unlock gifts only when certain coupons are applied.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Why are free gifts effective in WooCommerce stores?<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">Free gifts increase perceived value, encourage higher spending, improve customer satisfaction, and help reduce cart abandonment. They are commonly used to boost average order value and customer loyalty.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How do I remove free gifts when cart conditions change?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Most WooCommerce free gift plugins automatically remove the gift product if the customer no longer meets the promotion conditions, such as dropping below the minimum cart total.<\/p>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Automatically adding free gifts to WooCommerce cart is one of the easiest ways to increase conversions, improve customer satisfaction, and encourage larger purchases. Whether you want to reward loyal customers, create \u201cBuy X Get Y\u201d promotions, or boost average order value, automated free gift campaigns can make your offers more attractive without adding extra manual [&hellip;]<\/p>\n","protected":false},"author":137,"featured_media":36366,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[50,73],"tags":[],"class_list":["post-36364","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","category-woocommerce"],"featured_image_url":"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/04\/auto-add-free-gifts-inn-woo-orders-500x335.webp","excerpt_plain":"Automatically adding free gifts to WooCommerce cart is one of the easiest ways to increase conversions, improve customer satisfaction, and encourage larger purchases. Whether you want to reward loyal customers, create \u201cBuy X Get Y\u201d promotions, or boost average order value, automated free gift campaigns can make your offers more attractive without adding extra manual [&hellip;]","_embedded":{"wp:term":[[{"term_id":50,"name":"Tutorials","slug":"tutorials","term_group":0,"term_taxonomy_id":50,"taxonomy":"category","description":"Follow and learn the latest educational articles about WordPress plugins and WooCommerce here","parent":0,"count":256,"filter":"raw"},{"term_id":73,"name":"WooCommerce","slug":"woocommerce","term_group":0,"term_taxonomy_id":73,"taxonomy":"category","description":"Do you use WooCommerce to manage your online store? We suggest you read this category of WooCommerce articles.","parent":50,"count":205,"filter":"raw"}]]},"_links":{"self":[{"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/posts\/36364","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/users\/137"}],"replies":[{"embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/comments?post=36364"}],"version-history":[{"count":3,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/posts\/36364\/revisions"}],"predecessor-version":[{"id":51091,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/posts\/36364\/revisions\/51091"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/media\/36366"}],"wp:attachment":[{"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/media?parent=36364"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/categories?post=36364"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/tags?post=36364"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}