{"id":26638,"date":"2024-01-13T21:18:51","date_gmt":"2024-01-13T21:18:51","guid":{"rendered":"https:\/\/ithemelandco.com\/?p=26638"},"modified":"2025-10-16T11:31:25","modified_gmt":"2025-10-16T11:31:25","slug":"bulk-generate-multi-woocommerce-coupon-codes","status":"publish","type":"post","link":"https:\/\/ithemelandco.com\/blog\/bulk-generate-multi-woocommerce-coupon-codes\/","title":{"rendered":"WooCommerce Bulk Generate Coupons With 2 Easy Ways"},"content":{"rendered":"\n<p>Creating one single coupon in WooCommerce takes you only a few minutes, but what if you need to create fifty or a hundred coupons and assign each one to specific products or set specific conditions for them? This is a hard work that wastes your time and does not allow you to properly manage your business. The only solution to this problem is to bulk generate multi WooCommerce coupon codes.<\/p>\n\n\n\n<p>With the help of the WooCommerce coupon code generator, you can create as many coupons as you need with just one click. Bulk coupon generator WooCommerce is a very useful plugin that allows site managers to save time and effort in creating multiple coupons at once.<\/p>\n\n\n\n<p>In this post, you can learn 2 easy ways to bulk generate multiple WooCommerce coupon codes:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"#php-method\"><span style=\"text-decoration: underline\">Use PHP snippet to generate WooCommerce coupon<\/span><\/a>.<\/li>\n\n\n\n<li><a href=\"#plugin-method\"><span style=\"text-decoration: underline\">Use coupon code generator WooCommerce by WooCommerce coupons bulk edit plugin<\/span>.<\/a><\/li>\n<\/ul>\n\n\n\n<p>&nbsp;Also, we introduce you to a functional plugin that, in addition to WooCommerce bulk generate coupons, provides you with the essential tools for managing and bulk editing them.<\/p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" id=\"php-method\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">WooCommerce generate coupon code programmatically<\/h2>\n\n\n\n<p>One of the simplest methods to generate coupon code WooCommerce is adding a PHP snippet to the WordPress backend.<\/p>\n\n\n\n<p>To make this PHP snippet work, we recommend you take the below into consideration:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Don\u2019t use this method if you have no experience in code writing or working with <strong>function.php <\/strong>file.<\/li>\n\n\n\n<li>Back up your site before running this code.<\/li>\n\n\n\n<li>To make sure the basic information of your website remains unchanged, first create a child theme, then insert this code into <strong>function.php <\/strong>file.<\/li>\n\n\n\n<li>To trigger the function and make sure the coupons are generated, go to your WordPress admin URL with the <strong>\u201cbb-gen-coupons\u201d<\/strong> at the end like&nbsp;<strong>\/wp-admin\/admin.php?bb-gen-coupons.<\/strong>&nbsp;<\/li>\n\n\n\n<li>If you face any problems, temporarily switch to the Storefront theme, disable all plugins except WooCommerce, and test the snippet again.<\/li>\n<\/ul>\n\n\n\n<p>Here, you can find the PHP code to bulk generate multi WooCommerce coupon code:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/**\n&nbsp;* @snippet&nbsp; &nbsp; Bulk Generate Coupons @ WordPress Admin\n&nbsp;* @how-to&nbsp; &nbsp; Get CustomizeWoo.com FREE\n&nbsp;* @author&nbsp; &nbsp; Rodolfo Melogli\n&nbsp;* @compatible&nbsp; WooCommerce 6\n*\/\nadd_action( 'admin_init', 'bbloomer_generate_coupons_admin' );\nfunction bbloomer_generate_coupons_admin() {\n&nbsp;if ( isset( $_REQUEST&#091;'bb-gen-coupons'] ) ) { &nbsp;\n&nbsp; if ( ! current_user_can( 'manage_WooCommerce ' ) ) {\n&nbsp; &nbsp; &nbsp;wp_die( 'You do not have permission to bulk generate coupons' );\n&nbsp; } &nbsp;\n&nbsp; <mark class=\"has-inline-color has-luminous-vivid-amber-color\">$number_of_coupons = 100; \/\/ DEFINE BULK QUANTITY &nbsp;<\/mark>\n&nbsp; for ( $i = 1; $i &lt;= $number_of_coupons; $i++ ) {\n&nbsp; &nbsp; &nbsp;$coupon = new WC_Coupon();&nbsp; &nbsp; &nbsp;$random_code = bin2hex( random_bytes( 8 ) ); \/\/ 16 CHARS PHP 7+ ONLY\n&nbsp; &nbsp; &nbsp;if ( wc_get_coupon_id_by_code( $random_code ) ) continue; \/\/ SKIP IF CODE EXISTS\n&nbsp; &nbsp; &nbsp;$coupon-&gt;set_code( $random_code );\n&nbsp; &nbsp; &nbsp;$coupon-&gt;set_description( 'Coupon generated programmatically ('. $i. '\/'. $number_of_coupons. ')' );\n&nbsp; &nbsp; &nbsp;$coupon-&gt;set_discount_type( 'percent' );\n&nbsp; &nbsp; &nbsp;$coupon-&gt;set_amount( 20 );\n&nbsp; &nbsp; &nbsp;$coupon-&gt;set_minimum_amount( 1 );\n&nbsp; &nbsp; &nbsp;$coupon-&gt;set_individual_use( true );\n&nbsp;&nbsp;$coupon-&gt;set_product_categories( array( 54, 55 ) );\n&nbsp; &nbsp; &nbsp;$coupon-&gt;set_usage_limit_per_user( 1 );\n&nbsp; &nbsp; &nbsp;$coupon-&gt;save();&nbsp; &nbsp;\n&nbsp; }\n&nbsp;}\n}<\/code><\/pre>\n\n\n\n<p>After running this code, 100 coupons will be generated successfully on your WordPress site as illustrated below:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-created-coupons.png\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"556\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-created-coupons.png\" alt=\"result of WooCommerce bulk generate coupons\" class=\"wp-image-26640\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-created-coupons.png 1024w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-created-coupons-500x271.png 500w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-created-coupons-1000x543.png 1000w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<p>If you need to bulk generate more or fewer coupons, change the number in front of <strong>$number_of_coupons <\/strong>\u2013 highlighted in yellow.<\/p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" id=\"plugin-method\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Use WooCommerce coupons bulk edit plugin as WooCommerce bulk coupon generator<\/h2>\n\n\n\n<p>Using the <a href=\"https:\/\/ithemelandco.com\/plugins\/woocommerce-bulk-coupons-editing\/?utm_source=blog&amp;utm_content=bulk-generate-coupon\" target=\"_blank\" rel=\"noreferrer noopener\"><span style=\"text-decoration: underline\">WooCommerce coupons bulk edit plugin<\/span><\/a> enables you to create bulk WooCommerce coupons. You can create as many identical coupon codes as you need, all of which will apply the same discount to your customers. Even better, you can bulk edit coupons after creating them.<\/p>\n\n\n\n<p>Most WooCommerce coupon code generators only allow you to generate new coupons. While the WooCommerce coupons bulk editing plugin has a <strong>Duplicate<\/strong> tool. With this tool, you can clone as many existing coupons as you need.<\/p>\n\n\n\n<p>Also, if you want unique WooCommerce discount codes for the created coupons, you can use the plugin because it will automatically generate a unique WooCommerce code for each coupon.<\/p>\n\n\n\n<p>In the following, we will show you how to generate coupons in bulk using the coupon generator for the WooCommerce tool.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Install WooCommerce coupons bulk edit plugin<\/h3>\n\n\n\n<p>By <span style=\"text-decoration: underline\"><a href=\"https:\/\/ithemelandco.com\/docs\/woocommerce-bulk-coupons-editing\/how-to-install-the-woocommerce-bulk-coupons-editing-plugin\/\" target=\"_blank\" rel=\"noreferrer noopener\">downloading and installing the WooCommerce coupons bulk editing plugin<\/a><\/span> on your website, you have access to all tools required to bulk generate and bulk edit multi WooCommerce coupon code.<\/p>\n\n\n\n<p>To use this bulk coupon generator WooCommerce navigate to the below Address:<\/p>\n\n\n\n<p><strong>WordPress Dashboard &gt; iT Bulk Editing &gt; Woo Coupons<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-woo-coupons-section.png\"><img decoding=\"async\" width=\"141\" height=\"149\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-woo-coupons-section.png\" alt=\"select Woo Coupons section in Bulk Editing menu\" class=\"wp-image-26641\" \/><\/a><\/figure>\n\n\n\n<p>On this page, you can find a comprehensive toolbar and a list of all coupons in a table. In the Toolbar designed on top of the table, there are two helpful tools for WooCommerce generate coupon code, which are:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>New wooCommerce coupon generator<\/strong><\/li>\n\n\n\n<li><strong>WooCommerce coupon duplicator<\/strong><\/li>\n<\/ul>\n\n\n\n<p>Now, let\u2019s see how these tools help you to WooCommerce create coupon codes.<\/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-4a33225c 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-4f39da6d 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-8cc8435e13563773fe65a31a50956a9f\" style=\"font-size:26px;font-style:normal;font-weight:800\">CBULKiT &#8211; Advanced Bulk Coupons for WooCommerce plugin by ithemeland<\/p>\n\n\n\n<p class=\"single-cta-desc has-white-color has-text-color has-link-color wp-elements-ac265924964a53252fe254d2bbf4db82\" style=\"font-size:16px\">The easy way to bulk generate coupon codes in WooCommerce<\/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\/woocommerce-bulk-coupons-editing\/?utm_source=blog&amp;utm_content=bulk-generate-coupon\" 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-woo-bulk-coupons-editing-lite\/\" 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 decoding=\"async\" width=\"532\" height=\"355\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/cbulkit-banner.png\" alt=\"CBULKiT - Advanced Bulk Coupons for WooCommerce plugin by ithemeland\" class=\"wp-image-48719\" style=\"width:440px;height:auto\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/cbulkit-banner.png 532w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/cbulkit-banner-500x335.png 500w\" sizes=\"(max-width: 532px) 100vw, 532px\" \/><\/figure>\n<\/div>\n<\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Generate coupon code WooCommerce&nbsp;<\/h3>\n\n\n\n<p>In WooCommerce coupons bulk editing plugin, you can use one of the below methods to bulk generate coupon code WooCommerce :<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><span style=\"text-decoration: underline\"><a href=\"#generate-new-method\" data-type=\"internal\" data-id=\"#generate-new-method\">Bulk generate new WooCommerce coupons<\/a><\/span>.<\/li>\n\n\n\n<li><span style=\"text-decoration: underline\"><a href=\"#duplicate-method\" data-type=\"internal\" data-id=\"#duplicate-method\">Bulk duplicate existed WooCommerce coupons<\/a><\/span>.<\/li>\n<\/ol>\n\n\n\n<p>Read the following step by step guide to get familiar with both methods.<\/p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" id=\"generate-new-method\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">Method #1: WooCommerce bulk generate new coupons<\/h4>\n\n\n\n<p>If you need to use random coupon code generator WooCommerce for bulk creating new coupons, try to:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Press the <strong>New coupon generator icon<\/strong> in the toolbar.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-new-coupon-generator-icon.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1730\" height=\"481\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-new-coupon-generator-icon.png\" alt=\"select new coupon generator icon in toolbar\" class=\"wp-image-26642\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-new-coupon-generator-icon.png 1730w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-new-coupon-generator-icon-500x139.png 500w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-new-coupon-generator-icon-1536x427.png 1536w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-new-coupon-generator-icon-1000x278.png 1000w\" sizes=\"(max-width: 1730px) 100vw, 1730px\" \/><\/a><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>In the prompted pop-up, write the number of coupons you want to bulk generate. For example, we decided to generate <strong>10<\/strong> new coupons.<\/li>\n\n\n\n<li>Press the <strong>Create<\/strong> button.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-number-coupons.png\"><img loading=\"lazy\" decoding=\"async\" width=\"787\" height=\"217\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-number-coupons.png\" alt=\"select number coupons in Bulk Editing Plugin\" class=\"wp-image-26643\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-number-coupons.png 787w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-number-coupons-500x138.png 500w\" sizes=\"(max-width: 787px) 100vw, 787px\" \/><\/a><\/figure>\n\n\n\n<p>That\u2019s it. The WooCommerce bulk generated coupons have been done successfully.&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-created-coupons-.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1729\" height=\"485\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-created-coupons-.png\" alt=\"result bulk generate multi WooCommerce coupon codes in Coupons bulk editing plugin\" class=\"wp-image-26644\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-created-coupons-.png 1729w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-created-coupons--500x140.png 500w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-created-coupons--1536x431.png 1536w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-created-coupons--1000x281.png 1000w\" sizes=\"(max-width: 1729px) 100vw, 1729px\" \/><\/a><\/figure>\n\n\n\n<p>After generating new coupons, you need to edit some features like discount type, discount amount, products, etc.<\/p>\n\n\n\n<p>In the WooCommerce coupons bulk editing plugin, there are three methods for making changes on different fields of coupons including:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong><a href=\"#inline-edit\"><span style=\"text-decoration: underline\">Inline editing<\/span><\/a>:<\/strong> Edit one field of a single WooCommerce coupon directly in the table.<\/li>\n\n\n\n<li><strong><span style=\"text-decoration: underline\"><a href=\"#bind-edit\">Bind editing<\/a><\/span>:<\/strong> Edit one field of multiple WooCommerce coupons in the table.<\/li>\n\n\n\n<li><strong><span style=\"text-decoration: underline\"><a href=\"#bulk-edit\">Bulk editing<\/a><\/span>:<\/strong> Edit multiple fields of multiple WooCommerce coupons.<\/li>\n<\/ul>\n\n\n\n<p>Let\u2019s try to change some coupon fields with these methods.<\/p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" id=\"inline-edit\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">Inline edit discount type of coupon<\/h4>\n\n\n\n<p>After bulk generating coupons, all of them have the same discount type. To change this field by inline edit, follow the below steps:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Press the <strong>Column Manager<\/strong> icon from toolbar to open the <strong>Column Manager<\/strong> form.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-column-manager-icon-1.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1729\" height=\"474\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-column-manager-icon-1.png\" alt=\"select column manager icon in toolbar\" class=\"wp-image-26645\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-column-manager-icon-1.png 1729w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-column-manager-icon-1-500x137.png 500w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-column-manager-icon-1-1536x421.png 1536w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-column-manager-icon-1-1000x274.png 1000w\" sizes=\"(max-width: 1729px) 100vw, 1729px\" \/><\/a><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>In this form mark <strong>Discount type<\/strong> and press the <strong>Apply to table <\/strong>button.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-discount-type-field-1.jpg\"><img loading=\"lazy\" decoding=\"async\" width=\"1413\" height=\"549\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-discount-type-field-1.jpg\" alt=\"select discount type field in column profiles form\" class=\"wp-image-26649\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-discount-type-field-1.jpg 1413w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-discount-type-field-1-500x194.jpg 500w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-discount-type-field-1-1000x389.jpg 1000w\" sizes=\"(max-width: 1413px) 100vw, 1413px\" \/><\/a><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Open the dropdown list of <strong>Discount types<\/strong> related to one of the coupons.<\/li>\n\n\n\n<li>Choose one of the <strong>Discount Types<\/strong> from the list.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-discount-type-field.png\"><img loading=\"lazy\" decoding=\"async\" width=\"842\" height=\"514\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-discount-type-field.png\" alt=\"result discount type field in coupons list\" class=\"wp-image-26651\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-discount-type-field.png 842w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-discount-type-field-500x305.png 500w\" sizes=\"(max-width: 842px) 100vw, 842px\" \/><\/a><\/figure>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" id=\"bind-edit\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">Bind edit products assigned to the WooCommerce coupon<\/h4>\n\n\n\n<p>By following the below steps, you can <strong>bind edit<\/strong> products assigned to multiple WooCommerce coupons:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add products column to the table by marking the field in the <strong>Column manager<\/strong> form.<\/li>\n\n\n\n<li>Select some coupons in the table (1).<\/li>\n\n\n\n<li>Press <strong>Bind Edit<\/strong> icon in the toolbar (2).<\/li>\n\n\n\n<li>Click on the <strong>Products<\/strong> field related to one of the selected coupons (3).<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-bind-edit-icon.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1309\" height=\"474\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-bind-edit-icon.png\" alt=\"select bind edit icon in toolbar\" class=\"wp-image-26652\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-bind-edit-icon.png 1309w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-bind-edit-icon-500x181.png 500w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-bind-edit-icon-1000x362.png 1000w\" sizes=\"(max-width: 1309px) 100vw, 1309px\" \/><\/a><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>In the displayed pop up, choose the products you want to be assigned to these coupons from the list then press <strong>Save Changes<\/strong>.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/add-product-to-coupon.png\"><img loading=\"lazy\" decoding=\"async\" width=\"782\" height=\"197\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/add-product-to-coupon.png\" alt=\"add products to coupon\" class=\"wp-image-26653\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/add-product-to-coupon.png 782w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/add-product-to-coupon-500x126.png 500w\" sizes=\"(max-width: 782px) 100vw, 782px\" \/><\/a><\/figure>\n\n\n\n<p>Wait a few seconds and the WooCommerce bulk coupon generator will make changes appropriately.<\/p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" id=\"duplicate-method\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">Method #2: Duplicate coupons to WooCommerce create coupon code<\/h4>\n\n\n\n<p>Duplicating coupons is the next method for creating new coupons in this coupon code generator WooCommerce plugin.&nbsp;<\/p>\n\n\n\n<p>To clone some existing coupons, first, try to filter the coupons you want to duplicate<\/p>\n\n\n\n<p>In the WooCommerce coupons bulk edit plugin, a comprehensive <strong>Filter Form<\/strong> supporting all WooCommerce coupon fields. To open this form, press the first icon in the toolbar. Then set your desired filters in different fields and finally press <strong>Get Coupons<\/strong> to see the filtered coupons in the table.<\/p>\n\n\n\n<p>For example, if you want to filter coupons with <strong>Percentage discount type<\/strong>, you can choose this option from the list of <strong>Discount types<\/strong> in the filter form as illustrated below:&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/duplicate-coupons-to-create-coupon-code.jpg\"><img loading=\"lazy\" decoding=\"async\" width=\"787\" height=\"661\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/duplicate-coupons-to-create-coupon-code.jpg\" alt=\"duplicate coupons to create coupon code in filter form\" class=\"wp-image-26654\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/duplicate-coupons-to-create-coupon-code.jpg 787w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/duplicate-coupons-to-create-coupon-code-500x420.jpg 500w\" sizes=\"(max-width: 787px) 100vw, 787px\" \/><\/a><\/figure>\n\n\n\n<p>Then by clicking on <strong>Get Coupons <\/strong>button, all WooCommerce coupons with <strong>Percentage Discount type<\/strong> will be displayed in the table.<\/p>\n\n\n\n<p>Now, you are ready to duplicate them by following the below steps:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Mark some WooCommerce coupons on the table.<\/li>\n\n\n\n<li>Press the <strong>Duplicate icon<\/strong> in the toolbar.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-duplicate-icon.png\"><img loading=\"lazy\" decoding=\"async\" width=\"814\" height=\"479\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-duplicate-icon.png\" alt=\"select duplicate icon in toolbar\" class=\"wp-image-26655\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-duplicate-icon.png 814w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-duplicate-icon-500x294.png 500w\" sizes=\"(max-width: 814px) 100vw, 814px\" \/><\/a><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Write how many times you want to duplicate the WooCommerce coupons. For example, we tried to duplicate the coupons 3 times.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-number-duplicate.png\"><img loading=\"lazy\" decoding=\"async\" width=\"787\" height=\"214\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-number-duplicate.png\" alt=\"select number duplicate in Bulk Editing Plugin\" class=\"wp-image-26656\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-number-duplicate.png 787w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-number-duplicate-500x136.png 500w\" sizes=\"(max-width: 787px) 100vw, 787px\" \/><\/a><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Press the <strong>Start duplicate <\/strong>button.<\/li>\n<\/ul>\n\n\n\n<p>Your task has been done successfully. As you may notice in the below picture, all selected coupons are duplicated <strong>3<\/strong> times:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-duplicate-coupons-.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1728\" height=\"413\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-duplicate-coupons-.png\" alt=\"result duplicate coupons in list\" class=\"wp-image-26659\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-duplicate-coupons-.png 1728w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-duplicate-coupons--500x120.png 500w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-duplicate-coupons--1536x367.png 1536w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-duplicate-coupons--1000x239.png 1000w\" sizes=\"(max-width: 1728px) 100vw, 1728px\" \/><\/a><\/figure>\n\n\n\n<p>Now, let\u2019s see how you can bulk edit some fields of the bulk generated coupons<\/p>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" id=\"bulk-edit\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">Bulk edit WooCommerce coupon amount field<\/h4>\n\n\n\n<p>Suppose that you want to set the <strong>Coupon Amount<\/strong> of all bulk generated coupons to <strong>20<\/strong>. To make this happen, follow the below instructions:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Mark WooCommerce coupons in the table.<\/li>\n\n\n\n<li>Click on the <strong>Bulk Edit<\/strong> icon in the toolbar to open the bulk edit form.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-bulk-edit-icon.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1717\" height=\"453\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-bulk-edit-icon.png\" alt=\"select bulk edit icon in toolbar\" class=\"wp-image-26661\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-bulk-edit-icon.png 1717w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-bulk-edit-icon-500x132.png 500w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-bulk-edit-icon-1536x405.png 1536w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-bulk-edit-icon-1000x264.png 1000w\" sizes=\"(max-width: 1717px) 100vw, 1717px\" \/><\/a><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>In the <strong>General<\/strong> tab of the <strong>Bulk Edit<\/strong> form, find the <strong>Coupon Amount<\/strong> field.<\/li>\n\n\n\n<li>Open the <strong>Operator<\/strong> list and choose <strong>Set New.<\/strong><\/li>\n\n\n\n<li>Write <strong>20<\/strong> in the text box.<\/li>\n\n\n\n<li>Press the <strong>Do Bulk Edit <\/strong>button.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-coupon-amount-field.jpg\"><img loading=\"lazy\" decoding=\"async\" width=\"830\" height=\"553\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-coupon-amount-field.jpg\" alt=\"select coupon amount field in bulk edit form\" class=\"wp-image-26662\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-coupon-amount-field.jpg 830w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/select-coupon-amount-field-500x333.jpg 500w\" sizes=\"(max-width: 830px) 100vw, 830px\" \/><\/a><\/figure>\n\n\n\n<p>As shown below, all Coupon Amount have been changed successfully as we expected.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-coupon-amount-field.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1715\" height=\"451\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-coupon-amount-field.png\" alt=\"result coupon amount field in list\" class=\"wp-image-26663\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-coupon-amount-field.png 1715w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-coupon-amount-field-500x131.png 500w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-coupon-amount-field-1536x404.png 1536w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/01\/result-coupon-amount-field-1000x263.png 1000w\" sizes=\"(max-width: 1715px) 100vw, 1715px\" \/><\/a><\/figure>\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-4a33225c 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-4f39da6d 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-8cc8435e13563773fe65a31a50956a9f\" style=\"font-size:26px;font-style:normal;font-weight:800\">CBULKiT &#8211; Advanced Bulk Coupons for WooCommerce plugin by ithemeland<\/p>\n\n\n\n<p class=\"single-cta-desc has-white-color has-text-color has-link-color wp-elements-ac265924964a53252fe254d2bbf4db82\" style=\"font-size:16px\">The easy way to bulk generate coupon codes in WooCommerce<\/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\/woocommerce-bulk-coupons-editing\/?utm_source=blog&amp;utm_content=bulk-generate-coupon\" 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-woo-bulk-coupons-editing-lite\/\" 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 decoding=\"async\" width=\"532\" height=\"355\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/cbulkit-banner.png\" alt=\"CBULKiT - Advanced Bulk Coupons for WooCommerce plugin by ithemeland\" class=\"wp-image-48719\" style=\"width:440px;height:auto\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/cbulkit-banner.png 532w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/cbulkit-banner-500x335.png 500w\" sizes=\"(max-width: 532px) 100vw, 532px\" \/><\/figure>\n<\/div>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Why do you need to bulk generate multi WooCommerce coupon codes?<\/h2>\n\n\n\n<p>If you set up an online store with WooCommerce and want to generate multiple coupons to offer to customers, WooCommerce bulk&nbsp; coupons will save you a lot of time!<\/p>\n\n\n\n<p>Store managers need to generate a large number of coupons for several important reasons.<\/p>\n\n\n\n<p>The first reason is the ability to evaluate the performance of various marketing campaigns. One of the biggest disadvantages of using a single code for multiple users and marketing campaigns is that you can&#8217;t be sure which one exactly encouraged the customers and motivated them to buy. For example, if you use the same coupon code on both your Instagram marketing and email marketing, how can you determine which method has a better performance?<\/p>\n\n\n\n<p>The second reason for using multiple coupons is to assign them to different customers. This way, you can check which coupons are the most used, how many customers are using them, and when they are using the discounts.<\/p>\n\n\n\n<p>Many online store managers only use a few limited coupon codes just because it takes a lot of time to create coupons in WooCommerce, and this mistake makes them unable to plan their marketing strategies.<\/p>\n\n\n\n<p>But there is a simple solution to this problem. WooCommerce bulk coupon generator plugin is an ideal way to create WooCommerce bulk coupons and use them in any way you want. For example, you can create random coupon codes and use each one for a separate marketing campaign.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Bulk generate multi WooCommerce coupon code is a great solution when you need to create a large number of coupons with random coupon codes in a few seconds. If you want to eliminate manual work, save time, and avoid the hassle of creating coupon codes individually, WooCommerce coupons bulk edit plugin is the recommended option.<\/p>\n\n\n\n<p>With the WooCommerce coupons bulk edit plugin, you can create WooCommerce bulk coupons in two ways:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Create multiple new WooCommerce coupons.<\/li>\n\n\n\n<li>Duplicate existing WooCommerce coupons.<\/li>\n<\/ul>\n\n\n\n<p>This advanced plugin also allows you to bulk edit coupon fields and has hundreds of other useful tools and features.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Creating one single coupon in WooCommerce takes you only a few minutes, but what if you need to create fifty or a hundred coupons and assign each one to specific products or set specific conditions for them? This is a hard work that wastes your time and does not allow you to properly manage your [&hellip;]<\/p>\n","protected":false},"author":1990,"featured_media":26665,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[50,73],"tags":[],"class_list":["post-26638","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\/2024\/01\/bulk-generate-multi-coupon-codes-500x335.jpg","excerpt_plain":"Creating one single coupon in WooCommerce takes you only a few minutes, but what if you need to create fifty or a hundred coupons and assign each one to specific products or set specific conditions for them? This is a hard work that wastes your time and does not allow you to properly manage your [&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\/26638","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\/1990"}],"replies":[{"embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/comments?post=26638"}],"version-history":[{"count":2,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/posts\/26638\/revisions"}],"predecessor-version":[{"id":48949,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/posts\/26638\/revisions\/48949"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/media\/26665"}],"wp:attachment":[{"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/media?parent=26638"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/categories?post=26638"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/tags?post=26638"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}