Jump to content

Webswool

Circle Member
  • Posts

    96
  • Joined

  • Last visited

Everything posted by Webswool

  1. The portfolio I'd like to target is this: https://marguerite-elliot.squarespace.com/the-international-roots-project I need to hide the header/footer from all project pages inside that portfolio if possible! Client only has a personal plan so CSS only...
  2. Did you ever have any success with this? Trying to achieve the same thing with CSS
  3. @tuanphan I couldn't get this to work - has anything shifted with recent updates? I'm looking to hide the header and footer from a portfolio and all the pages within it.
  4. Site URL: https://www.chevychaseart.org/ Hello! I'm working with an artists organisation and they're opening up submissions for an exhibition. They want artists to be able to upload 5 images, and have those images be saved to a folder for that specific artist - e.g. Sammi uploads her 5 artworks and they are automatically saved into a folder together (Ideally named "Sammi"), Jenny uploads her 5 artworks and they are saved to a "Jenny" folder... etc. I'd previous been using a Google Form and collated all the artworks in one folder, but we'd asked the artists to name their files appropriate (e.g. Sammi1.jpg, Sammi2.jpg etc...) but this is seeming to be too much work for the organisation to deal with... Does anyone know of any software/plugin (paid or otherwise) that would allow us to set up essentially, personalised upload forms per applicant?! Any thoughts would be helpful as I'm out! Sx
  5. In short, no. The plugin developer gave me a temporary fix but it never truly solved the issue. Since then, my client has removed that element from their shop.
  6. Site URL: https://live-vitae.squarespace.com/about Hey peeps. Bit of a strange one... I'm embedding an interactive map on a clients website using a code block. (I'll link to where we're getting the map code from here: https://www.amcharts.com/visited_countries/#DE,NL,PT,RO,CH,GB,CA,GT,MX,US,BH,ID,SA,AE,AU) When I put the code in the code block and hit save, it is making the first slide of my summary block blank. I'll show you what I mean... I'm using the same summary block on two pages to pull through client testimonials. Exact same settings. On the Work With Me page (https://www.livevitae.com/personalised-nutrition-services )the summary block works great, but on the About Live Vitae page (https://www.livevitae.com/about-live-vitae) there is a blank slide being added to the summary block, so it looks like the content hasn't loaded. When you click the ">" it takes you to the first client testimonial. 🤯 I've double checked and there are no rogue blank client testimonial blog posts floating about... and when I remove the map code block from the section above, the summary block behaves perfectly normal. Any ideas?
  7. Thanks @tuanphan - much appreciated!! 😀
  8. Hey @tuanphan - have attached 2 screen shots showing the anchor links (or where I'm trying to put them!) in the main navigation. under 'ABOUT' - both 'Weight Loss Philosophy' and 'My Favorite Clients' are the same page (the Weightloss Philosophy page), but two different sections. There is a code block above each section at the moment... but I think I'm doing something wrong.
  9. Site URL: https://weightlosswithcoachmelanie.squarespace.com/ Hey peeps. I'm trying to use anchor links in my clients navigation to jump to a section of a page... password is: melanie the "Weight Loss Philosophy" and "Favorite Clients" are both on the same page. I've tried numerous methods and nothing seems to be working. Currently I'm using a code block on each section, with a unique id (weight loss philosophy is #approach, favorite clients is #clients) On another note, I've noticed that another clients anchor links that have been working beautifully up until now have also stopped working (About dropdown on https://livevitae.com) - is anyone else having issues? Or am I just doing something wrong?
  10. Hey Leopold @IXStudio I'd love to implement this kind of page transition effect on my client's 7.1 site - I've tried using just the CSS alone but to no avail. Any suggestions would be hugely appreciated! acg-demo.squarespace.com (password: demo)
  11. 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.
  12. Thanks so much @tuanphan - that did the trick! Much appreciated 🙂
  13. Site URL: https://marguerite-elliot.squarespace.com/ Hey folks - I'm forcing mobile navigation on all devices with this website, but the gap between the links gets really huge when viewed on desktop. I've tried targeting the line-height between the links but had no luck... the settings in the style editor are great for mobile view, but as soon as the screen size increases the links seem to grow in size, as does the space between them. Would love to tweak the spacing overall, but specifically for the smaller (sub) links Have attached a screengrab - thanks in advance! Sx
  14. @tuanphan thanks for the reply! We’ve actually gone in another direction as the default wording in the customer notifications is still too restrictive/confusing for customers
  15. Hey @tuanphan - I'd love to change as much of the text in my customer notifications to Futura PT I know we won't be able to customise everything, but anything you can suggest would be great! Thank you 🙂
  16. Yes @tuanphan both on the Plugin website and also directly on here, but no response yet...
  17. 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
  18. 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 :-)
  19. Hey Leopald - have sent a couple of DM's about my animated counter issue. Would really appreciate you taking a look if possible? 

    Tyndallsustainability.com 

  20. Hey @tuanphan - is it possible to display a unit immediately next to the animated numbers? Have tried but it always wants to sit directly underneath (the 'kgC02e') Have made a mockup to show what I mean.
×
×
  • 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.