Jump to content

creedon

Circle Member
  • Posts

    9,464
  • Joined

  • Last visited

  • Days Won

    78

Posts posted by creedon

  1. Please post the URL for a page on your site where we can see your issue. For us to see the URL you need to include the link in the content of your post. The URL field the forum software provides is not shown to us.

    A link to the backend of the your site won’t work for us, i.e. a URL that contains /config/.

    Please set up a site-wide password, if your site is not public and you've not already done so.

    Post the password here.

    Adding a site-wide password does not allow anyone to alter your site. It only allows those with the password to see your site.

    Please read the site-wide password and how to share a link documentation to understand how they work.

    You may find How to post a forum question post useful.

    We can then take a look at your issue.

  2. 33 minutes ago, Pooneh said:

    I'm not sure, do you need the URL like this? My page is public.

    The URL is what we needed.

    If you used the CSS in the solution post without installing the cited code ( JavaScript ) above it that would hide all your products on all pages because the code would be incomplete.

    When the code is fully installed it is intended that the main store page or the All category is devoid of products so that you can build your own custom sections with text and images to link into your categories.

  3. 9 minutes ago, Pooneh said:

    I would appreciate it if you could help me So that I can show my products by category on my site

    Please post the URL for a page on your site where we can see your issue. For us to see the URL you need to include the link in the content of your post. The URL field the forum software provides is not shown to us.

    A link to the backend of the your site won’t work for us, i.e. a URL that contains /config/.

    Please set up a site-wide password, if your site is not public and you've not already done so.

    Post the password here.

    Adding a site-wide password does not allow anyone to alter your site. It only allows those with the password to see your site.

    Please read the site-wide password and how to share a link documentation to understand how they work.

    You may find How to post a forum question post useful.

    We can then take a look at your issue.

  4. 4 hours ago, Tiamorant said:

    this is the link. Let me know if it works.

    I suggest not sharing your site access email and password as it is not secure. Anyone can go in and mess up your site. Please see my following boilerplate on how you can safely share access to your site so we can help out.

    You should edit your previous post to take out the login information and change your Squarespace account password.

    Please post the URL for a page on your site where we can see your issue. For us to see the URL you need to include the link in the content of your post. The URL field the forum software provides is not shown to us.

    A link to the backend of the your site won’t work for us, i.e. a URL that contains /config/.

    Please set up a site-wide password, if your site is not public and you've not already done so.

    Post the password here.

    Adding a site-wide password does not allow anyone to alter your site. It only allows those with the password to see your site.

    Please read the site-wide password and how to share a link documentation to understand how they work.

    You may find How to post a forum question post useful.

    We can then take a look at your issue.

  5. Squarespace is more of a closed black box system than some of the others you've mentioned. You can't install it on your own server and go to town exploring. SS is a website as a service.

    To get the most out of it as far as being a developer, you want to become a Circle Member. Although SS has options for adding custom code that is really more of client side modifications. You can't get in a modify the internals of SS.

  6. I'm not sure if your question is if you have to do something to get the mentioned pages indexed. Or, if you don't want some pages indexed for some reason.

    In theory there is a chance that your pages will be indexed naturally. No one can guarantee when or if it will happen. Being indexed and searchable on Google depends on many factors.

    You can increase your chances by getting an account on Google Search Console and submitting your sitemap.xml file to it. But again there are many factors that go into success. GSC also gives you reports about Google's indexing activity that can be useful.

    If you don't want some pages indexed there is a technique to do this. It has been mentioned many times in this forum.

  7. On 4/11/2024 at 2:01 AM, Dario88c said:

    I'm trying to change the size of my social icons in Squarespace 7.1, and I need sizes larger than XL. Is there a way to do this?

    Set the size in the Design tab to Small (the default SS uses when a Social Links block is created).

    Add the following to Page Settings > Advanced > Page Header Code Injection for the page. Please see per-page code injection.

    <style>
    
      #siteWrapper {
      
        --social-links-size-custom : 64px;
        
        }
        
      .socialaccountlinks-v2-block .social-icons-size-small.social-icons-style-regular .sqs-svg-icon--wrapper {
      
        height : var( --social-links-size-custom );
        width : var( --social-links-size-custom );
        
        }
        
      </style>

    This is for v7.1.

    Let us know how it goes.

  8. Quote

    From what I read, Squarespace 7.0 had a splash/landing page option, but it was discontinued in 7.1.

    Squarespace recently added a feature to Page Settings for turning off the header and footer for individual pages. You no longer have to use CSS for the Blank pages you create.

    Please see Header Site Title Link Not Homepage Change.

    Let me know how it goes.

  9. 43 minutes ago, SocialStar said:

    Does this code work for blogs in a membersite?

    I'm not sure the original poster's code works as they mentioned they were having an issue with it. But yes in theory if the code was working it should work regardless if the Blog page is in Member Sites or not. The basic underlying structure of the Blog page does not change.

    Add the following to Blog Settings > Advanced > Page Header Code Injection for the blog page. Please see per-page code injection.

    <style>
    
      /* begin newer older post text change */
      
        /* begin newer */
        
          .blog-list-pagination .newer .prev-label {
          
            visibility : hidden;
            
            }
            
          .blog-list-pagination .newer .prev-label::before {
          
            content : '[ enter text here between single quotes replacing square brackets ]';
            visibility : visible;
            
            }
            
          /* end older */
          
        /* begin older */
        
          .blog-list-pagination .older .next-label {
          
            visibility : hidden;
            
            }
            
          .blog-list-pagination .older .next-label::after {
          
            content : '[ enter text here between single quotes replacing square brackets ]';
            visibility : visible;
            
            }
            
          /* end older */
          
        /* end newer older post text change */
        
      </style>

    Let us know how it goes.

  10. 12 hours ago, riverwyre said:

    if I want to make the second section appear when the first one disappears, can I simply use the same code on the second section (changing the data section id) but on the last line, change 'display', 'none' to ''display', 'flex'?  Tell me it's that easy!!!

    I don't think it's that easy.

    I know of no code that does what I think you want. The code would need to be able to work with multiple sections and it would need to understand date ranges.

  11. 10 hours ago, Dario88c said:

    I'm trying to change the size of my social icons in Squarespace 7.1, and I need sizes larger than XL. Is there a way to do this?

    Your site is private. Here is my boilerplate about giving us access to your site.

    Please post the URL for a page on your site where we can see your issue. For us to see the URL you need to include the link in the content of your post. The URL field the forum software provides is not shown to us.

    A link to the backend of the your site won’t work for us, i.e. a URL that contains /config/.

    Please set up a site-wide password, if your site is not public and you've not already done so.

    Post the password here.

    Adding a site-wide password does not allow anyone to alter your site. It only allows those with the password to see your site.

    Please read the site-wide password and how to share a link documentation to understand how they work.

    You may find How to post a forum question post useful.

    We can then take a look at your issue.

  12. 47 minutes ago, SarahFrancesBrandCo said:

    Can I use something similar to change "Sold Out" to the words "Event Full"?

    Without being able to see your site I can't provide a specific solution. The following is a general example. Doing what you want with CSS is a bit more involved and spacing can be an issue.

    .sqs-block-summary-v2 .summary-item-record-type-store-item .product-mark.sold-out {
    
      visibility : hidden;
      
      }
    
    .sqs-block-summary-v2 .summary-item-record-type-store-item .product-mark.sold-out::before {
    
      background-color : black;
      content : 'Event Full';
      padding : 6px 8px;
      visibility : visible;
      
      }

    Let us know how it goes.

  13. Edit your Additional Info for the product.

    Place a line block above the first text block ( the one with the unwanted color ).

    Above the line block add a new text block. Enter the text from scratch. Don't copy and paste the current bad text. Also do not set a custom color for the text.

    Apply the Additional Info and Save the product.

    Check the new text. Does it look OK? If so, go back in and delete the line block and the bad text block.

    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.