Welcome

This code snippet library features advanced modifications you can make to customize your Squarespace 5 site. While we do not provide custom programming support, we've assembled the following guides as a reference to help you get started.


HTML Guide

CSS Guide

Javascript Guide

Monday
Dec052011

Replace Comment Field Titles In Journal Entries

Example: Replace comment field title text in journal entries with text of your own preference.

Note: This script allows you to replace the default title text for the 'Author', 'Author Email', 'Author URL', and 'Post' field titles in journal comments to text of your own choice. 

In Header Code Injection put: 

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js"></script>
<script type="text/javascript">
$(function(){
$("#authorName_title").html("AUTHOR Text");
$("#authorEmail_title").html("AUTHOR EMAIL Text");
$("#authorUrl_title").html("AUTHOR URL Text");
$("#body_title").html("POST Text");
});
</script> 

 

« Hide Reader Comments Dialog | Main | Hide Content Tags In Search Results »