AussieSean Posted July 28, 2023 Posted July 28, 2023 I'd like each blog post to show the full publication date "Day Month Year" instead of just "Day Month". I know the summary block shows the full date but I'd like users/readers who extract or use our content to be able to properly reference it. Thanks for any help/advice you can provide
Solution CassAggett Posted July 28, 2023 Solution Posted July 28, 2023 Hi Sean, check out this blog post from @paul2009: https://sf.digital/squarespace-solutions/date-styles-on-squarespace-71-blog-posts abc, vivability, LaunchTheDamnThing and 5 others 5 2 1 Instruction: How to set a site-wide password If this helped you, please like or mark my solution as answer so others can scroll to it quickly 👆 Cass Aggett is a Squarespace website designer for go-getting women – no matter what stage of business. WEBSITE • INSTAGRAM
jcweaver Posted August 28, 2023 Posted August 28, 2023 Squarespace actually puts the full blog post publication date on every blog page in a meta element with an itemprop='datePublished'. If you search for this item and get the content attribute, you can use this to inject into the published date element. <script> //only run the code after the dom has loaded document.addEventListener('DOMContentLoaded', function() { //get the blog post html item so that we can later replace this with the full published date var pubdate = document.getElementsByClassName("blog-meta-item--date"); //get the published info from the meta property on the page var datePublishedMeta = document.querySelector('meta[itemprop="datePublished"]'); for (var i = 0; i < pubdate.length; i++) { if (datePublishedMeta){ //turn the meta date into a Date item so we can restyle it var d = new Date(datePublishedMeta.getAttribute('content')); //Set the dateStyle. I prefer 'long' to display the full month like March instead of Mar pubdate[i].innerText = d.toLocaleString('default', {dateStyle: 'long'}); } } }); </script> GretelFerat, Jorinde and schmutzie 3
Jorinde Posted April 10 Posted April 10 Hi there, I used the code aboven On 8/28/2023 at 7:40 PM, jcweaver said: Squarespace actually puts the full blog post publication date on every blog page in a meta element with an itemprop='datePublished'. If you search for this item and get the content attribute, you can use this to inject into the published date element. <script> //only run the code after the dom has loaded document.addEventListener('DOMContentLoaded', function() { //get the blog post html item so that we can later replace this with the full published date var pubdate = document.getElementsByClassName("blog-meta-item--date"); //get the published info from the meta property on the page var datePublishedMeta = document.querySelector('meta[itemprop="datePublished"]'); for (var i = 0; i < pubdate.length; i++) { if (datePublishedMeta){ //turn the meta date into a Date item so we can restyle it var d = new Date(datePublishedMeta.getAttribute('content')); //Set the dateStyle. I prefer 'long' to display the full month like March instead of Mar pubdate[i].innerText = d.toLocaleString('default', {dateStyle: 'long'}); } } }); </script> Hi there! I used this code to show the year on my blogsposts. It works really well and even shows the month in letters (like 'steptember'). So far, so good, 🙂 BUT... one problem: at the moment it works in the trial-mode, but from the moment I will upgrade the website to a Personal plan, the Code injector will not work anymore. Is there another way to make this work? For example: with the Custom CSS fields, or with code in the footer (Edit > Edit Site Footer > Add a block > Code)? The code above isn't working in those fields.
creedon Posted April 10 Posted April 10 11 hours ago, Jorinde said: but from the moment I will upgrade the website to a Personal plan, the Code injector will not work anymore. The personal plan does not support running custom JavaScript. You need the business plan or above. Find my contributions useful? Please like, upvote, mark my answer as the best ( solution ), and see my profile. Thanks for your support! I am a Squarespace ( and other technological things ) consultant open for new projects.
Jorinde Posted April 22 Posted April 22 On 4/10/2024 at 10:52 PM, creedon said: The personal plan does not support running custom JavaScript. You need the business plan or above. So there is now way to get around this? For example, with a code in the footer? It would be such a shame to have to upgrade to a business plan, just for this date adjustment. 🙈 In this example below the code, originally for code injector, did also work in the footer code: Still hoping for a solution like that 🙂
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment