Jump to content

paul2009

Circle Community Leaders
  • Posts

    21,674
  • Joined

  • Last visited

  • Days Won

    586

Everything posted by paul2009

  1. The slider is just a guide. You can usually type in any size by clicking on the numbers beside the slider. If that doesn’t work for you, let me know.
  2. This is a 'bug' in the default configuration of the Foster template. Squarespace have set MOBILE: CART to Position: Hide in Site Styles, but you can change it so that it appears in the header.
  3. If you are seeing pounds and ounces instead of Kilograms, please check the Measurement Standard in Settings > Language & Region. Weights that are smaller than a Kilogram should be entered as a fraction of a Kilogram. For example, a 10g item should be entered as 0.01Kg. For more information see Language and Region Settings. Did this help? Please give feedback by clicking an icon below ⬇️
  4. There's already a built-in feature to show links on Event Pages that allow you to add the event using Google Calendar or iCal. You can usually enable this in Site Styles using the tweak Show Export Links. For more information see Styling the Events Page.
  5. Yes @JuM but you cannot change payment methods on Squarespace Commerce with developer mode or code. Squarespace is a website builder not a hosting platform so you do not have access to the backend code like you would on WordPress or Drupal. The only current workaround is to embed an alternative commerce platform within Squarespace, and so I wrote an article about embedding Shopify Lite to take payments with Klarna. As @Bartosz_106commented, this isn't a perfect solution, but until Squarespace add Klarna to the platform, it is one of the only options available today for someone in invested in Squarespace who needs to accept payments this way.
  6. Squarespace isn’t a suitable platform for this requirement. You’ll need to embed a completely different payment method to be able to do this, whereas some other platforms allow variable payments.
  7. A brief word of caution. The code above will only ‘hide’ these items, not remove them from public view. Searches will still reveal them. This may not be an issue for you, but I thought it should be mentioned.
  8. Update February 2021: Squarespace added Afterpay as an option in the US, Australia and New Zealand. PayPal Pay-in-3 is available in the UK. Update March 2024: Squarespace added Klarna to Squarespace Payments. This is now available to sellers in the US where Squarespace Payments is available. It isn't possible for anyone - including professional developers - to integrate a new payment processor or payment method into the Squarespace ecommerce system. This aspect is under Squarespace control. To explain, Squarespace is slightly different to other web hosting platforms because it is "serverless". This makes it much easier for you to build a website or an online store with technical knowledge and it ensures that your site will keep running safely and securely because there's a team at Squarespace who take of all the technical infrastructure for you! For them to do this whilst keeping payments secure and compliant, they lockdown the checkout and payment systems and don't allow you to change them. It will take time for Squarespace to integrate new payment methods and I think it's highly unlikely that Squarespace will integrate Klarna any time soon. If you really need this particular service then the only workaround is to use an alternative e-commerce checkout on your Squarespace site (such as Shopify Buy Buttons), or move to another platform that supports it (like Shopify). If it helps, I wrote about how to do this here: How to add Afterpay or Klarna to Squarespace.
  9. It isn't possible to increase the price limit on Squarespace products. This is fixed and will not be increased. If you want to create an online showroom of items that are priced above the Squarespace limit, like properties or yachts then you'll need to use a workaround. The best option will depend on your individual circumstances, the range of prices that you want to display (lowest to highest), and the way that you want to display them. For example, you could enter all the prices (on the backend) in a lower denomination (divide by 10, 100 or 1000) and then use a small snippet of code to multiply it by the same factor when displaying them to visitors. If you added $1800 and used code to multiply it by 1000, it would appear as $1,800,000. With some further code, you could display this in a customer friendly way like $1.8M. Another option may be to create tags that represent the prices and then use some code to convert the tags to prices. For example, a tag of Price-1800000 could be read by code and converted into a human readable price. As mentioned above, a simpler workaround may be to hide the prices with some CSS and then type the price at the beginning of the product description, although this does prevent prices appearing on the Product List Page (PLP). /* Hide prices on products */ .product-price { display:none!important; } Did this help? Please give feedback by clicking an icon below ⬇️
  10. Squarespace serve static files via multiple geographically distributed content delivery networks (CDNs) to ensure the data is served from the datacenter closest to the visitor’s location. The url is fixed as static1.squarespace.com followed by a string of random characters and the file name. You cannot change this. However, if you want to share a direct link to the PDF you could share it using https://www.bakdshop.com/s/BakdHolidays_20.pdf instead (domain name + /s/ + filename).
  11. Sure. Instead of 'bottom' use 'top' and set a percentage that works on all devices.
  12. You may want to retain the play button but move it above the titles so that visitors realise a video will play. To do this, add the following to Design > Custom CSS: .collection-type-gallery .video-play-icon { bottom: 33%; } If you prefer to remove the icon, use this instead: .collection-type-gallery .video-play-icon { display: none; }
  13. The site is private. You'll need to set a site password and tell us what it is, so that we can view it.
  14. As you haven't provided a link to the site, it's difficult to tell you the best solution because it will depend on the version and template you are using. Different templates have different capabilities. That said, there's an article here that describes how to manually add anchor links (links that take you to sections of the same page): Adding Index Page anchor links
  15. Been there too @Brandon! The Community team have now imported the old Answers post 👍
  16. If you drag an Index to the FOOTER NAVIGATION area (within the Pages panel) on the Brine-family of templates, only the Pages within the Index will appear as navigation links, instead of the Index itself. The workaround is click the plus sign (+) beside FOOTER NAVIGATION in the Pages panel and then choose Link. When the link editor opens, click the gear icon and then search for the name of the Index. When you add the lndex in this way, the Index will appear as a nav item instead of the pages within it.
  17. You can do it with the code that @brandon provided here: http://squarespace.cloud.answerhub.com/questions/152145/can-someone-help-me-change-coding-to-get-rid-of-de.html
  18. You are using Squarespace 7.1, the new version of Squarespace that they are currently testing. All sites in version 7.1 share the same template so that option isn't available. For more information see: https://support.squarespace.com/hc/en-us/articles/360028367571-Version-7-1-style-and-design-options#toc-templates-in-version-7-1
  19. Something like this: .product-block .productDetails .product-title { font-size: 2em; line-height: 1.3em; font-weight: 600; }
  20. I see you are using a Summary Block to display the products. Squarespace haven't added 'Add to Cart' buttons to Product Summary Blocks and it no longer appears that they will. There are therefore three options: Use can use some code to add a cart button to each product on a Product List Page. I provided some code here to allow you to do this. Use code to add the button to the Summary Items by harnessing the quick view data. Use a series of Product Blocks instead. This doesn't scale but is manageable for a few products. There's a checkbox on these blocks that allows you to add the button. Did this help? Please give feedback by clicking an icon below ⬇️
  21. If you are trying to engage your audience, I encourage you to look at alternative design options in preference to anything that blinks or flashes. If not used properly, you could alienate the very people you want to attract. It can also be a problem for users with disabilities and is frowned upon by several accessibility standards.
  22. See this Zap: If you configure your form to submit the details to a Google Sheet, you can then use this Zap to send an email to your inbox, where the "Name" and "Reply-to" fields (but not the email address) as well as the "Subject" of the email can represent the user's name, email address and the subject they entered when the completed the form.
  23. Squarespace can’t do this but it may be possible to do this with an external email account and some automation like Zapier. It will depend on your requirements so you’ll need to be a little more specific. The first and most important thing to mention is that you cannot change the ‘from’ address for each email, for example to match the sender’s own email address. This is known as spoofing and it isn’t permitted.
  24. Hi Michele There are a few issues that you need to correct. It's not working on desktop either, but if you have the fonts installed on YOUR desktop, it may appear to be working for you 🙂. Firstly, a rule of thumb is to not add '!important' unless absolutely necessary. You should remove it from line 4 (font-face) as it cannot be added here. Secondly, whatever you name the font in line 4 ('Playlist-Script') you MUST use the same name throughout, with the quotes. Take a look through the rest of your CSS and replace Playlist Script with 'Playlist-Script'. It should then work. Let me know how you get on. -Paul
×
×
  • 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.