Jump to content

creedon

Circle Member
  • Posts

    9,496
  • Joined

  • Last visited

  • Days Won

    79

Posts posted by creedon

  1. I don't have a solution for any of your issues but I have observations on the accordion you want.

    Usually what we do in a case like this is put the boilerplate element, in this case an accordion block, in the footer of the site and hide it. That makes it available for code to move into a different location.

    I have done a number of similar effects but not one specifically for this situation. So that would be part one, get the code to move the accordion to where you want. I do have some code that may work for this part.

    Step two might be some code that would take the normal product description and move it into the appropriate place in the accordion block.

  2. The "products" you show are three types of blocks. An image, text, and button.

    I say products in quotes because these elements aren't what we think of as products from a store page in the context of a Squarespace site. They are of course products in the context of your business.

    If you are not familiar with adding blocks to a page please see Adding content with blocks. The support site has many useful articles.

  3. On 3/3/2024 at 6:00 AM, ando_337 said:

    The social media icons disappear as soon as I leave the editing mode.

    The issue is you have syntax errors in your code. In Website > Website Tools > Code Injection > HEADER remove the following.

    <!DOCTYPE html>

    There should be only one of these on a page and Squarespace already adds that for you. This doesn't manifest the issue you are seeing but you don't want this error to bite you later.

    You need to reinstall my Fluid Engine Page Section Upgrade Button Hide code as it is incomplete. Incomplete code is a syntax error and will cause issues.

  4. As a developer I have found for most of my clients I need full access to everything as most of my clients are not Squarespace experts and need help with many of the features across their sites.

    I need to be able to see what they are seeing because I can't be sure they are explaining accurately what is going on when they have issues because they don't have the experience.

    As far as security, in my observation, SS is not showing sensitive information directly in the editor, like full credits card numbers.

    So my question would be what specifically would be excluded in this Developer Privileges level?

    I think that the real issue here is that the privileges model SS uses just isn't adequate to the task. I'm thinking that SS needs something more like a UN*X permissions model. Obviously the concept would need to be adapted because we aren't dealing with file systems but access to records in databases.

    SS could set up some default groups and users that allow much the same behaviour we get now. But advanced users could set up their own to meet their needs.

    I doubt this will ever happen. Such a system would be much more flexible and once set up, SS could step back and let their users decide what access is needed for contributors.

  5. 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.

  6. 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.

  7. 1 hour ago, Dovely2023 said:

    I'm actually trying to remove the indent on the second lines that wrap below the bullets. I basically want to remove the white space highlighted above with the purple arrows.

    The issue is the following ruleset.

    #our-design-process [data-rte-list] li>*:first-child::before {
      background-image: url(https://images.squarespace-cdn.com/content/v1/6020418f11ba307a8d020eb8/15dad810-994a-4ab5-b8d1-5e61f1431318/MDG_CustomBullets_Green.png?format=1000w);
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      content: '';
      height: 18px;
      min-width: 0;
      vertical-align: middle;
      width: 25px
    }

    Remove the ruleset, make a copy somewhere, and try the following.

    #our-design-process ul[ data-rte-list ] li > *:first-child::before {
    
      background-image : url( 'https://images.squarespace-cdn.com/content/v1/6020418f11ba307a8d020eb8/15dad810-994a-4ab5-b8d1-5e61f1431318/MDG_CustomBullets_Green.png' );
      background-repeat : no-repeat;
      background-size : contain;
      content : '';
      height : 18px;
      margin-left : -30px;
      min-width : 30px;
      vertical-align : middle;
      width : 0px;
      
      }

    Let us know how it goes.

  8. 30 minutes ago, DaveJonesDesign said:

    Any help on this would be much appreciated!

    The reason it is not getting indexed is because the page is telling the search crawlers to not index the page.

    ScreenShot2024-03-06at1_18_21PM.png.e88703cac5a5c282270950f588719c1f.png

    I would check Blog Settings > Advanced > Page Header Code Injection for the blog page to see if the meta tag has been added there. Please see per-page code injection.

    If you find <meta name="ROBOTS" content="NOINDEX"> remove it.

    Let us know how it goes.

  9. 12 minutes ago, joshewing said:

    Except for About - I changed to Contact, but it still displays as "About 1"

    In Page Settings (gear icon) click on SEO. Is the SEO TITLE set? If so, remove or change depending on your need.

    Let us know how it goes.

  10. I checked a couple of cached versions of pages on Bing and didn't see any identifying information. Also the domain was registered on a domain registrar that provides privacy to the domain owner.

    The three main ways I know of getting the info are domain registrar (less likely these days than in the past), archive.org, and search engine caches.

    You might try searching the social networks to see if accounts were created for the website in those places.

  11. 3 hours ago, Sadie said:

    I just want the grid portfolio page (my projects page) rounded. 

    It appears you are not using my code. If you use my code and set the settings correctly you should be able to get the effect you want.

  12. 1 minute ago, Sadie said:

    I am using a hover overlay, which does not round with the code. So, when I hover over the image the overlay is still sharp. Any suggestions?

    I suspect this is because no one has asked for the overlay to be rounded so I haven't attempted to do that.

    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.

  13. 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.

×
×
  • 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.