Hi,
We have created Badge named New with ACF field. Now, we want to set expiry to this filed so that the Badge named New get disappeared (or removed) after certain days (Let’s say after 30 days of product published).
We have used below code for New Badge with ACF at functions.php
add_action( 'woocommerce_product_thumbnails', 'hnpl_display_acf_field_under_images', 20 );
function hnpl_display_acf_field_under_images() {
if(get_field('product_new')){
echo '<div class="hnpl-badge product-new"><strong>'.get_field('product_new').'</strong></div>';
}
}
Hoping for the solution.
Thank You,
Bibhash Karn