Many blogs display the last updated date for posts if they refresh content for a particular article. You can do the same within Shoptimizer with a little CSS snippet as we’re actually outputting both dates; this is best practice as it alerts Google that a post has new content.
Go to Appearance > Customize > Additional CSS
– and add the following CSS code.
1 2 3 4 5 6 7 |
.entry-date.published:not(.updated) { display: none; } .updated:not(.published) { display: inline; } |