Skip to content

RSC-Labs/medusa-store-analytics-pro-public

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 

Repository files navigation

Medusa Store Analytics Pro

What is it?

Medusa Store Analytics Pro is the extended version of very popular plugin - Store Analytics.

This repository has been created for instruction purposes and as a place for raising bugs and improvements.

It is a commercial software so it requires a licence to be used.

Found a bug or looking for an improvement?

Please raise an issue in Github issues.

Installation

Plugins supports two versions of charts - basic and modern.

Basic charts (supported in version 1.x.x)

  1. Install plugin by adding to your package.json. Use version 1.x.x.
...
"@rsc-labs/medusa-store-analytics-pro-v2": "1.1.1" // or other available version
...

and execute install, e.g. yarn install.

  1. Add plugin to your medusa-config.js with the licence key, which you received:
...
plugins: [
    {
      resolve: "@rsc-labs/medusa-store-analytics-pro-v2",
      options: {
        licenceKey: <licence-key>
      }
    }
]
...

Modern charts (supported in version 2.x.x)

  1. Install plugin by adding to your package.json. Use version 2.x.x.
...
"@rsc-labs/medusa-store-analytics-pro-v2": "2.0.0" // or other available version
...

and execute install, e.g. yarn install.

  1. Add plugin to your medusa-config.js with the licence key, which you received:
...
plugins: [
    {
      resolve: "@rsc-labs/medusa-store-analytics-pro-v2",
      options: {
        licenceKey: <licence-key>
      }
    }
]
...
  1. Configure medusa-config.ts
import { withAnalyticsAdminConfig } from "@rsc-labs/medusa-store-analytics-pro-v2/css"
...

admin: {
  vite: () => {
    return withAnalyticsAdminConfig({}, { theme: 'sapphire'}) // or `daylight`
  }
},
...

We support two themes - sapphire and daylight. You can preview them here: https://ui.shadcn.com/charts. If you have already some vite configuration you can include it in a first parameter, e.g.

admin: {
  vite: () => {
    return withAnalyticsAdminConfig({
      a: b,
      c: d
    }, { theme: 'sapphire'}) // or `daylight`
  }
},
...

Configuration

Plugin supports one additional option which you can pass into options. It is related to statistic Abandoned average value, which tells that customers did not finalize the cart. By default, abandoned cart is the one which was not updated in the last 7 days. You can configure it by your own. For instance, if cart needs to be treat as abandoned because it was not updated 20 days ago, then your configuration will look like this:

...
plugins: [
    {
      resolve: "@rsc-labs/medusa-store-analytics-pro-v2",
      options: {
        licenceKey: <licence-key>,
        abandonedCartTimeInDays: 20
      }
    }
]
...

Available functionalities

  • Highly customizable dashboard, where you can choose any statistics you would like to see (PRO)
  • Calendars for choosing date ranges (PRO)
  • Choosing currency code just one time for all statistics (PRO)
  • Filtering by orders' status (PRO)
  • Advanced report in PDF with various statistics (PRO)

Supported Statistics

Cart

  • Breakdown for cart progress (PRO)
  • Average value of cart (PRO)
  • Abandoned average value (PRO)

Orders

  • Refunds to orders (PRO)
  • Promotions to orders (PRO)
  • Total promotions from orders (PRO)
  • Orders split per status (PRO)
  • Average units per order (PRO)
  • Orders by time
  • Orders chart
  • Regions popularity
  • Sales channel popularity
  • Orders frequency distribution
  • Payment provider popularity

Sales

  • Average sales (PRO)
  • Sales per channel (PRO)
  • Net sales (PRO)
  • Sales by time
  • Sales by currency code
  • Sales chart
  • Refunds

Customers

  • Average sales per customer (PRO)
  • Customer lifetime value (PRO)
  • New customers by time
  • Repeat customer rate
  • Customers chart
  • Cumulative customers by time
  • Retention customer rate

Products

  • Top variants
  • Top returned variants
  • Products sold count
  • Out of the stock variants

Marketing

  • Top discounts

Q&A

Where is the source code?

This plugin is now behind the licence, so we cannot share the source code.

I am interested, what I need to do?

As mentioned, this plugin is behind the licence. We offer two types of licences:

  • subscription - recommended for people who create the store for their own, so for very low monthly cost you can have this functionality.
  • lifetime - recommended for people who create the store for the client (so cannot spend money on monthly basis). For one price, you can get Store Analytics Pro forever.

We offer also 14-day free trial if you are not sure if you need this plugin - please reach us via [email protected] or go to https://medusa-plugins.com.

About

Medusa Store Analytics Pro is the extended version of very popular plugin - Store Analytics.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published