Single Product Last Modified/Updated Date
-
Dear Team,
Can you please help me display Single Product Last Modified / Updated Date on the Single Product Page?
Thanks,
Saurabh
Hello,
Tell me in what place on the product page do you want to see the date?
Kind Regards
XTemos Studio
Alongside SKU, Category (as in attached image)
Attachments:
You must be
logged in to view attached files.
Try to add the following PHP code snippet to the child theme functions.php file to do this
add_action( 'woocommerce_single_product_summary', function() {
global $product;
?>
<div class="product-share">
<span class="share-title">Date</span>
<?php echo $product->get_date_modified()->date('F j, Y, g:i a'); ?>
</div>
<?php
}, 100 );
You are welcome! If you have any questions please feel free to contact us.
Best Regards
The topic ‘Single Product Last Modified/Updated Date’ is closed to new replies.