Jump to content

creedon

Circle Member
  • Posts

    9,540
  • Joined

  • Last visited

  • Days Won

    79

Posts posted by creedon

  1. The following bit confuses the markdown processor.

    <span style="color : red;">
      [Learn more][1]
    </span>
    

    So you would end up having to do the following.

    <a href="/texas-main-street-cities" style="color : red;">
      Learn more
    </a>

    If the learn more is all you are trying to use Markdown for, then in this case, you're better off just using a code block to save the unnecessary markdown processing.

  2. Would it work to sell by packs but provide an informational text that shows the total square meters?

    So for example if a customer selects quantity 5 (five packs) then there would be a text blub somewhere like...

    25 square meters total

    Code wise that would be relatively easy, I think, to implement. I do not have any such code.

    Unfortunately SS is not designed to deal with anything like square meters and the like so anything you end up doing is a bit of a hack.

  3. 1 hour ago, Wanderlust123 said:

    I don't know where to post my question, so maybe you can help me or steer me to another post.

    I suggest starting a new topic or find one through the forum search engine.

    For a new topic go to < https://forum.squarespace.com/ >. Click on Start A Discussion button. Select the Customize with code forum as that is probably the closest for your question.

    Mixing different topics in one thread makes it more difficult for everyone to track what is being discussed where.

  4. Please post the URL for a page on your site where we can see your issue.

    If your site is not public please set up a site-wide password, if 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 documentation at the link provided to understand how it works.

    Please read the documentation at the link provided on how to share a link to your site to understand how it works. A link to the backend of the your site won’t work for us, i.e. a url that contains /config/.

    We can then take a look at your issue.

  5. On 10/24/2022 at 4:02 PM, Melbaspence said:

    One extra thing I'm looking to add to design. For all the buttons linking out, I want to add the external link icon (attached) after the copy "Buy it now". Can you advise how to do that? 

    I have updated my cited code in my October 30, 2020 post adding a class to the atc button so that one can achieve effects that alter the appearance of the atc button based on it being a redirect.

    426938564_ScreenShot2022-11-02at1_48_36PM.png.b4992a4c8cc427f5e3a02626cff317e1.png

    Then add something like the following to Store Settings > Advanced > Page Header Code Injection for the store page. Please see per-page code injection.

    <style>
    
      .twc-spdatcbur .sqs-add-to-cart-button-inner {
      
        align-items : center;
        display : flex;
        gap : 1em;
        justify-content : center;
        
        }
        
      .twc-spdatcbur .sqs-add-to-cart-button-inner::after {
      
        --size : 25px;
        
        content : '';
        background-image : url( [enter image url here replacing aquare brackets] );
        background-repeat : no-repeat;
        background-size : contain;
        display : inline-block;
        height : var( --size );
        width : var( --size );
        
        }
        
      </style>

    I don't have an solution for alignment issues.

    Let us know how it goes.

  6. On 9/22/2022 at 6:04 AM, MistyPhotos said:

    Is there any way to keep the two columns to only one folder?

     

    .Header-inner--top .Header-nav-item:first-child .Header-nav-folder {
    
      column-gap : 1rem;
      display : grid;
      grid-auto-flow : column;
      grid-template-columns : repeat( 2, 1fr );
      grid-template-rows : repeat( 15, 1fr );
      
      }

    Let us know how it goes.

  7. Be leery! Transferring email can go very bad very quickly. Up to and including losing your current emails.

    Unless you've had some experience with the process I suggest hiring a consultant. There are many subtle issues that are involved when transferring email. Even a seasoned consultant can run into issues.

    In general is it of course possible to transfer your domain name and email hosting over to SS. To be clear, just transferring your domain registration does not automatically carry your email hosting over with it, nor any other services you may have attached to your domain name.

    So to minimize lost emails or downtime you'll want to have your new email hosting set up as much as possible ahead of time so that when the domain is transferred you update the DNS records.

    SS has a partnership with Google Workspace for email services. Before you go buying anything you'll want to plan and set up ahead of time to make sure you are buying the right pieces. You don't have to use GW. There are other email hosting services out there. I don't have any recommendations. But the last time I went looking it was hard to find an email hosting provider that didn't also want you to host your domain name with them. That is important if you want to transfer your domain to SS.

    I use GW for my personal and business email. It works well but GW is a fairly complex tool to use. I don't fault G for that as this is a complex area and they do a pretty good job of making it as painless as possible.

    My main concern for projects like this is email preservation. Most folks who have email have stuff they want to keep.

    If you're on Apple Mail or Outlook, an app, adding a new account is pretty easy. You basically leave the current account as is. Set up a new account that points to your new email provider. On Apple Mail it is also pretty easy to slowly and carefully move emails out of the old account into the new account, basically unifying everything under the new account for convenience. Not sure if Outlook can do that but I'd be surprised if not.

    Again this is a very general overview of a fairly complex issue.

  8. 6 hours ago, nicolettely said:

    Does this code compete with the other code of your that I used on thi store?

    These two pieces of code, I think, should be able to work together. I've not tested them together.

    You've used category URL slugs instead of category names.

              'found-objects' : 'description',
              'contemporary' : 'description',
              'vintage-craft' : 'description',
              'fine-art' : 'description',
              'letterpress' : 'description',
              'books' : 'description',
    

    From the code...

                for each category copy value from Store Settings >
                Categories > [category name] > Edit Category > NAME field for the
                store page. you only need exactly what can be selected from the
                field. if you want to add a description to the Store page ( i.e.
                grid/listing ) leave the category empty, i.e. ''

    Let us know how it goes.

  9. 18 hours ago, ecaudle said:

    Do you happen to know how I can make the post link change color when you hover over the image?

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

    <style>
    
      .blog-basic-grid .blog-basic-grid--container div:first-child:hover ~ .blog-basic-grid--text .blog-title {
      
        color : red;
        
        }
        
      </style>

    Let us know how it goes.

  10. While I suspect it is technically possible via Google's API to do what you want, I suspect SS choose not to add that level of complexity to the form Storage options.

    I don't have a solution but it may be possible to write some scripts Google side to take the lines that are coming into the top level document and move them into another spreadsheet that is in a folder.

    You of course end up having two forms but if your goal is to use folders for organizational purposes, then this potential technique would get you there.

  11. 1 hour ago, nicolettely said:

    I have installed it, but not sure if I did so correctly. And not sure where to go from here.

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

    <style>
    
      body[data-store-category] #page .page-section:last-child {
      
        display : none;
        
        }
        
      </style>

    Let us know how it goes.

  12. Please post the URL for a page on your site where we can see your issue.

    If your site is not public please set up a site-wide password, if 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 documentation at the link provided to understand how it works.

    Please read the documentation at the link provided on how to share a link to your site to understand how it works. A link to the backend of the your site won’t work for us, i.e. a url that contains /config/.

    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.