jamieFromOttawa Posted May 4 Share Posted May 4 I have sites which operate in French, and all the required fields on a form now have an English 'required' on them. Any thoughts on how I can change that. I have a similar issues name and address blocks where the fields headings are in English. Thx in advance. raeroshow 1 Link to comment
Solution paul2009 Posted May 5 Solution Share Posted May 5 (edited) On 5/4/2023 at 10:42 PM, jamieFromOttawa said: I have sites which operate in French, and all the required fields on a form now have an English 'required' on them. The change from "*" to "(required)" is part of the Form Block update, currently being rolled out to all sites. Have you checked the Language & Region settings on your sites (in Settings > Language & Region > Region) to check they are correctly configured for French? If you're looking for a CSS solution to restore the asterisk on form titles, please try this: /* Hide required on field titles Tip by sf.digital */ .form-wrapper .react-form-contents .field-list .title .required, .form-wrapper .react-form-contents .field-list .fields .description.required { visibility: hidden; } .form-wrapper .react-form-contents .field-list .title .required:before, .form-wrapper .react-form-contents .field-list .fields .description.required:before { visibility: visible; content: "*"; font-size: 1.5em; line-height: 1em; } Let me know how you get on. Did this help? Please give feedback by clicking an icon below ⬇️ Edited May 8 by paul2009 Countonlola, StoriesAroundTheSun, TwillCreative and 4 others 3 4 About: SQSP User for 17 yrs. Circle Leader since 2017. I value honesty, transparency, diversity and good design ♥. Work: Founder of SF Digital, building Squarespace Extensions to supercharge your commerce website. Content: Links in my posts may refer to SF Digital products or may be affiliate links. If my advice helped, you can thank me by clicking one of the feedback emojis below. I love coffee too. Link to comment
cinnamoncat Posted May 8 Share Posted May 8 There doesn't even appear to be an option to change this? To make it even worse, there isn't even a space between the field and the "(required)"! (Screenshot) I even tried adding a space after the field name and it did not add a space. How do I fix this to go back to the asterisk please??? This is truly disappointing and looks HORRIBLE. Like????? Link to comment
paul2009 Posted May 8 Share Posted May 8 26 minutes ago, cinnamoncat said: there isn't even a space between the field and the "(required)"! I'm not seeing the spacing issue that you've reported (see my screenshot below). Have you perhaps added some custom CSS that may be causing this? A link to the site may help us to see any issues 🙂 Did this help? Please give feedback by clicking an icon below ⬇️ About: SQSP User for 17 yrs. Circle Leader since 2017. I value honesty, transparency, diversity and good design ♥. Work: Founder of SF Digital, building Squarespace Extensions to supercharge your commerce website. Content: Links in my posts may refer to SF Digital products or may be affiliate links. If my advice helped, you can thank me by clicking one of the feedback emojis below. I love coffee too. Link to comment
cinnamoncat Posted May 8 Share Posted May 8 Hi @paul2009, thank you for your response. The issue only occurs on Safari. Maybe the issue is that Safari is on v14, but I would like to think Squarespace wouldn't deprecate design support that quickly..... The only custom CSS code I have is: form .select optgroup { display : none; } which is to remove the blank option that was appearing at the bottom of drop-down lists on forms. I feel like the space may be a lost battle, unless you/others have custom CSS suggestions? Is there no way to choose between the asterisk and the "required" text? If not, do you have any insight as to why? paul2009 1 Link to comment
paul2009 Posted May 8 Share Posted May 8 2 hours ago, cinnamoncat said: The issue only occurs on Safari. Maybe the issue is that Safari is on v14, but I would like to think Squarespace wouldn't deprecate design support that quickly. Yes. The spacing is created using column-gap in a Flex Layout, and that is only supported in Safari from version 14.1 onwards (April 2021). If that's an issue, you may want to reach out to Squarespace Customer Care using a support ticket. Did this help? Please give feedback by clicking an icon below ⬇️ About: SQSP User for 17 yrs. Circle Leader since 2017. I value honesty, transparency, diversity and good design ♥. Work: Founder of SF Digital, building Squarespace Extensions to supercharge your commerce website. Content: Links in my posts may refer to SF Digital products or may be affiliate links. If my advice helped, you can thank me by clicking one of the feedback emojis below. I love coffee too. Link to comment
paul2009 Posted May 8 Share Posted May 8 2 hours ago, BoonVivant said: I want to change the word 'required' on the Form Block back into an asterisk Please try the custom CSS that I posted above. Lyndsay06, mop and BoonVivant 1 1 1 About: SQSP User for 17 yrs. Circle Leader since 2017. I value honesty, transparency, diversity and good design ♥. Work: Founder of SF Digital, building Squarespace Extensions to supercharge your commerce website. Content: Links in my posts may refer to SF Digital products or may be affiliate links. If my advice helped, you can thank me by clicking one of the feedback emojis below. I love coffee too. Link to comment
Lyndsay06 Posted May 8 Share Posted May 8 This code worked perfectly for me. Thank you for sharing. mop and paul2009 1 1 Link to comment
cinnamoncat Posted May 10 Share Posted May 10 On 5/5/2023 at 1:43 AM, paul2009 said: The change from "*" to "(required)" is part of the Form Block update, currently being rolled out to all sites. Have you checked the Language & Region settings on your sites (in Settings > Language & Region > Region) to check they are correctly configured for French? If you're looking for a CSS solution to restore the asterisk on form titles, please try this: /* Hide required on field titles Tip by sf.digital */ .form-wrapper .react-form-contents .field-list .title .required, .form-wrapper .react-form-contents .field-list .fields .description.required { visibility: hidden; } .form-wrapper .react-form-contents .field-list .title .required:before, .form-wrapper .react-form-contents .field-list .fields .description.required:before { visibility: visible; content: "*"; font-size: 1.5em; line-height: 1em; } Let me know how you get on. Did this help? Please give feedback by clicking an icon below ⬇️ This is ridiculous and incredibly stupid. This should be a simple setting for users to choose from, and not something that requires a code change. Link to comment
cinnamoncat Posted May 10 Share Posted May 10 (edited) On 5/5/2023 at 1:43 AM, paul2009 said: The change from "*" to "(required)" is part of the Form Block update, currently being rolled out to all sites. Have you checked the Language & Region settings on your sites (in Settings > Language & Region > Region) to check they are correctly configured for French? If you're looking for a CSS solution to restore the asterisk on form titles, please try this: /* Hide required on field titles Tip by sf.digital */ .form-wrapper .react-form-contents .field-list .title .required, .form-wrapper .react-form-contents .field-list .fields .description.required { visibility: hidden; } .form-wrapper .react-form-contents .field-list .title .required:before, .form-wrapper .react-form-contents .field-list .fields .description.required:before { visibility: visible; content: "*"; font-size: 1.5em; line-height: 1em; } Let me know how you get on. Did this help? Please give feedback by clicking an icon below ⬇️ ALSO, it should be COMMON SENSE that any "change" that prompts so many forum questions is probably a bad idea! Edited May 10 by cinnamoncat BoonVivant 1 Link to comment
paul2009 Posted May 10 Share Posted May 10 On 5/8/2023 at 10:25 PM, Lyndsay06 said: This code worked perfectly for me. Thank you for sharing. You're welcome 🙂 About: SQSP User for 17 yrs. Circle Leader since 2017. I value honesty, transparency, diversity and good design ♥. Work: Founder of SF Digital, building Squarespace Extensions to supercharge your commerce website. Content: Links in my posts may refer to SF Digital products or may be affiliate links. If my advice helped, you can thank me by clicking one of the feedback emojis below. I love coffee too. Link to comment
paul2009 Posted May 10 Share Posted May 10 36 minutes ago, cinnamoncat said: This is ridiculous and incredibly stupid. This should be a simple setting for users to choose from I hope that the workaround that I provided above was helpful, at least for the moment. Your comments in this user forum may not been seen by anyone from Squarespace, but you can make a feature request and ensure it is seen by the right people at Squarespace, by raising it via a support ticket. Did this help? Please give feedback by clicking an icon below ⬇️ PartTwoDesign 1 About: SQSP User for 17 yrs. Circle Leader since 2017. I value honesty, transparency, diversity and good design ♥. Work: Founder of SF Digital, building Squarespace Extensions to supercharge your commerce website. Content: Links in my posts may refer to SF Digital products or may be affiliate links. If my advice helped, you can thank me by clicking one of the feedback emojis below. I love coffee too. Link to comment
estloris Posted May 17 Share Posted May 17 (edited) Hi, is it possible to change that "Required" word to another one? Edited May 17 by estloris Mistake Link to comment
Countonlola Posted July 25 Share Posted July 25 On 5/5/2023 at 8:43 AM, paul2009 said: The change from "*" to "(required)" is part of the Form Block update, currently being rolled out to all sites. Have you checked the Language & Region settings on your sites (in Settings > Language & Region > Region) to check they are correctly configured for French? If you're looking for a CSS solution to restore the asterisk on form titles, please try this: /* Hide required on field titles Tip by sf.digital */ .form-wrapper .react-form-contents .field-list .title .required, .form-wrapper .react-form-contents .field-list .fields .description.required { visibility: hidden; } .form-wrapper .react-form-contents .field-list .title .required:before, .form-wrapper .react-form-contents .field-list .fields .description.required:before { visibility: visible; content: "*"; font-size: 1.5em; line-height: 1em; } Let me know how you get on. Did this help? Please give feedback by clicking an icon below ⬇️ Thank you, this worked! Link to comment
BRands Posted Monday at 10:01 PM Share Posted Monday at 10:01 PM Hi @paul2009, your CSS solution to restore the asterisk didn't work on our website. Have you got an alternative solution to change (required) on our form? https://happydrops.nl/offerte Thx in advance. Link to comment
tuanphan Posted Wednesday at 01:00 PM Share Posted Wednesday at 01:00 PM On 12/5/2023 at 5:01 AM, BRands said: Hi @paul2009, your CSS solution to restore the asterisk didn't work on our website. Have you got an alternative solution to change (required) on our form? https://happydrops.nl/offerte Thx in advance. You can use this CSS code span.description.required { visibility: hidden; } span.description.required:before { content: "(*)"; visibility: visible; color: red; font-size: 18px; } BRands 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
BRands Posted Thursday at 12:31 PM Share Posted Thursday at 12:31 PM 23 hours ago, tuanphan said: You can use this CSS code span.description.required { visibility: hidden; } span.description.required:before { content: "(*)"; visibility: visible; color: red; font-size: 18px; } You're a genius!! Thanks a lot for sharing your knowledge! 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