Jump to content

creedon

Circle Member
  • Posts

    9,464
  • Joined

  • Last visited

  • Days Won

    78

Community Answers

  1. creedon's post in Need help making a custom form work was marked as the answer   
    It appears the code has taken a trip through a word processor and they often foul up code by putting smart quotes in. Code, in general, hates smart quotes and causes syntax errors.
    submissionRedirectUrl: ‘https://www.durangocreativedistrict.org’, ...needs to be changed to...
    submissionRedirectUrl: 'https://www.durangocreativedistrict.org', Notice the dumb quotes in place of the smart quotes.
    When working with code use a code editor or a dumb word processor that doesn't do helpful things like automatically adding smart quotes.
    After I made the quotes dumb here is what I'm seeing locally.

    Let us know how it goes.
  2. creedon's post in script has stopped working was marked as the answer   
    Someone has removed jQuery which the calculator code depends on.
    Add the following to Website > Pages > Website Tools > Code Injection > HEADER.
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script> This is the latest version of jQuery. It is possible that the calculator code depended on features that were in an older version of jQuery. If the calculator still doesn't work this might be the reason.
    Let us know how it goes.
  3. creedon's post in How do I keep my header from inverting on my product pages was marked as the answer   
    body:not( .collection-type-products ) #header:hover a, body:not( .collection-type-products ) #header:hover img, body:not( .collection-type-products ) #header:hover svg { filter : invert( 1 ); } Let us know how it goes.
  4. creedon's post in Design section missing from Menu was marked as the answer   
    It is not missing just moved. SS has changed the menu structure. You can use the search icon as shown in your image to find Custom CSS. Or, go to Website > Website Tools > Custom CSS.
  5. creedon's post in Where did "Custom CSS" go? was marked as the answer   
    Website > Pages > Website Tools > Custom CSS.
  6. creedon's post in Squarespace 7.1 Font Weight Issue was marked as the answer   
    It appears that Oswald supports the 500 and 600 font weight. Why SS doesn't present those, I don't know. Perhaps the differences are so subtle that they don't offer them.

    Add the following to Website > Website Tools > Custom CSS.
    /* navigation font weight */ .header-nav-list, /* desktop */ .header-menu-nav-wrapper /* mobile */ { --site-navigation-font-font-weight : 600; } Let us know how it goes.
  7. creedon's post in Help there is a custom css code at the top of my site that won't go away. was marked as the answer   
    You have to include the link in the content of your post for us to see it. The field the forum software provides is not shown to us.
  8. creedon's post in ASP (Active server pages) was marked as the answer   
    Squarespace does not support ASP. If you need ASP you will need to find another provider.
    Squarespace is a closed proprietary system geared towards the non-techy DIY website builder market.
    Depending on your needs you might be able to use Squarespace plus an external service for the ASP stuff.
  9. creedon's post in Social Icons Disappeared was marked as the answer   
    You have an errant unclosed script tag ( <script> ) which is wreaking havoc. It is most likely in Website > Pages > Website Tools > Code Injection > FOOTER.
    Remove it.
    Let us know how it goes.
  10. creedon's post in Hide Logo and navigation from one page, but keep Shopping Cart? was marked as the answer   
    Add the following to Store Settings > Advanced > Page Header Code Injection for the store page. Please see per-page code injection.
    <style> html:not( .squarespace-damask ) .ancillary-header-branding-position-top-left [ data-nc-base="header" ] [ data-nc-container="top-left" ][ data-nc-container ], html:not( .squarespace-damask ) .Header-nav, html:not( .squarespace-damask ) .ancillary-mobile-bar-branding-position-top-left [ data-nc-base="mobile-bar" ] [ data-nc-container="top-left" ][ data-nc-container ], html:not( .squarespace-damask ) .ancillary-mobile-bar-menu-icon-position-top-right [ data-nc-base="mobile-bar" ] [ data-nc-container="top-right" ][ data-nc-container ] .Mobile-bar-menu { display : none; } </style> Let us know how it goes.
  11. creedon's post in Internal links get me off from builder was marked as the answer   
    For links to work for both your built-in domain ( the backend editor ) and your hosted domain, don't use the full URL for the link.
    So...
    https://www.clarestockolosa.com/etc/etc/etc
    ...becomes...
    /etc/etc/etc
    By removing the https://www.clarestockolosa.com part you are turning the URL into an absolute URL. Absolute URLs don't care about what host and domain they appear under.
    Let us know how it goes.
  12. creedon's post in Redirect for /search to a different page doens't work, any suggestions? was marked as the answer   
    The reason URL Mapping doesn't work is that feature is only for redirecting URLs that don't exist on your site. /search being a built-in SS page, can't be removed.
    So you are left with @tuanphan's suggestion to use my /cart redirect code and change the path to /search.
  13. creedon's post in CSS code attempting to swap images between mobile and desktop versions of a site was marked as the answer   
    The URL you added when you created the post doesn't get shown in the post. You have to add it as part of your text.
    Add the following to Website > Website Tools > Custom CSS. Remove any previous attempts at this effect, make a copy somewhere.
    @media only screen and ( max-width : 767px ) { [ data-section-id="656f919dfff2281f80d63067" ] .section-background { background-image : url( https://static1.squarespace.com/static/643bf7cb3a43c94afb0819f0/t/659039f2f272f37873817dfe/1703950838786/Icelandic+Pony+Large+Edit.jpg ); background-position : center; background-repeat : no-repeat; background-size : cover; } [data-section-id="656f919dfff2281f80d63067"] .section-background img { display : none !important; } } This is for v7.1 and specific to the poster's need.
    Let us know how it goes.
  14. creedon's post in Did something change on squarespace? Half my codes broke was marked as the answer   
    The reason the following CSS ruleset only works on mobile is that it is contained in a media query ( @media screen and (max-width: 768px) ) The media query is saying only apply the contained rulsesets on viewports 768px or less.
      section[data-section-id="637c4a75c10b4a517ecbd275"] span[style*='underline'] {     color: red;     text-decoration: none !important;     font-size: 23px   } For CSS you want to work on both desktop and mobile don't wrap in a media query. If you go back several rulesets from the one I show, you will find the media query.
    Perhaps the general issues you are having with code not working is rulesets being wrapped in media queries when you don't want them to be.
    Let us know how it goes.
  15. creedon's post in Organizing categories by alphabetical order - code was marked as the answer   
    Please see Organizing products - Product categories.
    Let us know how it goes.
  16. creedon's post in Links on words not working was marked as the answer   
    I suggest trying to bring the line Check Out my work up... to on top of everything else.
    From what I can see the text block with I'm a UK writer... is on top of the other text block and is covering the links so you can't click them.

    Let us know how it goes.
  17. creedon's post in Instead of products saying "Sold Out" i want it to say "On Backorder" was marked as the answer   
    Squarespace as a platform has no concept of backorders.
    You can change the Out of Stock text.

    Let us know how it goes.
  18. creedon's post in how to change the shop amount $0.00 to POA was marked as the answer   
    Try the following.
    .products.collection-content-wrapper .grid-item.tag-poa .grid-main-meta .grid-prices .product-price {   visibility : hidden;      } .products.collection-content-wrapper .grid-item.tag-poa .grid-main-meta .grid-prices .product-price::before {   content : 'POA';   visibility : visible;      } Let us know how it goes.
  19. creedon's post in Syntax Error on line 13 -- help me demystify? was marked as the answer   
    I couldn't see all the code you showed on your site so I can't say for sure I can solve the issue.
    Remove the code you have, make a copy somewhere. Add the following to Website > Pages > Website Tools > Custom CSS.
    h4, h5 { color : #3e6870; font-family : 'Freight Display Pro', serif; line-height : 1.4em; text-align : left; text-transform : none; } h4 { font-size : 40px; font-weight : 300; letter-spacing : 0.024em; } h5 { font-size : 12px; font-weight : 400; letter-spacing: 0.3em; } Part of your issue may have arisen because your code used smart single quotes. In general code doesn't like smart quotes. It's a syntax error. You often pick up smart quotes by using a Word Processor to work with code. To avoid getting unwanted smart quotes use a code editor.
    Let us know how it goes.
  20. creedon's post in Help add caption to title was marked as the answer   
    No you aren't. You are using Fluid Engine so the images don't have captions like the Classic Editor does.
    For Fluid Engine you can try to overlay a text block over the image.

  21. creedon's post in How to remove author profiles from entire site? was marked as the answer   
    Go to Settings > Permissions. Delete the unneeded Basic Authors. You will have a chance to assign the posts for each deleted Basic Authors to another.
    It is a rather tedious process.
  22. creedon's post in Url mapping was marked as the answer   
    It worked for me. I went to glorisings.com/teaching and was redirected to glorisings.com/singinglessons.
  23. creedon's post in Can't get URL mapping to work was marked as the answer   
    You must include the forward slash at the beginning of each URL slug. Look at my screenshot.
  24. creedon's post in Banner Difficult to Read was marked as the answer   
    SS has style tweaks for that element.


    Let us know how it goes.
  25. creedon's post in Change Placeholder "search" text in search bar was marked as the answer   
    Please see the following.
    Let us know how it goes.
×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.