Jolsonphotography Posted February 22, 2020 Share Posted February 22, 2020 Site URL: https://jolsonweddings.com/stories I'm looking for a way to target and replace commas in my blog summery block, so that the metadata below the title displays as "Destination Wedding" instead of "Destination, Wedding". I'm hoping there's a way to target and replace the comma with some kinda of script, I was able to do something similar with my homepage using the following code: Quote <script>$('.sqmuse-slider-type-8').html($('.sqmuse-slider-type-8').html().replace("Elopement,Wedding","Elopement Wedding")); $('.sqmuse-slider-type-8').html($('.sqmuse-slider-type-8').html().replace("Destination,Wedding","Destination Wedding")); </script> Can't seem to do the same with the Blog Summary though, anyone have any ideas? Link to comment
Jolsonphotography Posted February 23, 2020 Author Share Posted February 23, 2020 After hours of fiddling with code, I was able to come up with my own solution. <script> $('.sqs-block-summary-v2').map(function(val, i) { this.innerHTML = this.innerHTML.replace(/,/g, ' '); }) </script> Removes all commas from the Squarespace Catagory Metadata when using summery in Version 7.0. Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.