Skip to content

Frequently Asked Questions

How do I display the lowest price in 30 days to comply with the Omnibus Directive?
  1. Activate the Price History module
  2. In the Prices module, add a custom price:
    • Price type: Lowest price in 30 days
    • When price display: If product is in sale
    • Price label: Lowest price in 30 days:
  3. Set the display position

The price will automatically be displayed for all discounted products.

Why is the lowest price not displayed?

Possible causes:

  1. Price History module is not active - activate it in WPify Woo settings
  2. Missing historical data - the module starts recording only after activation
  3. Product is not on sale - if the condition is “If product is in sale”
  4. Wrong position - check the display position settings
How do I set up price per unit (e.g., price per kg)?
  1. Add a custom price with type Price by unit
  2. For each product, enter:
    • Package unit: unit (kg, pcs, l, m, etc.)
    • Number of units: number of units in the package

The module automatically calculates the price per unit.

Can I display multiple custom prices at the same time?

Yes, you can add any number of custom prices. Each can have:

  • Different type (custom, lowest, per unit)
  • Different display condition
  • Different label and information
Will prices also be displayed in the cart and checkout?

No, custom prices and price notices are displayed only on the product detail page. To display them in the cart or checkout, you would need to use custom code with the woocommerce_cart_item_price filter.

How do I change the appearance of price notices?

Use CSS to customize the appearance:

/* Change icon color */
.wpify-woo-prices__price-info {
color: #0073aa;
}
/* Customize tooltip */
.wpify-woo-prices__price-info__text {
background: #333;
color: #fff;
padding: 8px 12px;
border-radius: 4px;
}
Does the module work with multi-currency plugins?

Yes, the module supports WPML multi-currency and other plugins that use the wcml_raw_price_amount filter. Custom prices are automatically converted according to the current currency.

Can I display custom prices in a different location than next to the price?

Yes, in the settings you can enter a custom WordPress hook in the Custom location hook field. Then in your theme, call this hook at the desired location:

do_action( 'my_custom_prices_location' );
How do I add a custom price only for specific products?

Use the wpify_woo_prices_should_display_price filter:

add_filter( 'wpify_woo_prices_should_display_price', function( $display, $custom_price, $product ) {
// Only for products in the "food" category
if ( ! has_term( 'food', 'product_cat', $product->get_id() ) ) {
return false;
}
return $display;
}, 10, 3 );
Why is the custom price not displayed for a variable product?

Custom prices (Prices module) in the current version do not support product variations. Custom price fields are displayed only for simple products.

Price History (Prices Log module), on the other hand, fully supports variations - it records prices for each variation separately and displays the lowest price in admin next to the variation price settings.

To display the lowest price on the frontend for variable products, use the [wpify_woo_lowest_price] shortcode in a template or custom code with a filter.