Home Forums WoodMart support forum Single Product Last Modified/Updated Date

Single Product Last Modified/Updated Date

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #206993

    saurabhiit2003
    Participant

    Dear Team,

    Can you please help me display Single Product Last Modified / Updated Date on the Single Product Page?

    Thanks,
    Saurabh

    #207017

    Eric Watson
    Participant

    Hello,

    Tell me in what place on the product page do you want to see the date?

    Kind Regards
    XTemos Studio

    #207028

    saurabhiit2003
    Participant

    Alongside SKU, Category (as in attached image)

    Attachments:
    You must be logged in to view attached files.
    #207033

    Eric Watson
    Participant

    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 );
    #207037

    saurabhiit2003
    Participant

    Thanks a lot! It worked.

    #207060

    You are welcome! If you have any questions please feel free to contact us.

    Best Regards

Viewing 6 posts - 1 through 6 (of 6 total)

The topic ‘Single Product Last Modified/Updated Date’ is closed to new replies.