Title: Alondra
Author: MidriNet
Published: <strong>August 21, 2026</strong>
Last modified: August 21, 2026

---

Search plugins

![](https://s.w.org/plugins/geopattern-icon/alondra.svg)

# Alondra

 By [MidriNet](https://profiles.wordpress.org/midrinet/)

[Download](https://downloads.wordpress.org/plugin/alondra.1.0.0.zip)

 * [Details](https://wordpress.org/plugins/alondra/#description)
 * [Reviews](https://wordpress.org/plugins/alondra/#reviews)
 *  [Installation](https://wordpress.org/plugins/alondra/#installation)
 * [Development](https://wordpress.org/plugins/alondra/#developers)

 [Support](https://wordpress.org/support/plugin/alondra/)

## Description

**Alondra** allows you to easily set up tiered pricing and quantity discounts to
be used on your WooCommerce products. You can decide when to use the prices you 
define using the powerful included rules editor so you will be able to offer exclusive
prices to users, roles, product categories and more.

This tool will allow you to configure the functionalities you need for your B2B/
B2C, retailer, wholesaler or service provider business in a very short time to improve
your sales using a friendly and intuitive interface.

### Features

 * Set fixed prices to be used for a product quantity range.
 * Compatible with products and variations.
 * Dashboard for managing prices and rules that follows WordPress design and user
   experience.
 * Define rules to apply prices when some criteria are met. You can select one or
   more products, any categories, tags, users or roles.
 * Show product prices to customers in a table layout on the product page.
 * Allows customer to click on the pricing options to quickly set the quantity value
   to add to cart.
 * Highlights active price among available options for better user experience.
 * Overrides the default product price that is shown to customers with a value according
   to the active rules and prices.

### Requirements

 * WooCommerce 10.4.0 or greater. With an older version the plugin does nothing 
   and shows a notice in the administration area.
 * Multisite compatibility has not been tested.

### Source code & build tools

The plugin ships the compiled `assets/js/*.js` and `assets/css/*.css` files together
with the sources and tooling they are built from, so every distributed file can 
be reproduced:

 * JavaScript sources: `assets/js/src/` (bundled by webpack, entry points `admin.
   js` and `front.js`).
 * Stylesheet sources: `assets/css/scss/` (compiled by Dart Sass, then autoprefixed
   by PostCSS).
 * Build configuration: `package.json`, `package-lock.json`, `webpack.config.js`,`
   babel.config.json`, `postcss.config.js`.
 * Autoloader configuration: `composer.json`, `composer.lock`. The plugin has no
   runtime dependency, so Composer only generates the class autoloader.

To rebuild the assets from the plugin directory:

    ```
    npm install
    npm run build


    npm run dev produces the same files unminified and with source maps, and `composer install` regenerates the autoloader.
    ```

Our test suites and code quality configuration are development tools rather than
part of the plugin, so they are not included here. They live in the source repository
together with everything above.

## Installation

#### Automatic installation

 1. Log into your WordPress admin panel and go to _Plugins_ > _Add New_.
 2. Enter “Alondra” into the search field.
 3. Once you’ve located the plugin, click _Install Now_.
 4. Click _Activate_.
 5. Create your prices by going to _WooCommerce_ > _Tiered Pricing_.

#### Manual installation

 1. Download the plugin file to your computer and unzip it.
 2. Using an FTP program, or your hosting control panel, upload the unzipped plugin
    folder to your WordPress installation’s `wp-content/plugins/` directory on the 
    server.
 3. Log into your WordPress admin panel and activate the plugin from the _Plugins_ 
    menu.
 4. Create your prices by going to _WooCommerce_ > _Tiered Pricing_.

## FAQ

### Where do I create the prices?

In _WooCommerce_ > _Tiered Pricing_. Each group holds a list of quantity ranges 
with their price, plus the rules that decide when the group applies.

### Is it possible to apply discount based on User roles?

Yes. You can offer discounts for individual users or for users who have a role.

### Is it possible to offer free products to customers with this plugin?

Yes, you can define a row with price 0 when you define the pricing settings in the
group.

### How can I increase the value of certain products?

You can define a fixed price higher than the original one when you configure the
row.

### Does the plugin have a settings page?

No. The plugin works with sensible defaults and has no options screen. If you need
to change one of them, use the `alondra_default_prefs` filter from your theme or
a small plugin:

    ```
    add_filter(
        'alondra_default_prefs',
        function ( $prefs ) {
            // Where the prices table is rendered in the product page. Accepted values:
            // hide, before_add_to_cart_btn, after_add_to_cart_btn, before_add_to_cart_form,
            // after_add_to_cart_form, before_title, before_summary, after_summary,
            // tab_additional_info.
            $prefs['layout_pos'] = 'after_add_to_cart_form';

            // Colors of the prices table. Hex only, either #rgb or #rrggbb; any
            // other notation falls back to the default shown here.
            $prefs['color']                  = '#000000';
            $prefs['bg_color']               = '#ffffff';
            $prefs['border_color']           = '#000000';
            $prefs['highlight_color']        = '#ffffff';
            $prefs['highlight_bg_color']     = '#007cba';
            $prefs['highlight_border_color'] = '#000000';

            // Set to '0' to turn any of these off.
            $prefs['clickable_layout']        = '1'; // Click a row to set the quantity.
            $prefs['highlight_pricing']       = '1'; // Highlight the active row.
            $prefs['overwrite_product_price'] = '1'; // Replace the price shown for the product.
            $prefs['disable_styles']          = '0'; // Set to '1' to load none of the plugin CSS.

            return $prefs;
        }
    );
    ```

### Will it work with my theme?

We have tested the plugin with the most popular themes and builders on the market,
ensuring that the components that display the price on the front-end are displayed
correctly. You can also restyle the prices table with the filter above, or turn 
the plugin CSS off entirely and write your own.

### What happens to my prices if I uninstall the plugin?

Uninstalling removes the plugin options but keeps the pricing tables, so reinstalling
finds your groups and rules intact.

## Reviews

There are no reviews for this plugin.

## Contributors & Developers

“Alondra” is open source software. The following people have contributed to this
plugin.

Contributors

 *   [ MidriNet ](https://profiles.wordpress.org/midrinet/)

[Translate “Alondra” into your language.](https://translate.wordpress.org/projects/wp-plugins/alondra)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/alondra/), check out
the [SVN repository](https://plugins.svn.wordpress.org/alondra/), or subscribe to
the [development log](https://plugins.trac.wordpress.org/log/alondra/) by [RSS](https://plugins.trac.wordpress.org/log/alondra/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 1.0.0

 * First release.

## Meta

 *  Version **1.0.0**
 *  Last updated **2 days ago**
 *  Active installations **Fewer than 10**
 *  WordPress version ** 6.5 or higher **
 *  Tested up to **7.1**
 *  PHP version ** 7.4 or higher **
 * Tags
 * [b2b](https://wordpress.org/plugins/tags/b2b/)[discounts](https://wordpress.org/plugins/tags/discounts/)
   [tiered pricing](https://wordpress.org/plugins/tags/tiered-pricing/)[wholesale](https://wordpress.org/plugins/tags/wholesale/)
   [woocommerce](https://wordpress.org/plugins/tags/woocommerce/)
 *  [Advanced View](https://wordpress.org/plugins/alondra/advanced/)

## Ratings

No reviews have been submitted yet.

[Your review](https://wordpress.org/support/plugin/alondra/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/alondra/reviews/)

## Contributors

 *   [ MidriNet ](https://profiles.wordpress.org/midrinet/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/alondra/)

## Donate

Would you like to support the advancement of this plugin?

 [ Donate to this plugin ](https://ko-fi.com/midrinet)