Jump to content

paul2009

Circle Community Leaders
  • Posts

    21,617
  • Joined

  • Last visited

  • Days Won

    584

Everything posted by paul2009

  1. Sure @Ashley77. For the styling, try adding this to Design > Custom CSS: .ProductItem[data-item-id="643300aa254c0f6e822ced1d"] a[href^="https://www.amazon.com/dp"] { border-width: 2px; border-style: solid; font-family: proxima-nova; font-weight: 600; font-style: normal; font-size: 10px; letter-spacing: .2em; padding: 25px 46px; text-transform: uppercase; } .ProductItem[data-item-id="643300aa254c0f6e822ced1d"] .ProductItem-details { .sqs-add-to-cart-button-wrapper, .product-mark.sold-out, .product-quantity-input { display:none; } } The first section should style the Amazon link as a button. The second section should hide the Add to Cart button, the 'Sold Out' label (if shown) and the Quantity selector (if shown). Here's an example with and without the CSS above: Let me know how you get on 🙂.
  2. As explained in the guide Importing and exporting content, this tool is not designed to export content from one Squarespace site and import it into another Squarespace site. You may want to explore other options. Did this help? Please give feedback by clicking an icon below ⬇️
  3. As explained above, Acuity Scheduling (Squarespace Scheduling) cannot take bookings that span midnight.
  4. Please contact Squarespace Customer Care. If you experience any difficulties contacting them, please read how to contact Squarespace.
  5. You can add a Custom Product Form to a product to allow you to capture custom information. If this isn't suitable, please provide us with more details, including a link to the form and the product.
  6. Whenever you post a question, please include a working link to your site. This allows other users to view your site. If required, How to Post a Forum Question provides guidance on how to provide a link.
  7. After you've verified your email address by entering the numeric code, you'll need to verify the domain. To so this, go to Marketing > Email Campaigns > Email Campaign Settings > Sender Details. Here you'll see the DNS records that you need to add to your DNS host. You'll need to add a CNAME and a TXT record, as shown below: A 'COPY' link will appear when you hover over these records to make it easy to copy and paste the required information. When you have created the two records you can click 'AUTHENTICATE DOMAIN' to confirm they are correct. If they are, you'll see a success message. For more detailed guidance, see the support article entitled Verifying third-party domains for Email Campaigns. As an aside, if you read any outdated guidance, it may have referred to an SPF record, but this is no longer required for Email Campaigns. I hope this helps. Did this help? Please give feedback by clicking an icon below ⬇️
  8. Great! Next step, can you edit the product description by adding a couple of blank lines and then adding the text "Buy eBook from Amazon" (or your preferred caption)? Please hyperlink this text (see below) so that it links to your purchase link on Amazon (I don't know the URL).
  9. This isn't currently possible with Squarespace Forms. You'll need to use a third party form like Jotform that has 'widgets' that allow you to collect legally binding e-signatures and approvals. Did this help? Please give feedback by clicking an icon below ⬇️
  10. The first step will be to add this eBook as a 'product' on your store page. By adding it as a product - with the title, image and the price - it will appear on the product list page, alongside the other physical products. When users click on this product, they'll be sent to the product detail page (PDP). Once you've added this product, we can suggest some code to customise the page by removing the Add to Cart button and replacing it with a 'Buy eBook on Amazon' link. Did this help? Please give feedback by clicking an icon below ⬇️
  11. This is an acknowledged Squarespace bug that happens when the site animation is set to “flex”. For now, you can change the animation setting (in Design > Site Styles > Animation) or, as a temporary workaround (until Squarespace fix this) you can add the following to Design > Custom CSS: /* Bugfix for Sqsp bug that prevents user clicking lightbox form close button April 2023 */ .sqs-modal-lightbox-content .lightbox-inner .lightbox-content .lightbox-close { z-index:100000000; } Let me know how you get on. Did this help? Please give feedback by clicking an icon below ⬇️
  12. You may want to take a look at the Squarespace guide, Sample messages for your privacy policy. Did this help? Please give feedback by clicking an icon below ⬇️
  13. The CSS above is a great workaround for desktop users but, as it is setting a fixed size (height and width) for the set of thumbnails, it will not work reliably on other devices, including some mobiles and tablets that have different screen sizes. For example, it may show 3 thumbnails on smaller mobiles, or 2 thumbnails on a tablet (see the tests below): . If you would like all four thumbnails to be shown on all devices, it would be better to hide all except the first four thumbnails. This should be more reliable on all devices, regardless of size or layout: /* Show upto 4 product thumbnails */ .ProductItem-gallery-thumbnails-item { display:none; } .ProductItem-gallery-thumbnails-item:nth-of-type(1), .ProductItem-gallery-thumbnails-item:nth-of-type(2),.ProductItem-gallery-thumbnails-item:nth-of-type(3),.ProductItem-gallery-thumbnails-item:nth-of-type(4), { display:inline-block; } Did this help? Please give feedback by clicking an icon below ⬇️
  14. Can I check that I fully understand your requirements? Do you want the thumbnails that are relevant to the selected variant to be shown, or do you only want the first four thumbnails to be shown on products? If it's just the first four images, this can be achieved with some CSS instead.
  15. @HannahReyenne No problem. Can you help me to understand your requirements a little more? I'm not sure if you're aware but Quick View buttons only appear on hover on desktops/laptops. They aren't available on mobiles or tablets, which can mean than over half your site visitors don't see them (you'd need to check your analytics to know the percentage of your own visitors on mobile). Are you wanting the cart button to appear in the same way (on hover, on desktop only) or are you looking for something that is always visible, like the example below, or with the button below the price. If you have a mockup of what you want to see, this would be helpful (I was initially confused by the screenshot in your original post because it looked nothing like your site 😀).
  16. This new feature is a great improvement and I’ve added an update to my original post to include this. However, it will not help in the original poster’s situation, where the customer mistyped their email address as .con instead of .com. If you are in the same situation @Sarahbethl, your customer won’t be able to verify their email address and so won’t be able to login to edit their details.
  17. It is Forte on Squarespace 7.0. Did this help? Please give feedback by clicking an icon below ⬇️
  18. At this time, there isn't a built in feature to allow you to move a blog from one Squarespace site to another. This means that if you don't want to create the posts again manually, you'll need to either purchase the Tools PRO Chrome extension or book an expert to migrate the blog for you.
  19. Correct. Squarespace have taken a decision not to allow us to collect additional data or use custom fields. Can you share details of the additional fields you want to use and the purpose of collecting this data? It may help the community to suggest alternatives or workarounds.
  20. The comment below should be below the opening script tag, not above it: /*setup language switcher*/ Did this help? Please give feedback by clicking an icon below ⬇️
  21. This is not possible on Squarespace at this time.
  22. No. Custom code cannot be added to the checkout page.
  23. When you are sharing a link, you can choose to use a version that includes your domain name, but link will always have "/s" in it. In this example, the link to your PDF is https://www.ashleyelizabethling.com/s/Ash-Ling-CV-2023.pdf. Of course, this will redirect to the CDN link that starts with “https://static1.squarespace.com”. There isn’t anything you can do about this. Did this help? Please give feedback by clicking an icon below ⬇️
  24. As your website isn't public yet, we need you to set a site-wide password and share it with us.
  25. As I mentioned in an earlier post, the new reCAPTCHA is not intrusive, so the only indication that it is working is a small badge that appears in the bottom corner of the screen (not the form) when a visitor interacts with the form block. However, if reCAPTCHAs are not working on your site, you may want to contact Squarespace Customer Care for assistance.
×
×
  • 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.