{"id":22587,"date":"2023-09-20T08:25:50","date_gmt":"2023-09-20T08:25:50","guid":{"rendered":"https:\/\/ithemelandco.com\/?p=22587"},"modified":"2026-03-12T09:26:17","modified_gmt":"2026-03-12T09:26:17","slug":"sales-report-by-user-role","status":"publish","type":"post","link":"https:\/\/ithemelandco.com\/blog\/sales-report-by-user-role\/","title":{"rendered":"How to Get WooCommerce Sales Reports by User Role (Step-by-Step Guide)"},"content":{"rendered":"\n<p>Understanding how different types of customers interact with your store is essential for making better business decisions. One of the most valuable analytics tools for this purpose is the <strong>WooCommerce sales report by user role<\/strong>.<\/p>\n\n\n\n<p>In WooCommerce stores, customers can have different roles such as guests, registered users, wholesalers, or special customer groups. Each of these roles may behave differently when purchasing products. Some users may buy frequently in small quantities, while others may place fewer but larger orders.<\/p>\n\n\n\n<p>By analyzing WooCommerce sales reports based on user roles, store managers can identify which customer groups generate the most revenue and which ones require additional marketing attention. This insight helps businesses allocate resources more effectively, improve marketing strategies, and personalize customer experiences.<\/p>\n\n\n\n<p>For example, if wholesale customers generate a large percentage of revenue, you might offer them exclusive discounts or faster checkout options. On the other hand, if guest users convert less often, improving product descriptions or checkout flow could increase their purchase rate.<\/p>\n\n\n\n<p>Although WooCommerce includes basic reporting tools, it does not provide a built-in option to directly generate <strong>sales reports grouped by user role<\/strong>. Store owners often need alternative methods such as custom SQL queries or advanced reporting plugins like REPORTiT, to access this type of data.<\/p>\n\n\n\n<p>In this guide, we will explore <strong>two practical methods to generate WooCommerce sales reports by user role<\/strong>, helping you analyze customer segments and make smarter data-driven decisions for your online store.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is a sale reports by user role?<\/h2>\n\n\n\n<p>WooCommerce sale reports by user role is one of the most practical reports that store managers can receive to determine the order amount of different user roles. This report shows a list of all user roles in the store, and the total amount of the orders per month is reported.<\/p>\n\n\n\n<p>In online stores, customers can have different user roles. Generally, their roles are divided into three categories:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Guest customers<\/h3>\n\n\n\n<p>These users purchase products from the site without registration. These customers usually visit the site but make the least amount of orders. They don&#8217;t have any special needs or desires in mind and are more attracted to advertising and marketing.<\/p>\n\n\n\n<p>Although this category of customers generates the least sales revenue, providing them with clear product information can stimulate their interest and ultimately lead to purchase.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Registered customers<\/h3>\n\n\n\n<p>These Users have an account on the site and are probably loyal customers. They usually have a great impact on the sales of e-commerce stores and should be respected in any online store.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Agencies<\/h3>\n\n\n\n<p>These customers intend to buy a specific product, and a specific need guides their behavior. In other words, they visit the online store, buy what they need quickly, and leave the site. These customers usually make bulk purchases, so you need to retain them and treat them like loyal customers.<\/p>\n\n\n\n<p>To generate WooCommerce sale reports by user role, you can use one of the below methods:<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Method 1: Use SQL code to generate WooCommerce sale reports by user role<\/h2>\n\n\n\n<p>There is no option for creating WooCommerce reports by user role in the default reports of WooCommerce. However, you can run the below SQL query in the WordPress database to generate a User role report:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>SELECT \nSUM(it_postmeta1.meta_value) AS 'total_amount' ,\nit_postmeta2.meta_value AS 'billing_email' ,\nit_postmeta3.meta_value AS 'billing_first_name' ,\nusers.user_email,users.display_name ,\nCount(it_postmeta2.meta_value) AS 'order_count' ,\nit_postmeta4.meta_value AS customer_id ,\nit_postmeta5.meta_value AS billing_last_name ,\nCONCAT(it_postmeta3.meta_value, ' ',it_postmeta5.meta_value) AS billing_name ,\nusermeta.meta_value as user_role ,\nMONTH(shop_order.post_date) as month_number ,\nDATE_FORMAT(shop_order.post_date, '%Y-%m') as month_key FROM wp_posts as it_posts \nLEFT JOIN wp_postmeta as it_postmeta1 ON it_postmeta1.post_id=it_posts.ID \nLEFT JOIN wp_postmeta as it_postmeta2 ON it_postmeta2.post_id=it_posts.ID \nLEFT JOIN wp_postmeta as it_postmeta3 ON it_postmeta3.post_id=it_posts.ID \nLEFT JOIN wp_postmeta as it_postmeta4 ON it_postmeta4.post_id=it_posts.ID \nLEFT JOIN wp_postmeta as it_postmeta5 ON it_postmeta5.post_id=it_posts.ID \nLEFT JOIN wp_usermeta as usermeta ON it_postmeta4.meta_value=usermeta.user_id \nLEFT JOIN wp_users as users ON usermeta.user_id=users.ID \nLEFT JOIN wp_posts as shop_order ON shop_order.id = it_posts.ID \nWHERE \nit_posts.post_type='shop_order' AND \nit_postmeta1.meta_key='_order_total' AND \nit_postmeta2.meta_key='_billing_email' AND \nit_postmeta3.meta_key='_billing_first_name' AND \nit_postmeta4.meta_key='_customer_user' AND \nit_postmeta5.meta_key='_billing_last_name' AND \nusermeta.meta_key='wp_capabilities' AND \nDATE(it_posts.post_date) \nBETWEEN STR_TO_DATE('2019-09-01', '%Y-%m-%d') and STR_TO_DATE('2023-09-19', '%Y-%m-%d') AND \nit_posts.post_status IN ('wc-completed') AND \nit_posts.post_status NOT IN (\"trash\") \nGROUP BY customer_id \nORDER BY total_amount DESC;<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/09\/sql-code-sales-report-by-user-role.jpg\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1119\" height=\"542\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/09\/sql-code-sales-report-by-user-role.jpg\" alt=\"SQL code for get sale reports by user role in WooCommerce\" class=\"wp-image-22595\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/09\/sql-code-sales-report-by-user-role.jpg 1119w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/09\/sql-code-sales-report-by-user-role-500x242.jpg 500w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/09\/sql-code-sales-report-by-user-role-1000x484.jpg 1000w\" sizes=\"(max-width: 1119px) 100vw, 1119px\" \/><\/a><figcaption class=\"wp-element-caption\">SQL query to create sales report by user role<\/figcaption><\/figure>\n\n\n\n<p>The output of this report is a list of all user roles in your online store with their total sales.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Method 2: Use the WooCommerce report plugin for receiving sales report by user role<\/h2>\n\n\n\n<p>The <span style=\"text-decoration: underline\"><a href=\"https:\/\/ithemelandco.com\/plugins\/woocommerce-report\/?utm_source=blog&amp;utm_content=sale-report-by-user-role\" target=\"_blank\" rel=\"noreferrer noopener\">WooCommerce report plugin<\/a><\/span> allows the store manager to generate a comprehensive WooCommerce sale reports by user role.<\/p>\n\n\n\n<p>To get the sale reports after <a href=\"https:\/\/ithemelandco.com\/docs\/woocommerce-report\/install-plugin\/\" target=\"_blank\" rel=\"noreferrer noopener\"><span style=\"text-decoration: underline\">installing and activating<\/span><\/a> the plugin, go to the following path:<\/p>\n\n\n\n<p><strong>WordPress Dashboard &gt; IT Woo Report<\/strong><\/p>\n\n\n\n<p>Then, in the WooCommerce report plugin dashboard, go to the <strong>Customer Role\/Group<\/strong> tab and select the <strong>Total Sales<\/strong> option:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/09\/open-customer-role-and-group-tab-and-select-total-sales-option.png\"><img decoding=\"async\" width=\"256\" height=\"190\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/09\/open-customer-role-and-group-tab-and-select-total-sales-option.png\" alt=\"open customer role and group tab and select total sales option in WooCommerce report plugin dashboard\" class=\"wp-image-22599\"\/><\/a><figcaption class=\"wp-element-caption\">Go to Customer Role\/Group total sales report<\/figcaption><\/figure>\n\n\n\n<p>Now, you need to press the <strong>Search<\/strong> icon on the bottom of the page and set a date range in the search form as illustrated below:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/09\/set-date-range-in-search-form.png\"><img decoding=\"async\" width=\"390\" height=\"341\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/09\/set-date-range-in-search-form.png\" alt=\"set date range in search form and click search icon\" class=\"wp-image-22600\"\/><\/a><figcaption class=\"wp-element-caption\">Filter the report in a specific date range<\/figcaption><\/figure>\n\n\n\n<p>Then, by clicking on the <strong>Search<\/strong> button, the plugin will generate the user role reports containing the below columns:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>User Role<\/strong>: a list of all user roles in the WooCommerce store that place orders in the specified date range.<\/li>\n\n\n\n<li><strong>Total Amount<\/strong>: Total orders placed by each user role in the specified date range.<\/li>\n\n\n\n<li><strong>Monthly sales<\/strong>: The total monthly orders related to each user role.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/09\/result-date-range-in-total-sales.jpg\"><img loading=\"lazy\" decoding=\"async\" width=\"1069\" height=\"533\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/09\/result-date-range-in-total-sales.jpg\" alt=\"result date range in total sales WooCommerce report plugin\" class=\"wp-image-22601\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/09\/result-date-range-in-total-sales.jpg 1069w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/09\/result-date-range-in-total-sales-500x249.jpg 500w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/09\/result-date-range-in-total-sales-1000x499.jpg 1000w\" sizes=\"(max-width: 1069px) 100vw, 1069px\" \/><\/a><figcaption class=\"wp-element-caption\">User Roles Total Sale Report<\/figcaption><\/figure>\n\n\n\n<p>In this plugin, it is also possible to filter the report in the following ways:<\/p>\n\n\n\n<p><strong>Search box<\/strong><\/p>\n\n\n\n<p>In this box, you can search for any user role to filter the sales report based on it.<\/p>\n\n\n\n<p><strong>Select Column<\/strong><\/p>\n\n\n\n<p>A default list in this field allows you to mark one or more months to filter the sales report.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/09\/select-one-or-more-months-columns.png\"><img loading=\"lazy\" decoding=\"async\" width=\"348\" height=\"343\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/09\/select-one-or-more-months-columns.png\" alt=\"select one or more months columns for filter sale report by user role\" class=\"wp-image-22603\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/09\/select-one-or-more-months-columns.png 348w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/09\/select-one-or-more-months-columns-100x100.png 100w\" sizes=\"(max-width: 348px) 100vw, 348px\" \/><\/a><figcaption class=\"wp-element-caption\">Select columns to display in report table<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Export WooCommerce sales report by user role to CSV, Excel or PDF<\/h2>\n\n\n\n<p>One of the amazing options designed in the WooCommerce report plugin is exporting the report with one click.<\/p>\n\n\n\n<p>As you can see in the below image, it is possible to download the report in Excel, CSV, and PDF format by pressing the <strong>Download<\/strong> icon on the top of the table.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/09\/export-woocommerce-reports.png\"><img loading=\"lazy\" decoding=\"async\" width=\"221\" height=\"226\" src=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2023\/09\/export-woocommerce-reports.png\" alt=\"export WooCommerce sale reports by user role\" class=\"wp-image-22604\"\/><\/a><figcaption class=\"wp-element-caption\">Click on the export report in REPORTiT<\/figcaption><\/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-0991dc6851cfc99e0f24c91f59e458e6\" style=\"font-size:26px;font-style:normal;font-weight:800\">REPORTiT &#8211; Advanced WooCommerce Reporting<\/p>\n\n\n\n<p class=\"single-cta-desc has-white-color has-text-color has-link-color wp-elements-0720d6bbc0176eccb83afee54a401aeb\" style=\"font-size:16px\">The easy way to get sale reports by user role 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-report\/?utm_source=blog&amp;utm_content=sale-report-by-user-role\" 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\/ithemelandco-woo-report\/\" 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\/reportit-banner.png\" alt=\"REPORTiT - Advanced WooCommerce Reporting plugin by ithemeland\" class=\"wp-image-48725\" style=\"width:440px;height:auto\" srcset=\"https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/reportit-banner.png 532w, https:\/\/ithemelandco.com\/blog\/wp-content\/uploads\/2025\/10\/reportit-banner-500x335.png 500w\" sizes=\"(max-width: 532px) 100vw, 532px\" \/><\/figure>\n<\/div>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\">What are the benefits of analyzing sale reports by user role in WooCommerce for businesses?<\/h2>\n\n\n\n<p>If you want to know the needs and expectations of different customers and try to meet them, you need to analyze the sales report by user role in WooCommerce.<\/p>\n\n\n\n<p>Knowing different customer group requirements allows you to consider smarter actions and adopt more professional strategies to attract them. After classifying the customers, you may find that the persona of your target audience is completely different from what was predicted. In this case, you have to change the marketing strategy or at least revise it.<\/p>\n\n\n\n<p>In addition, it is possible to identify other common needs of a specific customer group by classifying them. These needs can predict the future behavior of your business and give direction to your marketing strategies.<\/p>\n\n\n\n<p>Briefly, the most important advantages of analyzing sales reports by user role are:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Directing marketing strategies.<\/li>\n\n\n\n<li>Improve customer shopping experience.<\/li>\n\n\n\n<li>Predicting customer behavior.<\/li>\n\n\n\n<li>Maintaining and improving customer loyalty.<\/li>\n\n\n\n<li>Personalizing the customer experience.<\/li>\n\n\n\n<li>Increasing conversion rate.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Why do you need WooCommerce sales report by user role?<\/h2>\n\n\n\n<p>In the business world, the competition is getting tougher every day, so you have to take advantage of any tool that helps you win this competition. WooCommerce user roles report is the best tool for analyzing the behavior of online users. Deep insight into the behavior of WooCommerce customer role is an essential requirement for online marketing success.&nbsp;<\/p>\n\n\n\n<p>In addition, if you want to recognize the behavior of WooCommerce roles in your site, you need to use the advanced WooCommerce reporting tool. Generating WooCommerce sales report by user role helps you to know your customers better, and as a result, you can keep them satisfied.&nbsp;<\/p>\n\n\n\n<p>By using the WooCommerce user roles behavior analysis tool on your online store, you can also find answers to the following questions:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Which users are purchasing from your site, frequently?<\/li>\n\n\n\n<li>What products have they bought?<\/li>\n\n\n\n<li>Which users are loyal to your online shop?<\/li>\n\n\n\n<li>Which users have abandoned carts?<\/li>\n\n\n\n<li>How many times and how much the users used the discount?<\/li>\n\n\n\n<li>What was the impact of your promotional plans on different WooCommerce user roles?<\/li>\n\n\n\n<li>Which WooCommerce customer role has more activity in your shop?<\/li>\n\n\n\n<li>What regions or countries do customers buy from?<\/li>\n<\/ul>\n\n\n\n<p>In general, evaluating and monitoring the behavior of WooCommerce user role by analyzing their sales report will be effective in your next decisions for the growth and development of your store.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><a><\/a>Conclusion<\/h2>\n\n\n\n<p>Analyzing WooCommerce sales reports by user role allows store owners to gain deeper insight into how different customer groups interact with their store. By understanding which roles generate the most orders and revenue, businesses can design more effective marketing strategies and improve customer retention.<\/p>\n\n\n\n<p>While WooCommerce provides basic reporting features, generating reports specifically based on user roles usually requires additional methods such as SQL queries or specialized reporting plugins.<\/p>\n\n\n\n<p>Using a dedicated WooCommerce reporting plugin like REPORTiT, simplifies the entire process by allowing store managers to generate detailed reports with just a few clicks. These reports help identify valuable customer segments, monitor sales performance, and optimize promotional strategies.<\/p>\n\n\n\n<p>With better visibility into customer behavior, WooCommerce store managers can make smarter decisions that lead to improved conversion rates, stronger customer relationships, and long-term business growth.<\/p>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column blog-faq-section 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\">What is a WooCommerce sales report by user role?<\/h4>\n\n\n\n<p>A WooCommerce sales report by user role shows how much revenue is generated by different types of users in your store, such as guests, registered customers, or wholesale buyers. This type of report helps store owners understand which customer groups contribute the most to overall sales.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Why should I analyze sales by user role in WooCommerce?<\/h4>\n\n\n\n<p>Analyzing sales by user role helps businesses understand the purchasing behavior of different customer groups. With this insight, store managers can create targeted promotions, improve marketing campaigns, and optimize the shopping experience for specific user segments.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Does WooCommerce provide a default user role sales report?<\/h4>\n\n\n\n<p>WooCommerce includes several sales and order reports, but it does not provide a built-in report specifically for analyzing sales by user role. To generate this type of report, store owners typically use SQL queries or install advanced WooCommerce reporting plugins like REPOERiT.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">How can a WooCommerce report plugin help with sales analysis?<\/h4>\n\n\n\n<p>A WooCommerce reporting plugin can generate detailed sales reports grouped by customer roles, products, categories, or time periods. These tools make it easier to analyze store performance, identify profitable customer segments, and export reports for further business analysis.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Can I export WooCommerce sales reports for further analysis?<\/h4>\n\n\n\n<p>Yes, many WooCommerce reporting tools like REPORTiT, allow store managers to export sales reports in formats such as CSV, Excel, or PDF. Exporting reports makes it easier to analyze data, share insights with team members, or use the information in marketing and financial planning.<\/p>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Understanding how different types of customers interact with your store is essential for making better business decisions. One of the most valuable analytics tools for this purpose is the WooCommerce sales report by user role. In WooCommerce stores, customers can have different roles such as guests, registered users, wholesalers, or special customer groups. Each of [&hellip;]<\/p>\n","protected":false},"author":1990,"featured_media":22609,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[50,73],"tags":[],"class_list":["post-22587","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\/09\/Get-sales-report-by-user-role-500x335.jpg","excerpt_plain":"Understanding how different types of customers interact with your store is essential for making better business decisions. One of the most valuable analytics tools for this purpose is the WooCommerce sales report by user role. In WooCommerce stores, customers can have different roles such as guests, registered users, wholesalers, or special customer groups. Each of [&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\/22587","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=22587"}],"version-history":[{"count":4,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/posts\/22587\/revisions"}],"predecessor-version":[{"id":51003,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/posts\/22587\/revisions\/51003"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/media\/22609"}],"wp:attachment":[{"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/media?parent=22587"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/categories?post=22587"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ithemelandco.com\/blog\/wp-json\/wp\/v2\/tags?post=22587"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}