{"id":23756,"date":"2023-10-26T09:51:06","date_gmt":"2023-10-26T09:51:06","guid":{"rendered":"https:\/\/ithemelandco.com\/?p=23756"},"modified":"2025-10-16T11:57:46","modified_gmt":"2025-10-16T11:57:46","slug":"woocommerce-bulk-edit-product-prices-by-formula","status":"publish","type":"post","link":"https:\/\/ithemelandco.com\/blog\/woocommerce-bulk-edit-product-prices-by-formula\/","title":{"rendered":"WooCommerce bulk edit product price by formula (2 easy ways)"},"content":{"rendered":"\n<p>Updating product prices with WooCommerce&#8217;s default options has certain limitations. You can only change the prices to a fixed or percentage amount, but there is no possibility to bulk edit product prices by formula in the WooCommerce editor. In fact, one of the most common questions of WooCommerce store managers is how to bulk edit product prices by formula in WooCommerce.<\/p>\n\n\n\n<p>If you also want to change the price of your products according to a specific formula and are looking for an ideal solution, read this post. Here, first, we will teach you how to use coding for bulk editing product price by formula, and then we will introduce you to WooCommerce products bulk edit pro plugin, with the help of which you can use any formula to bulk edit your product prices.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Use coding to bulk edit product prices by formula<\/h2>\n\n\n\n<p>If you are familiar with coding in WordPress, you can use the following guide to bulk edit product prices by any formula. Before you use this code to change the product prices, keep the following points in mind:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>To add code to your WordPress site, use one of the following methods:<\/li>\n<\/ul>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Create a child theme and save the code in the <strong>functions.php<\/strong> theme<strong> <\/strong>file located in the <strong>Appearance \u27a1 Theme File Editor<\/strong> path.<\/li>\n\n\n\n<li>Use the <a href=\"https:\/\/wordpress.org\/plugins\/code-snippets\/\" target=\"_blank\" rel=\"noreferrer noopener\"><span style=\"text-decoration: underline\">Code Snippets p<\/span><\/a><a href=\"https:\/\/wordpress.org\/plugins\/code-snippets\/\" target=\"_blank\" rel=\"noopener\"><span style=\"text-decoration: underline\">lugin<\/span><\/a> to add your code to WordPress.<\/li>\n<\/ol>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Before you add any codes to your site, be sure to back up the data so that you can restore the site to its previous state in case of any problems.<\/li>\n<\/ul>\n\n\n\n<p>Now you can get help from the following coding for bulk editing product price by formula for WooCommerce:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>function filtering_product_prices( $price, $product ) {\n$price = (float)$price;\n<mark style=\"background-color:#fcb900\" class=\"has-inline-color has-black-color\">$new_price = $price * 1 ;<\/mark>\n\nreturn ceil($new_price);\n}\nadd_filter('WooCommerce_product_get_price', 'custom_price', 90, 2 );\nadd_filter('WooCommerce_product_get_regular_price', 'custom_price', 90, 2 );\nadd_filter('WooCommerce_product_variation_get_regular_price', 'custom_price', 99, 2 );\nadd_filter('WooCommerce_product_variation_get_price', 'custom_price' , 99, 2 );\nadd_filter('WooCommerce_variation_prices_price', 'custom_variation_price', 99, 3 );\nadd_filter('WooCommerce_variation_prices_regular_price', 'custom_variation_price', 99, 3 );\nfunction custom_price( $price, $product ) {\n    wc_delete_product_transients($product-&gt;get_id());\nreturn filtering_product_prices( $price, $product );\n}\nfunction custom_variation_price( $price, $variation, $product ) {&nbsp;&nbsp;&nbsp;&nbsp;\n    wc_delete_product_transients($variation-&gt;get_id());\nreturn filtering_product_prices( $price, $product );\n}<\/code><\/pre>\n\n\n\n<p>In order to be able to apply the desired changes to the product price using a formula, you must change the new price variable, which is highlighted in yellow, to your desired formula. Let&#8217;s give some examples to make it clear to you.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Example 1: Cut the regular price by half<\/h3>\n\n\n\n<p>To cut all regular prices by half, simply replace the yellow highlighted line below:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$new_price = $price * 0.5;<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Example 2: Increase the regular prices of the Accessories category by 25.<\/h3>\n\n\n\n<p>To make such a change, replace the following code:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>if (has_term( 'accessories', 'product_cat' )) {&nbsp;&nbsp;&nbsp;\nreturn ceil((float)$price + 25);&nbsp;&nbsp;\n}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Example 3: Decrease all products in the Accessories category by 10% and increase the price of Hats by one-third.<\/h3>\n\n\n\n<p>To do this, you need to make the below changes:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>if (has_term( 'accessories', 'product_cat' )) {&nbsp;&nbsp;&nbsp;<br>return ceil((float)$price *1.1);&nbsp;&nbsp;<br>} elseif (has_term( 'hats', 'product_cat' )) {&nbsp;<br>return ceil((float)$price*4\/3);&nbsp;<br>}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Example 4: Decrease the price of all products cheaper than $100 by 15.<br>Use the below code to make this change:<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>if ( $price &lt; 100 ) {&nbsp;&nbsp;<br>return ceil((float)$price-15);&nbsp;&nbsp;<br>}&nbsp;<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Use WooCommerce products bulk edit pro plugin to bulk edit product prices by formula<\/h2>\n\n\n\n<p><a href=\"https:\/\/ithemelandco.com\/plugins\/woocommerce-bulk-product-editing\/?utm_source=blog&amp;utm_content=price-by-formula\" data-type=\"link\" data-id=\"https:\/\/ithemelandco.com\/plugins\/woocommerce-bulk-product-editing\/?utm_source=blog&amp;utm_content=price-by-formula\" target=\"_blank\" rel=\"noreferrer noopener\"><span style=\"text-decoration: underline\">WooCommerce products bulk edit plugin<\/span><\/a> provides you with the most useful tools and options which is needed to bulk edit any product features. By getting help from this plugin, you can easily filter your products and then make any changes in their WooCommerce fields.<\/p>\n\n\n\n<p>One of the important uses of this plugin is to bulk edit product prices by formula for WooCommerce. Making these changes on your WooCommerce site is possible by following the 3 simple steps:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Install WooCommerce products bulk edit pro plugin<\/h3>\n\n\n\n<p>The first step to using the WooCommerce products bulk edit pro plugin is to download and install it on your WordPress website.<\/p>\n\n\n\n<p>After <a href=\"https:\/\/ithemelandco.com\/docs\/woocommerce-bulk-product-editing\/how-to-install-the-woocommerce-bulk-product-editing-plugin\/\" data-type=\"link\" data-id=\"https:\/\/ithemelandco.com\/blog\/docs\/woocommerce-bulk-product-editing\/how-to-install-the-woocommerce-bulk-product-editing-plugin\/\"><span style=\"text-decoration: underline\">installing and activating t<\/span><\/a><a href=\"https:\/\/ithemelandco.com\/blog\/docs\/woocommerce-bulk-product-editing\/how-to-install-the-woocommerce-bulk-product-editing-plugin\/\" data-type=\"link\" data-id=\"https:\/\/ithemelandco.com\/blog\/docs\/woocommerce-bulk-product-editing\/how-to-install-the-woocommerce-bulk-product-editing-plugin\/\" target=\"_blank\" rel=\"noreferrer noopener\"><span style=\"text-decoration: underline\">h<\/span><\/a><a href=\"https:\/\/ithemelandco.com\/docs\/woocommerce-bulk-product-editing\/how-to-install-the-woocommerce-bulk-product-editing-plugin\/\" data-type=\"link\" data-id=\"https:\/\/ithemelandco.com\/blog\/docs\/woocommerce-bulk-product-editing\/how-to-install-the-woocommerce-bulk-product-editing-plugin\/\" target=\"_blank\" rel=\"noreferrer noopener\"><span style=\"text-decoration: underline\">e plugin<\/span>,<\/a> you will see its bulk editing option in the WordPress dashboard. Then, by pressing <strong>Woo Products<\/strong>, you can visit the main page of this bulk editing plugin..<\/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-3eb088219dcb11e14a6e3b37121408c5\" style=\"font-size:26px;font-style:normal;font-weight:800\">PBULKiT &#8211; Bulk Edit WooCommerce Products<\/p>\n\n\n\n<p class=\"single-cta-desc has-white-color has-text-color has-link-color wp-elements-dc41d5ea33caad705f254cfeb11de8b9\" style=\"font-size:16px\">The easy way to bulk edit product prices by formula 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-product-editing\/?utm_source=blog&amp;utm_content=price-by-formula\" 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-product-editor-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 fetchpriority=\"high\" decoding=\"async\" width=\"532\" height=\"355\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/pbulkit-banner.png\" alt=\"PBULKiT - Bulk Edit WooCommerce Products plugin by ithemeland\" class=\"wp-image-48724\" style=\"width:440px;height:auto\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/pbulkit-banner.png 532w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/pbulkit-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: Filter the desired products<\/h3>\n\n\n\n<p>On the main page of the WooCommerce product bulk edit pro plugin, a list of all products is observed with a comprehensive toolbar designed at the top of the table. The first icon in this toolbar is used for opening the <strong>Filter<\/strong> <strong>Form<\/strong>.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-woo-products-menu-and-choose-filter-button.png\"><img decoding=\"async\" width=\"1913\" height=\"571\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-woo-products-menu-and-choose-filter-button.png\" alt=\"select woo products menu and choose filter button in bulk edit plugin\" class=\"wp-image-23773\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-woo-products-menu-and-choose-filter-button.png 1913w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-woo-products-menu-and-choose-filter-button-500x149.png 500w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-woo-products-menu-and-choose-filter-button-1536x458.png 1536w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-woo-products-menu-and-choose-filter-button-1000x298.png 1000w\" sizes=\"(max-width: 1913px) 100vw, 1913px\" \/><\/a><\/figure>\n\n\n\n<p>As you may notice in the picture below, the <strong>Filter Form<\/strong> has been divided into eight sections, providing all the WooCommerce fields for filtering the products.&nbsp;<\/p>\n\n\n\n<p>You can use this form to filter your desired products based on any value, like stock quantity, price range, category, etc. In the following example, we will show you how to use these effective <strong>Filter Form<\/strong> before bulk editing product price by formula.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-general-tab-in-filter-form-1.png\"><img decoding=\"async\" width=\"1422\" height=\"891\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-general-tab-in-filter-form-1.png\" alt=\"select general tab in filter form bulk edit plugin\" class=\"wp-image-23774\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-general-tab-in-filter-form-1.png 1422w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-general-tab-in-filter-form-1-500x313.png 500w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-general-tab-in-filter-form-1-1000x627.png 1000w\" sizes=\"(max-width: 1422px) 100vw, 1422px\" \/><\/a><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Bulk edit product prices by formula<\/h3>\n\n\n\n<p>After filtering the products, you have to follow the below instructions to bulk edit product price by formula for WooCommerce:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Mark some of the products in the product table to select them for bulk editing their prices.<\/li>\n\n\n\n<li>Open the <strong>Bulk Edit<\/strong> form by clicking on the icon illustrated below:<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/mark-products-and-select-bulk-edit-button.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1745\" height=\"581\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/mark-products-and-select-bulk-edit-button.png\" alt=\"mark products and select bulk edit button in bulk edit plugin\" class=\"wp-image-23776\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/mark-products-and-select-bulk-edit-button.png 1745w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/mark-products-and-select-bulk-edit-button-500x166.png 500w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/mark-products-and-select-bulk-edit-button-1536x511.png 1536w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/mark-products-and-select-bulk-edit-button-1000x333.png 1000w\" sizes=\"(max-width: 1745px) 100vw, 1745px\" \/><\/a><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>In the <strong>Bulk Edit<\/strong> form, go to the <strong>Pricing<\/strong> tab.<\/li>\n\n\n\n<li>In front of the <strong>Regular Price<\/strong>, there are three boxes.&nbsp;<\/li>\n<\/ul>\n\n\n\n<p>The first box is a list of operators:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Set New:<\/strong> Set new value for product price.<\/li>\n\n\n\n<li><strong>Clear Value:<\/strong> clear or remove product price value.<\/li>\n\n\n\n<li><strong>Formula: <\/strong>Change product price value by formula.<\/li>\n\n\n\n<li><strong>Increase by Value:<\/strong> Increase product price by value.<\/li>\n\n\n\n<li><strong>Decrease by Value:<\/strong> Decrease product price by value.<\/li>\n\n\n\n<li><strong>Increase by %:<\/strong> Increase product price by percentage.<\/li>\n\n\n\n<li><strong>Decrease by %:<\/strong> Decrease product price by percentage.<\/li>\n\n\n\n<li><strong>Increase by Value (From sale):<\/strong> Increase product price by value based on product sale value.<\/li>\n\n\n\n<li><strong>Increase by %(From sale): <\/strong>Increase product price by percentage based on sale value.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-regular-price-options.png\"><img loading=\"lazy\" decoding=\"async\" width=\"909\" height=\"320\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-regular-price-options.png\" alt=\"select regular price options in bulk edit form to bulk edit product prices by formula\" class=\"wp-image-23777\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-regular-price-options.png 909w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-regular-price-options-500x176.png 500w\" sizes=\"(max-width: 909px) 100vw, 909px\" \/><\/a><\/figure>\n\n\n\n<p>If you choose <strong>Formula <\/strong>from the drop-down list in this box, you can write a formula in the next box.<\/p>\n\n\n\n<p>You can use all mathematical operators to write a customized formula, including:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Multiplication (*)&nbsp;<\/li>\n\n\n\n<li>Division (\/)&nbsp;<\/li>\n\n\n\n<li>Addition (+)&nbsp;<\/li>\n\n\n\n<li>Subtraction (-)<\/li>\n<\/ul>\n\n\n\n<p><strong>Note:<\/strong> By choosing <strong>Increase\/ Decrease by value\/%<\/strong>, you can add or subtract any fixed\/percent amount from the current value. It is also possible to bulk edit the regular price based on the sale price by selecting <strong>Increase by Value\/%<\/strong> (From sale). The same options are available for Sale Prices as well.<\/p>\n\n\n\n<p>The last box is used to round the price if needed.&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>After writing the formula, you need to press the <strong>Do Bulk Edit<\/strong> button to let the plugin update the regular prices of the selected products based on it.<\/li>\n<\/ul>\n\n\n\n<p>To help you write the formula correctly and exactly based on your needs, we are going to make some examples in the following.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-formula-in-regular-price.png\"><img loading=\"lazy\" decoding=\"async\" width=\"856\" height=\"901\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-formula-in-regular-price.png\" alt=\"select formula in regular price action in bulk edit form\" class=\"wp-image-23778\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-formula-in-regular-price.png 856w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-formula-in-regular-price-500x526.png 500w\" sizes=\"(max-width: 856px) 100vw, 856px\" \/><\/a><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Bulk Edit WooCommerce simple product price by formula<\/h3>\n\n\n\n<p>Simple products are the most popular types in WooCommerce online stores and store managers usually need to update their prices. The steps for WooCommerce bulk pricing of simple products are exactly as we described before. However, we will review it briefly to make it clear.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Go to the <strong>Filter Form.<\/strong><\/li>\n\n\n\n<li>Open the <strong>Type<\/strong> tab and locate the <strong>Product Type<\/strong> field.<\/li>\n\n\n\n<li>Choose <strong>Simple Product<\/strong> from the list.<\/li>\n\n\n\n<li>Press <strong>Get Product<\/strong> to see a list of Simple products in the table.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/filter-simple-product.png\"><img loading=\"lazy\" decoding=\"async\" width=\"651\" height=\"425\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/filter-simple-product.png\" alt=\"Filter simple product in WooCommerce products bulk edit plugin\" class=\"wp-image-29529\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/filter-simple-product.png 651w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/filter-simple-product-500x326.png 500w\" sizes=\"(max-width: 651px) 100vw, 651px\" \/><\/a><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Mark some products on the table.<\/li>\n\n\n\n<li>Press the <strong>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\/06\/bulk-edit-products.png\"><img loading=\"lazy\" decoding=\"async\" width=\"454\" height=\"183\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/bulk-edit-products.png\" alt=\"Mark desired products and bulk edit in WooCommerce products bulk edit plugin table\" class=\"wp-image-29530\" \/><\/a><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Go to the <strong>Pricing<\/strong> tab in the <strong>Bulk Edit<\/strong> form.<\/li>\n\n\n\n<li>Choose <strong>Formula<\/strong> from the list of <strong>Operators<\/strong> and insert your formula in the <strong>Regular price<\/strong> or <strong>Sale Price<\/strong> fields.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/set-sale-price-formula.png\"><img loading=\"lazy\" decoding=\"async\" width=\"730\" height=\"398\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/set-sale-price-formula.png\" alt=\"Set sale price formula in WooCommerce bulk edit form\" class=\"wp-image-29531\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/set-sale-price-formula.png 730w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/set-sale-price-formula-500x273.png 500w\" sizes=\"(max-width: 730px) 100vw, 730px\" \/><\/a><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Press <strong>Do Bulk Edit<\/strong> to change product price.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/bulk-edit-sale-price-result.png\"><img loading=\"lazy\" decoding=\"async\" width=\"454\" height=\"174\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/bulk-edit-sale-price-result.png\" alt=\"Bulk edit products sale price result in WooCommerce table\" class=\"wp-image-29532\" \/><\/a><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Bulk edit variable product price by formula for WooCommerce<\/h3>\n\n\n\n<p>Variable products in WooCommerce allow store managers to offer multiple variations for a single product. The advantage of variable products is the option to set different prices for each variation. It helps customers to compare different features of a single product on the same page and then select their favorite one. However, when it comes to WooCommerce bulk update prices of variable products, store owners face many problems. Especially when there are a lot of variations in the store and they need to change their prices regularly.<\/p>\n\n\n\n<p>The good news is that the WooCommerce bulk products editing plugin solved this problem and you can use it to bulk price update WooCommerce product variations by following the below simple steps:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Filter variable products:<\/strong><\/li>\n<\/ul>\n\n\n\n<p>Filtering variable products is simply possible by selecting the right option from the list of <strong>Product Type<\/strong> options. However, the advanced <strong>Filter Form<\/strong> of our plugin allows you to go further and filter the exact variations you need.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/filter-variable-product.png\"><img loading=\"lazy\" decoding=\"async\" width=\"463\" height=\"115\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/filter-variable-product.png\" alt=\"Filter variable products in WooCommerce products bulk edit plugin\" class=\"wp-image-29533\" \/><\/a><\/figure>\n\n\n\n<p>For example, if you just want to change the WooCommerce product price of <strong>Blue<\/strong> and <strong>Large<\/strong> variations, you can easily go to the <strong>Categories\/Tags\/Taxonomies<\/strong> tab, then set the right terms \u2013 Blue and Large- in front if each attribute like <strong>Color<\/strong> and <strong>Size<\/strong>.&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/set-variable-product-attribute.png\"><img loading=\"lazy\" decoding=\"async\" width=\"625\" height=\"585\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/set-variable-product-attribute.png\" alt=\"Set variable product attribute in WooCommerce plugin filter form\" class=\"wp-image-29534\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/set-variable-product-attribute.png 625w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/set-variable-product-attribute-500x468.png 500w\" sizes=\"(max-width: 625px) 100vw, 625px\" \/><\/a><\/figure>\n\n\n\n<p>Now, you can press <strong>Get Products <\/strong>to see a list of all Blue-Large products in the table.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/set-product-color-attribute.png\"><img loading=\"lazy\" decoding=\"async\" width=\"677\" height=\"498\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/set-product-color-attribute.png\" alt=\"Set product color attribute in in WooCommerce plugin filter form\" class=\"wp-image-29535\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/set-product-color-attribute.png 677w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/set-product-color-attribute-500x368.png 500w\" sizes=\"(max-width: 677px) 100vw, 677px\" \/><\/a><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Show and select variations in the table<\/strong><\/li>\n<\/ul>\n\n\n\n<p>In the next step, you have to click the <strong>Manage Variations<\/strong> tool on the toolbar and then select the <strong>Show Variations <\/strong>option. When you enable this option, all variable products with their variations will be displayed in the table in separate rows.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/select-show-variations-option.png\"><img loading=\"lazy\" decoding=\"async\" width=\"267\" height=\"114\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/select-show-variations-option.png\" alt=\"Select show variations option in WooCommerce  manage variations tool\" class=\"wp-image-29536\" \/><\/a><\/figure>\n\n\n\n<p>Now, you need to mark the exact variations that you need to bulk update WooCommerce product price by formula.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/select-show-variations-products.png\"><img loading=\"lazy\" decoding=\"async\" width=\"559\" height=\"330\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/select-show-variations-products.png\" alt=\"Mark desired products for show variations in WooCommerce plugin table\" class=\"wp-image-29537\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/select-show-variations-products.png 559w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/select-show-variations-products-500x295.png 500w\" sizes=\"(max-width: 559px) 100vw, 559px\" \/><\/a><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Bulk change product price by formula for WooCommerce<\/strong><\/li>\n<\/ul>\n\n\n\n<p>The final step is to use the <strong>Bulk Edit<\/strong> form and set your formula in the <strong>Regular Price<\/strong> or <strong>Sale Price<\/strong> fields as we described before.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/set-sale-price-formula-2.png\"><img loading=\"lazy\" decoding=\"async\" width=\"740\" height=\"200\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/set-sale-price-formula-2.png\" alt=\"Set sale price formula in WooCommerce bulk edit form\" class=\"wp-image-29539\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/set-sale-price-formula-2.png 740w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/set-sale-price-formula-2-500x135.png 500w\" sizes=\"(max-width: 740px) 100vw, 740px\" \/><\/a><\/figure>\n\n\n\n<p>As soon as pressing on the <strong>Do Bulk Edit<\/strong> button, the prices of all selected variations will be updated.&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/bulk-edit-sale-price-result-2.png\"><img loading=\"lazy\" decoding=\"async\" width=\"445\" height=\"274\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2024\/06\/bulk-edit-sale-price-result-2.png\" alt=\"Bulk edit products sale price result in WooCommerce table\" class=\"wp-image-29538\" \/><\/a><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Example 1: Increase the regular price of products in the Accessories or Clothing categories by formula<\/h3>\n\n\n\n<p>To successfully fulfill the purpose of this example, the below steps are required:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Go to the <strong>Filter Form<\/strong> and open the <strong>Categories\/Tags\/Taxonomies<\/strong> tab. Choose <strong>OR<\/strong> from the first combo box of the product categories field, then select <strong>Accessories<\/strong> and <strong>Clothing<\/strong> from the list of categories in the next box.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-accessories-and-clothing-categories.png\"><img loading=\"lazy\" decoding=\"async\" width=\"790\" height=\"911\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-accessories-and-clothing-categories.png\" alt=\"select accessories and clothing categories in filter form\" class=\"wp-image-23780\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-accessories-and-clothing-categories.png 790w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-accessories-and-clothing-categories-500x577.png 500w\" sizes=\"(max-width: 790px) 100vw, 790px\" \/><\/a><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Press the <strong>Get Products<\/strong> button to filter the products, then mark any of them in the table and open the <strong>Bulk Edit<\/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\/2023\/10\/result-regular-price-column.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1600\" height=\"486\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/result-regular-price-column.png\" alt=\"result change regular price by formula in accessories and clothing categories\" class=\"wp-image-23793\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/result-regular-price-column.png 1600w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/result-regular-price-column-500x152.png 500w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/result-regular-price-column-1536x467.png 1536w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/result-regular-price-column-1000x304.png 1000w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" \/><\/a><\/figure>\n\n\n\n<p>As we mentioned above, you need to go to the <strong>Pricing<\/strong> tab, choose <strong>Formula<\/strong> from the first combo box, and write the below formula in the next box:<\/p>\n\n\n\n<p><strong>(X * (0.40))+20)<\/strong><\/p>\n\n\n\n<p>Please note that in all formulas used in this plugin, <strong>X<\/strong> represents the current value of product prices.<\/p>\n\n\n\n<p>To round the prices, you can choose one of the default options of the third combo box. For example, we chose 99.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/write-formula-in-bulk-edit-form.jpg\"><img loading=\"lazy\" decoding=\"async\" width=\"624\" height=\"375\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/write-formula-in-bulk-edit-form.jpg\" alt=\"write desired formula in bulk edit form\" class=\"wp-image-23841\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/write-formula-in-bulk-edit-form.jpg 624w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/write-formula-in-bulk-edit-form-500x300.jpg 500w\" sizes=\"(max-width: 624px) 100vw, 624px\" \/><\/a><\/figure>\n\n\n\n<p>Now, by pressing the <strong>Do Bulk Edit<\/strong> button, all prices of selected products are increased by 10%, as we expected.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/result-customization-formula.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1600\" height=\"440\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/result-customization-formula.png\" alt=\"result customization formula in regular price column\" class=\"wp-image-23794\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/result-customization-formula.png 1600w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/result-customization-formula-500x138.png 500w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/result-customization-formula-1536x422.png 1536w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/result-customization-formula-1000x275.png 1000w\" sizes=\"(max-width: 1600px) 100vw, 1600px\" \/><\/a><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Example 2: Decrease the regular prices of the products that their stock quantities range from 5 to 20 by one-third<\/h3>\n\n\n\n<p>The Steps to reach the purpose of this example are as follows:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Open the <strong>Filter Form<\/strong> and go to the <strong>Stock<\/strong> tab, find the <strong>Stock Quantity<\/strong> field, and set 5 and 20 for the first and second boxes, respectively.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-stock-tab-in-filter-form.png\"><img loading=\"lazy\" decoding=\"async\" width=\"835\" height=\"912\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-stock-tab-in-filter-form.png\" alt=\"select stock tab in filter form\" class=\"wp-image-23784\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-stock-tab-in-filter-form.png 835w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/select-stock-tab-in-filter-form-500x546.png 500w\" sizes=\"(max-width: 835px) 100vw, 835px\" \/><\/a><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Click on the <strong>Get Products<\/strong> button to see the filtered product in the table.<\/li>\n\n\n\n<li>Mark the checkbox next to the <strong>ID<\/strong> to select all the products.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/mark-checkbox-id-in-all-products.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1731\" height=\"332\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/mark-checkbox-id-in-all-products.png\" alt=\"mark checkbox ID in all products bulk edit form\" class=\"wp-image-23788\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/mark-checkbox-id-in-all-products.png 1731w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/mark-checkbox-id-in-all-products-500x96.png 500w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/mark-checkbox-id-in-all-products-1536x295.png 1536w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/10\/mark-checkbox-id-in-all-products-1000x192.png 1000w\" sizes=\"(max-width: 1731px) 100vw, 1731px\" \/><\/a><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Open the <strong>Bulk Edit<\/strong> form and go to the <strong>Pricing<\/strong> tab.&nbsp;<\/li>\n\n\n\n<li>After choosing the formula, write the below formula in the second box:<\/li>\n<\/ul>\n\n\n\n<p><strong>X-(X\/3)<\/strong><\/p>\n\n\n\n<p>By clicking on the <strong>Do Bulk Edit<\/strong> button, you can see that all regular prices have been changed according to the written formula.<\/p>\n\n\n\n<figure class=\"wp-block-pullquote\"><blockquote><p><a href=\"https:\/\/ithemelandco.com\/blog\/docs\/woocommerce-bulk-product-editing\/bulk-edit-product-price\/\">Here<\/a>, you can find more examples of bulk editing product price for WooCommerce.<\/p><\/blockquote><\/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-3eb088219dcb11e14a6e3b37121408c5\" style=\"font-size:26px;font-style:normal;font-weight:800\">PBULKiT &#8211; Bulk Edit WooCommerce Products<\/p>\n\n\n\n<p class=\"single-cta-desc has-white-color has-text-color has-link-color wp-elements-dc41d5ea33caad705f254cfeb11de8b9\" style=\"font-size:16px\">The easy way to bulk edit product prices by formula 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-product-editing\/?utm_source=blog&amp;utm_content=price-by-formula\" 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-product-editor-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 fetchpriority=\"high\" decoding=\"async\" width=\"532\" height=\"355\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/pbulkit-banner.png\" alt=\"PBULKiT - Bulk Edit WooCommerce Products plugin by ithemeland\" class=\"wp-image-48724\" style=\"width:440px;height:auto\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/pbulkit-banner.png 532w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/pbulkit-banner-500x335.png 500w\" sizes=\"(max-width: 532px) 100vw, 532px\" \/><\/figure>\n<\/div>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>As you know, editing the price of WooCommerce products individually is a difficult and time-consuming task. It is true that WooCommerce allows you to bulk edit product prices by its default editor, but it is not flexible enough. Especially when you want to change the price of products based on a certain formula, this is not possible without using coding or the WooCommerce products bulk edit pro plugin. In this article, we have provided a complete guide to using both of these methods. If you need more information about using the WooCommerce products bulk edit pro plugin, please leave a comment.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Updating product prices with WooCommerce&#8217;s default options has certain limitations. You can only change the prices to a fixed or percentage amount, but there is no possibility to bulk edit product prices by formula in the WooCommerce editor. In fact, one of the most common questions of WooCommerce store managers is how to bulk edit [&hellip;]<\/p>\n","protected":false},"author":1990,"featured_media":23796,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[50,73],"tags":[],"class_list":["post-23756","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\/2023\/10\/bulk-edit-product-price-by-formula-500x335.jpg","excerpt_plain":"Updating product prices with WooCommerce&#8217;s default options has certain limitations. You can only change the prices to a fixed or percentage amount, but there is no possibility to bulk edit product prices by formula in the WooCommerce editor. In fact, one of the most common questions of WooCommerce store managers is how to bulk edit [&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\/23756","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=23756"}],"version-history":[{"count":2,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/posts\/23756\/revisions"}],"predecessor-version":[{"id":48991,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/posts\/23756\/revisions\/48991"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/media\/23796"}],"wp:attachment":[{"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/media?parent=23756"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/categories?post=23756"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/tags?post=23756"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}