mathildeeeeee Posted September 30, 2020 Share Posted September 30, 2020 Hey guys! How can I change default "Posts tagged Arctic" to "Tagged Arctic"? I used css below but then I lose the tag name. .BlogList-filter { font-size: 0!important; } .BlogList-filter::before { content: "Tagged"!important; font-size: 16px; font-family: Futura-PT!important; } Link to comment
tuanphan Posted September 30, 2020 Share Posted September 30, 2020 You need to use JavaScript. Can you share link to page in screenshot? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
mathildeeeeee Posted September 30, 2020 Author Share Posted September 30, 2020 (edited) 3 hours ago, tuanphan said: You need to use JavaScript. Can you share link to page in screenshot? Hi Tuan, thanks for your answer. My client's site is private and don't have the permissions to publish it yet... Are there any other screenshots I can provide? I also tried injecting code in footer: (not working) <script> // Read More Text document.querySelectorAll('.BlogList-filter').forEach(function(bloglistfilter) { bloglistfilter.textContent = "Tagged "; // Customize text here }) </script> Edited September 30, 2020 by mathildeeeeee Link to comment
tuanphan Posted October 3, 2020 Share Posted October 3, 2020 Hi. Very difficult to help without checking page code structure. mathildeeeeee 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
mathildeeeeee Posted October 10, 2020 Author Share Posted October 10, 2020 On 10/3/2020 at 2:46 AM, tuanphan said: Hi. Very difficult to help without checking page code structure. Ok, will get back to this when site published. Thanks again! Link to comment
tuanphan Posted October 12, 2020 Share Posted October 12, 2020 You can setup password & share url Or you can duplicate the site & share duplicated site url. https://support.squarespace.com/hc/en-us/articles/360039396131-Duplicating-a-site Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
mathildeeeeee Posted October 15, 2020 Author Share Posted October 15, 2020 On 10/12/2020 at 3:05 AM, tuanphan said: You can setup password & share url Or you can duplicate the site & share duplicated site url. https://support.squarespace.com/hc/en-us/articles/360039396131-Duplicating-a-site Hey Tuanphan thanks for your message, good to know for the future. The site is finally published! Here is the link to a specific page: https://www.andreakrupp.com/blog/tag/Arctic Now, is it possible to remove words "Posts tagged" so that only the tag name would appear ? (here in this page it would only show "Arctic" for example) and same for other tag pages. Thanks again! Link to comment
tuanphan Posted October 16, 2020 Share Posted October 16, 2020 You need jQuery to do this. Do you use Personal Plan or higher? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
mathildeeeeee Posted October 16, 2020 Author Share Posted October 16, 2020 11 hours ago, tuanphan said: You need jQuery to do this. Do you use Personal Plan or higher? Business plan Link to comment
mathildeeeeee Posted October 19, 2020 Author Share Posted October 19, 2020 On 10/16/2020 at 4:25 PM, mathildeeeeee said: Business plan @tuanphan Link to comment
creedon Posted October 20, 2020 Share Posted October 20, 2020 Add the following to Settings > Advanced > Code Injection > HEADER. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js" type="text/javascript"></script> Add the following to Blog Settings > Advanced > Page Header Code Injection. <script> $( ( ) => { let $e = $( '.BlogList-filter' ); if ( ! $e.length ) return; let s = $e.text ( ).replace ( 'Posts tagged ', '' ); $e.text ( s ); } ); </script> Let us know how it goes. mathildeeeeee and tuanphan 1 1 Find my contributions useful? Please like, upvote, mark my answer as best , and see my profile. Thanks for your support! Link to comment
mathildeeeeee Posted October 21, 2020 Author Share Posted October 21, 2020 On 10/19/2020 at 9:29 PM, creedon said: Add the following to Settings > Advanced > Code Injection > HEADER. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js" type="text/javascript"></script> Add the following to Blog Settings > Advanced > Page Header Code Injection. <script> $( ( ) => { let $e = $( '.BlogList-filter' ); if ( ! $e.length ) return; let s = $e.text ( ).replace ( 'Posts tagged ', '' ); $e.text ( s ); } ); </script> Let us know how it goes. Thank you thank you!!! Worked perfectly. creedon 1 Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment