Woocommerce Product Labeling

Installation


Backup

Backup your WordPress installation files and database.

Install and activate the Woocommerce Product Labeling

Add the new plugin you have received and activate it:

Go to Plugins > Add New > Upload and click the Browse… button to select the plugin’s zip file, usually woo-product-labeling-x.y.z.zip (x, y and z are the plugin’s current version numbers).

After that proceed to activate the plugin.

If you have errors, review the plugin’s page located here: http://www.eggemplo.com/plugins/woocommerce-product-labeling for similar problems and the proposed solutions posted in the comments.

Setup


Requirements

This plugin requires:

Woocommerce > 2.4

Setup Woocommerce Product Labeling

If you have not done so already, install and activate the plugin (see Installation section).

From the products edit page you can configure it.

1.- Choose a label to show (if empty, not label is shown)

2.- Select a predefined class, or a custom class to create your own style.

3.- If You have choose custom class, then set this class.

In the plugin, you have an empty css file where you can add your own code (in woo-product-labeling/css/custom.css)

BASIC USAGE


Once the plugin is installed, enabled and configured, it begins to run.

Products with labels added, will be shown with.

 

UPDATE


If you have received or downloaded an updated version of the Woocommerce Product Labeling plugin, follow these
instructions to update it:

Backup

Back up your WordPress installation files and database.

Upgrade to the new release

Upgrading requires to replace the plugin.

To update, the plugin must be deactivated, deleted and the new release uploaded and activated. These
are the steps involved:

Go to Plugins > Installed Plugins, click Deactivate on the Woocommerce Product Labeling plugin, then click Delete to remove it.
Go to Plugins > Add New > Upload and click the Browse… button to select the new release’s zip file, and click on the Install Now button. After it has been installed, activate the plugin.

Woocommerce Groups Pricing PRO

Woocommerce Group Pricing

INSTALLATION


Backup

Backup your WordPress installation files and database.

Install and activate the Woocommerce Group Pricing plugin

Add the new plugin you have received and activate it:

Go to Plugins > Add New > Upload and click the Browse… button to select the plugin’s zip file, usually woogrouppricing-x.y.z.zip (x, y and z are the plugin’s current version numbers).

After that proceed to activate the plugin.

SETUP


Requeriments

This plugin requires:

Setup Woocommerce Group Pricing

If you have not done so already, install and activate the plugin. See Installation section.

Check the settings on the Woocommerce > Group Pricing submenu and adjust them.

settings

Product Discount Method:

You can select between rate or amount method.

Apply to:

You can apply the discount to regular price or to sale price if exists.

You have set:

You can set discounts or final prices when you configure the plugin. Ex. if you have a product price of $100, and you have set 0.10 as rate, and select ‘Discounts’ then the final price will be $90. However if you select ‘Amounts’ then the final price will be $10.

If in several groups:

If the user is in multiple groups, you can select a criterial to select the discount group.

Display original price:

If selected, the original and the discounted prices are shown.

Groups discount:

This discount is applied for each product.

Leave empty if no group discount should be applied (default setting).

Example with rate method: Indicate 0.1 for 10% discounts on every product.

More features:

If you need to apply custom discounts per categories and/or products, you can do it in the edit category/product page.

UPDATE


If you have received or downloaded an updated version of the Woocommerce Group Pricing plugin, follow these
instructions to update it:

Backup

Back up your WordPress installation files and database.

Upgrade to the new release

Upgrading requires to replace the plugin.

To update, the plugin must be deactivated, deleted and the new release uploaded and activated. These
are the steps involved:

  1. Go to Plugins > Installed Plugins, click Deactivate on the Woocommerce Group Pricing plugin, then click Delete to remove it.
  2. Go to Plugins > Add New > Upload and click the Browse… button to select the new release’s zip file, and click on the Install Now button. After it has been installed, activate the plugin.

BASIC USAGE


Once the plugin is installed, enabled and configured, it begins to run.

According to the group that belongs the visitor will see a store with discount prices or not, so you can set direct discounts to wholesales, Premium users, ….

An example according to the below settings:

The documentation and examples for the Woocommerce Group Pricing plugin and the others plugin are
available on the following pages:

FILTERS


woo_group_pricing_num_decimals

Set the calculations precision.

Example code:

function my_woo_group_pricing_num_decimals ( $decimals ) {
    return 4;
}
add_filter( 'woo_group_pricing_num_decimals', 'my_woo_group_pricing_num_decimals' );