• Resolved ArcticFritid

    (@metuza)


    Hello,

    I have noticed that if i increase a product price then the lowest price per 30 days does never change. After 30 days it still show the price i had before the increase of price. This will give customers a wrong view and can lead them to feel that i have increased price just before a sale period.

    Also there is an issue with graphs not showing for variable products, it does only show for the first variant selected. Then on next selection only the frame does appear, no graphs: https://www.arctic-fritid.as/produkt/friluftsliv/skotoy-og-fritidsklaer/sko-og-stovler/innleggssaler/filtsaler-breistein/

    Feature request: An option to delete registrations in the Price Alerts table. I get some registrations now and then with suggested price lower than i ever will put it so this will build up and should be deleted.

    Thanks for a great plugin ??

    Brgds
    Rune

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Marin Matosevic

    (@marinmatosevic)

    Hi Rune,

    1. Could you give us a real-life example of that lowest-price issue? Like, some actual prices with dates, and info on when the product went on sale and for how long.
      If a product has previous price records, during a sale, it’ll display the lowest price it hit within the 30 days leading up to the start of the sale.
    2. It’s definitely a bug. We’re already on it and will get it sorted out.
    3. While we had it noted on our to-do list before, we’re bumping it up the list now and making it a priority. ??

    Thanks for bringing the bug to our attention and sharing your feature request! We’ll be rolling out a new release in the next few days.

    Thread Starter ArcticFritid

    (@metuza)

    Hi Marin,

    Sounds great. Here is a product that had a price of 89 NOK until november 2023 when i increased the price to 95 NOK. The product has never been on sale: https://www.arctic-fritid.as/produkt/friluftsliv/skotoy-og-fritidsklaer/stromper-og-sokker/alaska-sokken/

    Maybe it works difference if product has been on sale, or get on sale?

    Brgds
    Rune

    Plugin Author Marin Matosevic

    (@marinmatosevic)

    Version 2.4.2 is out, fixing the chart issue and adding a delete option.

    Regarding the lowest price display, this feature has been adjusted to comply with EU regulations, particularly concerning products on sale. You have the option to enable it exclusively for products on sale by navigating to the settings page and activating the “Only when product on-sale” option.

    If you want to display this information for all products, you can adjust the “Lowest price in the last 30 days” message or disable it if the lowest price falls below the current price. Simply add this snippet to your child theme’s functions.php or use a plugin like Code Snippets.

    add_filter('pph_lowest_price', function ($lowest_price, $product_id, $product) {
    
        if ($product->get_price() > $lowest_price) {
            $lowest_price = null;
        }
    
        return $lowest_price;
    }, 10, 3);
    Thread Starter ArcticFritid

    (@metuza)

    Thanks a lot ?? Seems to be working just perfect. Really nice work done with the delete option, thanks again.

    Brgds
    Rune

    Plugin Author Marin Matosevic

    (@marinmatosevic)

    Great! I’m glad that I was able to help you.
    Thanks for the review! ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Lowest price issues’ is closed to new replies.