-
Posts
19 -
Joined
-
Last visited
Content Type
Forums
Gallery
Blogs
Events
Store
Downloads
Profiles
Everything posted by antasz
-
Hi @tuanphan, I tried to apply your code independently but failed: https://okra-heron-ks3m.squarespace.com pass: pptest I've attached the image showing what I want to create (no need to worry about the colours): red bar without margin, with social icons on the right, with the extra extra logo (PP_LOGO_s_P%26P_logo_standard.png) that is now hanging in the air, in the red bar after the social icons. Can you help me with this, please! Thank you, Anita
-
how to hide blog posts from searchable site
antasz replied to dchavez's topic in Customize with code
Ok, you're right, it's a good idea. I'll try to convince her. Thank you. -
how to hide blog posts from searchable site
antasz replied to dchavez's topic in Customize with code
Hello, I don't know if it's a good decision to post here, but I couldn't find a more relevant article, and I didn't want to open a new one. The client wants the blog post authors not to be visible in search results. So I have to hide them. How? I attach a picture with the problem. This domain: https://www.fintastudio.hu Thanks if you can help! -
Thank you Tuanphan!
-
Yes, that's what I mean.
-
Hi Tuanphan, I would also like to ask for your help. Site: https://crow-grasshopper-6ssf.squarespace.com/ Password: farm5.0 I managed to put the text "Made by Farm Studio" in the header. Which I can't solve, but I suspect it's not just CSS that needs to be "half" of the text link: "Made by<a href="https://www.farm.co.hu" target="_blank">Farm Studio</a>" Can you help me with this? Thanks, a.
-
@Ziggy, can you help me also, please! I tried to apply your code to my case, but failed. I want to display my blog posts pulled in the summary block with 'alternating side by side' design. Here, on the Home page, is my summary block, under 'Legutóbbi projektjeink': https://broccoli-kumquat-bs8a.squarespace.com/ (pass: atnif) And I want to give it the same look as the blog page here: https://broccoli-kumquat-bs8a.squarespace.com/hu/projektek Can you help me, please? Thanks in advance
-
non-supported site language for accessibility softwares
antasz posted a topic in Customize with code
Hello, How can I change the site language to a non-supported language (Hungarian), even from code, so that the accessibility software recognises that it is a Hungarian site? thanks -
Multilingual site: translation of meta tags on one blog
antasz replied to antasz's topic in Customize with code
@dankamminga , here is the script what I'm using. With this solution, if there is no Previous or Next link, it will not be displayed, i.e. it will not say Previous or Next. Maybe it helps you. <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script> $(document).ready(function() { var currentUrl = window.location.href; if (currentUrl.includes("/hirek/")) { var pagination = $('.pagination'); var prevLink = pagination.find('a:contains("Prev")'); var nextLink = pagination.find('a:contains("Next")'); var prevText = pagination.contents().filter(function() { return this.nodeType === 3 && this.textContent.trim() === 'Prev /'; }); var nextText = pagination.contents().filter(function() { return this.nodeType === 3 && this.textContent.trim() === '/ Next'; }); if (prevLink.length > 0) { prevLink.text('Előző'); } else if (prevText.length > 0) { prevText[0].textContent = 'Előző / '; prevText[0].nodeValue = ''; // kitörli ha nincs is előző } if (nextLink.length > 0) { nextLink.text('Következő'); } else if (nextText.length > 0) { nextText[0].textContent = ' / Következő'; nextText[0].nodeValue = ''; // kitörli ha nincs is következő } } }); </script> -
Multilingual site: translation of meta tags on one blog
antasz posted a topic in Customize with code
Hi, I would like to ask help with the following: On this bilingual site, I would like to translate the words "Prev" and "Next" ("Előző" and "Következő") at the bottom of blog posts under the Hungarian news (e.g. https://www.baem.hu/hirek/2023/01/30/folytattuk-az-egyuttmukodest-az-iaeste-szervezetevel), even if there is a link on them, but also if they are the first or last posts, i.e. there are without links. There is an English news site which is also a blog, there you should keep the words "Prev" and "Next". Thanks -
Form block: "foreign" characters in form field names
antasz replied to GDWebDesign's topic in Blocks
Hello, Here is what I would like help with. I have created forms in Hungarian for my client's website. The emails that arrive with the subscription do not contain the special "Hungarian" characters, but HTML entities. The client is very annoyed by this. Can I fix this bug in Squarespace or do they need to adjust something in the mail system? Thank you, a. -
Change header button language Squarespace 7.1
antasz replied to nataliaesp's topic in Customize with code
Thank you! It works, that was the solution! -
Change header button language Squarespace 7.1
antasz replied to nataliaesp's topic in Customize with code
Hello! Thanks for your reply! The problem is not with the language selector, but with the red button. On desktop both languages have the button in the navigation, but on mobile the English version has no button in the sandwich menu. -
Change header button language Squarespace 7.1
antasz replied to nataliaesp's topic in Customize with code
Hi @creedon, I'm having the same problem: the button at the bottom of the English mobile sandwich menu doesn't appear. It works on desktop. I pasted a code you suggested to someone here earlier, but that didn't solve the issue either. Could you please take a look! Url: https://www.bee-at-work.hu Thanks, Anita -
How can I give the style of the Masonry blog to a summary section?
antasz replied to antasz's topic in Customize with code
Thanks for trying. Then there is nothing left to do but copy the settings one by one. -
How can I give the style of the Masonry blog to a summary section?
antasz replied to antasz's topic in Customize with code
Hi, unfortunately I still haven't got anywhere with this question. Anyone? Any suggestions? -
How can I give the style of the Masonry blog to a summary section?
antasz replied to antasz's topic in Customize with code
Hello, Yes, I would like the summary section to look the same as the news page with the masonry layout. Or as much as possible. Thanks in advance if you have any suggestions. -
Site URL: https://dory-krill-pzyz.squarespace.com/ Hello, I've browsed the forum but I haven't found an answer so I'd like to ask for help with the following, I have a Masonry blog page (https://dory-krill-pzyz.squarespace.com/hirek, password: cssk12ker) which I've given a more or less acceptable look. I'd like to adapt this style to the Summary section (under the Title: Hírek) on the main page (https://dory-krill-pzyz.squarespace.com/), which draws content from this blog. I want it to look exactly the same: thumbnail image first, meta content: date and categories, title and excerpt. Same font settings, padding, etc. What is the easiest way to do this? Which style should I add to what in CSS? Or how? Thanks!