Skip to content
Advertisement

Save product first publishing date as “First publish date” and set custom product badges

Currently I always always display a “new” product badge, when a product is created and published in the store. For that we use the standard WooCommerce function $product->get_date_modified().

However, we also want to display a “back in stock” product badge when a product is back in stock. For that we use the code from that answer: Display custom product badge when a product is back in stock WooCommerce

So in this case, we do not want to display the “new” and the “back in stock” badge at the same time. That’s why we try to code a check which helps to decide which badge must be displayed.

For that I try to store the first publishing date of a product in order to show or not show the custom badges.

The goal would be:

  • Publishing product process: If a product has not set a “first published date”, then store the current date ad the “first published date”
  • IF the “first published date” is older than 10 days set custom value to TRUE
  • IF the “first published date” is today or in the last 10 days => do nothing

Current Code

JavaScript

Advertisement

Answer

According to what I can gather from your question you are looking for the solution way too far, and using $product->get_date_created() and $product->get_date_modified() will suffice without adding extra data yourself when (re)saving the product.

  • If the product is created, and not older than 10 days, the ‘new’ badge will be displayed
  • If the product is modified in the first 10 days, after it was created. The ‘new’ badge will still be displayed
  • If the product is edited afterwards (update stock), then the ‘back in stock’ badge will be shown, provided this adjustment is not older than 10 days
  • Of course you can extend the ‘modified’ check with additional checks, whether there is actually a stock and such, but the basic principle of the code remains the same

So the following should suffice:

JavaScript

If the product is not published immediately but only after +10 days, then $product->get_date_created() cannot be used.

To get around this you can add the following, this will adjust the created date to the date the product is published, not the date the product was created. An extra check is also provided for when the publish status of the product should change afterwards.

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement