Jump to content

Webswool

Circle Member
  • Posts

    93
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Webswool got a reaction from EarvinChong in Universal Filter not working correctly since Shop 2.0 update   
    Yes @tuanphan both on the Plugin website and also directly on here, but no response yet...
  2. Like
    Webswool got a reaction from EarvinChong in Universal Filter not working correctly since Shop 2.0 update   
    Site URL: https://jordancs.ie
    Hey all - 
    A client of mine has been using the Universal Filter and Lazy Summary plugins to filter the properties on his website. All was working beautifully but things have gone awry since the most recent shop update for 7.1. His issues are:
    1. The properties are now listing automatically in order of their geographical location, whereas the client would like to be able to move the order of the properties around to suit his needs (ie. show users properties that are still for sale before showing sold ones)
    2. Some of the properties are priced at over €1 million - they had previously got around the pricing cap on Squarespace by leaving the price blank for these products and using an additional "price" variant. This is still working for the universal filter summary blocks, but NOT for the normal summary blocks now... 
    Anyone else had any instances of the update causing issues with these plugins? My client has reached out to the developer but has been waiting for some time (several months) for a response/solution.
    Any ideas would be great!
    Sammi x 
     
  3. Thanks
    Webswool reacted to tuanphan in Blog post navigation back to blog page?   
    Use new code, I think this code is better, I can check color/position easier
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script> $(document).ready(function() { $('<a href="https://beaverhero.com" class="tuan">Back to Home</a>').insertAfter('.item-pagination[data-collection-type^="blog"]'); }); </script>  
  4. Thanks
    Webswool reacted to tuanphan in Blog post navigation back to blog page?   
    Keep above code & add this to Blog Page Header
    <style> section.item-pagination + a { display: block; background: #f7f6f3; text-align: center; font-size: 30px; color: black; } </style>  
  5. Thanks
    Webswool reacted to tuanphan in Code block content causing blank first summary block slide?   
    The Code Block code added a blank link item to Summary.
    Try adidng this to Page Header
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script> // remove first item in summary about us $(document).ready(function(){$('div#block-yui_3_17_2_1_1619079445519_3109 .summary-item-list>a:first-child').remove();}); </script>  
  6. Like
    Webswool reacted to tuanphan in Anchor link issue 7.1   
    Remove last / from anchor links
    to
     
  7. Like
    Webswool reacted to GlynMusica in Core Web Vitals   
    You can get a SS website to deliver on all the CoreWebVitals but it needs some really advanced code optimization. We have a 943ms load-time and a cumulative layout shift of 0.05 now, using advanced code injection and pre-connect and preload headers, combined with serving things like Jquery through non-google CDNs has shown that we can tick nearly all the boxes on this latest hoop jumper.

    Here's a helper:
    https://web.dev/preconnect-and-dns-prefetch/
    I am actually pretty sure that SS has been doing some stuff already because there were a lot of Unusued Javascripts that were loading in my theme by default but some of these no longer seem to be loading - still quite  few that are though - at least on homepage. I would not expect SquareSpace to do an announcement on this, because it would be like saying "hi everyone, we've optimised our code delivery and fixed the fact that we were loading a whole lot of unnecessary javascript libraries that our programmers didn't catch" I mean what company would issue that press-release.
    Hope that helps.
     

  8. Like
    Webswool reacted to Tiny_Coast in Is the fold still a thing?   
    For me personally I always try to capture what exactly myself or the client is offering above the fold. Perhaps if you are a massive brand or very recognized with signature creative, this is less of an issue for you. 
    If you plan on using tools like Google Ads to drive traffic,  you may want to emphasize communicating your service or product above the fold.  You don't want to leave potential clients confused about what you do or offer, and waste ad spend. 

    A  brand with recognizable creative, however, may have the advantage of someone already knowing what they offer and find themselves less concerned with confusing potential customers.
  9. Like
    Webswool got a reaction from aadmint2021 in Counter widget/add on   
    Hey @aadmint2021
    I used the following code in my Footer Injection:
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.0/jquery.min.js"></script> <script> var eventFired = false, objectPositionTop = $('section[data-section-id="5fbc069d82d4af71faa5c888"]').offset().top; $(window).on('scroll', function() { var currentPosition = $(document).scrollTop(); if (currentPosition > objectPositionTop && eventFired === false) { eventFired = true; // Animate the element's value from 0% to 110%: jQuery({someValue: 0}).animate({someValue: 670500}, { duration: 10000, easing:'swing', // can be anything step: function() { // called on every step // Update the element's text with rounded-up value: $('section[data-section-id="5f4cc944f0feca27412aafdc"] h1').text(Math.ceil(this.someValue) + ' ' + ' kg CO2e'); } }); } }); </script> Switch out the section ID for the section you're working with, and you should be able to switch h1 out for whatever size of text you're using and the 'kg CO2e' out for whatever units you need.
    This code doesn't require a code block on the actual section you're using it on - it'll automatically make the h1 (or whatever size you change it to) behave like an counter
    Hope that makes sense? If not, just holla.
  10. Like
    Webswool reacted to tuanphan in Reduce spacing between navigation links on forced mobile menu   
    Hi. Do you want to align left "Process" on mobile?

  11. Thanks
    Webswool reacted to tuanphan in Reduce spacing between navigation links on forced mobile menu   
    Add to Design > Custom CSS
    /* desktop menu spacing */ @media screen and (min-width:768px) { .container.header-menu-nav-item a { margin-top: 10px; margin-bottom: 10px; } }  
  12. Thanks
    Webswool reacted to Beyondspace in Split Sticky Sections   
    The sticky css requires the container overflow: visible, I saw you had a overflow-x: hidden in parent, therefore not working, try to replace the code provided with this snippet
    @media only screen and (min-width: 768px) { #page { overflow-x: visible; } section[data-section-id="5fe8e0079151d82f6a094c5d"] .content > .sqs-layout > .row .col:nth-child(1){ position: sticky; top: 25px; } section[data-section-id="5fe8e0079151d82f6a094c5d"] .content > .sqs-layout > .row .col:nth-child(2){ position: sticky; top: 25px; } } the nth-child(1) and nth-child(2)  indicated that first 2 column should be sticky
  13. Like
    Webswool reacted to JackieG in How can I take orders without taking payment?   
    I too need to take customer orders without taking payment online. Our website is for a Private Members Club where we sell drinks to customers. We are being forced to have table service and would like customers to be able to place an order from their phone on the website and pay when we deliver to their table, however we cannot do this without requesting a payment option.
    Come on it must be possible to bypass this option? Not sure why I should pay for add ons or extensions for something that you have decided to hard code in to the commerce function! Not everyone takes online payments for the products or services they sell. What can I do as I need to set this up by tomorrow.
     
    Website is www.thewhitfieldclub.co.uk
  14. Like
    Webswool reacted to sonoferikdesign in Adding text to a fullscreen slideshow on Ver 7.1   
    Dear Squarespace team,
    Full-width sliding images with the ability to place the same or different text and buttons on each image is absolutely a feature we need. I get this request on literally almost every site I build. 
    I believe it is a feature that would get used  millions of times over. I love what you have built and the more I get used to 7.1, I can see it's advantages. Adding this feature would make 7.1 an absolute no-brainer. Please acknowledge our collective desire to have this implemented as soon as possible.
    Thank you for all you do!
  15. Like
    Webswool got a reaction from Beyondspace in Universal Filter not working correctly since Shop 2.0 update   
    Site URL: https://jordancs.ie
    Hey all - 
    A client of mine has been using the Universal Filter and Lazy Summary plugins to filter the properties on his website. All was working beautifully but things have gone awry since the most recent shop update for 7.1. His issues are:
    1. The properties are now listing automatically in order of their geographical location, whereas the client would like to be able to move the order of the properties around to suit his needs (ie. show users properties that are still for sale before showing sold ones)
    2. Some of the properties are priced at over €1 million - they had previously got around the pricing cap on Squarespace by leaving the price blank for these products and using an additional "price" variant. This is still working for the universal filter summary blocks, but NOT for the normal summary blocks now... 
    Anyone else had any instances of the update causing issues with these plugins? My client has reached out to the developer but has been waiting for some time (several months) for a response/solution.
    Any ideas would be great!
    Sammi x 
     
  16. Like
    Webswool got a reaction from tuanphan in Counter widget/add on   
    Yes, but I ended up using a slightly different bit of code I think? @IXStudio provided me with a bit of code that included the suffix I needed :-) 
  17. Love
    Webswool got a reaction from IXStudio in Counter widget/add on   
    Yes, but I ended up using a slightly different bit of code I think? @IXStudio provided me with a bit of code that included the suffix I needed :-) 
  18. Thanks
    Webswool reacted to tuanphan in Gallery Captions HOVER Squarespace 7.1 Please help!   
    Use this code
    I tested on SS 7.1.
    .Hi. Sorry for delay. Do you still need help?
    I don't see gallery caption/title
    https://laurawhiteuhlir.com/design
×
×
  • 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.