Jump to content

jdillagodzilla

Circle Member
  • Posts

    85
  • Joined

  • Last visited

Reputation Activity

  1. Like
    jdillagodzilla got a reaction from Beyondspace in Where 'Use Existing Gallery' in 7.1?   
    Wow, super annoying that you can't add a preexisting gallery and the + search option only lets you select one image at a time.
    Posting so I can follow the thread. 
  2. Like
    jdillagodzilla got a reaction from caseyaltman in Where 'Use Existing Gallery' in 7.1?   
    Wow, super annoying that you can't add a preexisting gallery and the + search option only lets you select one image at a time.
    Posting so I can follow the thread. 
  3. Like
    jdillagodzilla got a reaction from juliaprather in Where 'Use Existing Gallery' in 7.1?   
    Wow, super annoying that you can't add a preexisting gallery and the + search option only lets you select one image at a time.
    Posting so I can follow the thread. 
  4. Like
    jdillagodzilla reacted to SShepherd in Setting timezones for individual events   
    Updated code for Squarespace 7.1:
    .event-time-localized:after { content: "Timezone: PDT"; padding-left: 4px; font-size: 12px; font-weight: bold; }  

  5. Like
    jdillagodzilla got a reaction from emalu in Where 'Use Existing Gallery' in 7.1?   
    Wow, super annoying that you can't add a preexisting gallery and the + search option only lets you select one image at a time.
    Posting so I can follow the thread. 
  6. Thanks
    jdillagodzilla got a reaction from creedon in 7.1 Heading Cart: Replace SVG with Text   
    @creedon worked like a charm, ty!
  7. Like
    jdillagodzilla got a reaction from AliM in Member Area Footer   
    Site URL: https://www.shopuhhuh.com/wholesale
    Hi there – I would like to add a border to the top of my footer only on the member access page. If that's not possible, how do I hide the footer only on the login page? 

  8. Thanks
    jdillagodzilla got a reaction from creedon in Change Aspect Ratio for One Store, But Not Others   
    @creedon worked perfectly! Wasn't sure exactly if I needed to change the page header  code based on the above directions. I changed to 4:3 and got the result I was looking for. thank you 🙂
  9. Like
    jdillagodzilla reacted to tuanphan in Move price next to product title   
    Add to Last Line in Code Injection > Footer
    <script> $(document).ready(function() { $('.ProductItem-product-price span.sqs-money-native').appendTo('h1.ProductItem-details-title'); }); </script> <style> h1.ProductItem-details-title .sqs-money-native { float: right; } </style>
  10. Like
    jdillagodzilla got a reaction from creedon in Quick View Lightbox Add to Cart Button + Quantity Not Working   
    Thanks @creedon
    Given the issues, I'm going to remove the quick view but I'll share a vid on this thread of me walking through the problem with some things I've tried incase anyone comes back to it.
    Me showing the issue: https://www.loom.com/share/4b2cfb58c92a4c6ba59091fbd48776bd
    A friend asking a few follow ups: https://share.getcloudapp.com/kpuDBBrx
    Me following up on the follow ups: https://www.loom.com/share/ce5a04c065cb4dbba1ef94f63ef21e0c
    *thank you for coming to my ted talk*
  11. Like
  12. Thanks
    jdillagodzilla reacted to creedon in Quick View Lightbox Add to Cart Button + Quantity Not Working   
    See the tip about issues with Quick View text formatting. SS basically says hey we know your text is screwed up. So instead of us making it work, change your text. Nice SS.
    Here is another thing I observed. Quick View does not render all the product detail. It tries to ellipses the description. Apparently they just take so many characters. And apparently will cut at inappropriate places causing spurious results.
    I was able to reproduce the fouled up DOM on my test site using the description from the product detail page you showed. It looks like various tags aren't being closed properly and so the DOM goes wild.
    I don't think there is any help we can provide in the way of a fix. This is a job for SS.
    You could turn off the excerpt or write enough plain text at the beginning of the description to work around the issue.
    Wait wait! Scratch just adding some text to pad it out. SS couldn't even handle ellipses on the following so the issue seems more fundamental.
    1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890 🤯
    Ah but it can handle some lorem ipsum.

  13. Love
    jdillagodzilla got a reaction from Wolfsilon in Hover effect on summary carousel block   
    @Wolfsilon the $19 plugin did the trick. Purchase + installed in less than 10min ✌️
  14. Like
    jdillagodzilla reacted to paul2009 in Product Scarcity Styling on Cart Page   
    Unfortunately, Squarespace recently changed all the cart selectors, giving them almost 'random' classes that make no sense.
    For the time being (further changes to the cart are planned!), the limited availability label has the class "_2-zpFeg7a", so you can style it by adding this to Design > Custom CSS:
    [Updated: class changed from _2-zpFeg7a to cart-row-qty-alert]
    .cart-row-qty-alert {     color: black!important;     font-size: 12px!important; } This won't take effect immediately. You'll need to save the changes and then refresh the page (Cmd-R or F5) before you'll see the changes.
    Did this help? Please give feedback by clicking an icon below  ⬇️
  15. Like
    jdillagodzilla reacted to paul2009 in Add-on items on cart page (before checkout)   
    It's an option, but I don't recommend it because even if you hide it from users on other pages, the content that you've added to the footer will be loaded with every page, affecting page loading performance.
  16. Like
    jdillagodzilla got a reaction from creedon in 7.1 empty product category   
    Worked like a charm, and TYso much for adding the css id selector – next level 👏
  17. Love
    jdillagodzilla reacted to creedon in 7.1 empty product category   
    Please see Store Product List Empty Text Add.
    I've supplied a CSS id selector #twc-empty-products-pages-text if you want to style the text.
    Let us know how it goes.
  18. Like
    jdillagodzilla reacted to WillMyers in Styling Footer on Search Page   
    Hey! What I'd recommend is a bit of Javacsript to see if a user is on the search page, and if they are, then add a class to the body. Then you can add some Custom CSS that could hide the footer, or style it however you'd like!
    Place this in your site header code injection area.
    <script> if (window.location.pathname == "/search") { document.querySelector('body').classList.add('search-page'); } </script> Custom CSS:
    .search-page #footer-sections{ display:none; } Hope that helps!
  19. Like
    jdillagodzilla got a reaction from tuanphan in 7.1 Product Grid: Show Title / Price on Hover   
    Thank you @tuanphan
    I ended up going with the following code as the above didn't give me quite the effect I was goin for.
    /* Hide Price */ .products.collection-content-wrapper .grid-main-meta .grid-prices { visibility:hidden!important; } /* Reveal Price */ .products.collection-content-wrapper .grid-item:hover .grid-main-meta { .grid-prices { visibility:visible!important; } }  
×
×
  • 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.