Jump to content

Hadley

Member
  • Posts

    2
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Hadley got a reaction from hmphotographic in Why Doesn't SS allow us delete/manage our own imported images?   
    Yes, but when you upload a lot of test images, or have different sizes or versions of an image, this becomes a huge amount of images in the search gallery. You have to wade through all of them, and can't delete them.  
  2. Like
    Hadley got a reaction from EHM in Why Doesn't SS allow us delete/manage our own imported images?   
    Yes, but when you upload a lot of test images, or have different sizes or versions of an image, this becomes a huge amount of images in the search gallery. You have to wade through all of them, and can't delete them.  
  3. Like
    Hadley got a reaction from EHM in Why Doesn't SS allow us delete/manage our own imported images?   
    This is so frustrating. I wish SS would respond to these posts. This function is desperately needed by ALL users.
    I'm considering starting another trial to redo my entire site before I launch - just to purge all the unnecessary photos I've uploaded over the last month. It feels like I'm dragging around a huge bag of rocks that I don't need. With each photo I upload I feel like I'm gaining weight, my boat is taking on water. You get it.
  4. Like
    Hadley reacted to lisanemetz in Why Doesn't SS allow us delete/manage our own imported images?   
    I can't believe this is not a feature. I accidentally uploaded a non-relevant screenshot (when selecting multiple images for a gallery) , that I absolutely don't want my clients to have in the library of their shiny new website and cannot believe that the only way of not handing over this random image (along with all the wrongly sized test images I used along the way) is to start a whole new website. How has this not been solved yet? 
  5. Like
    Hadley reacted to jennifer.sailtrim in Why Doesn't SS allow us delete/manage our own imported images?   
    Dear Squarespace Developement Team,
    For the love of all things web design - PLEASE rectify the image/media file management for BOTH designers who help SELL your service and for those who manage their own sites.  We have other options and while I have helped sell to and set up small business websites via Squarespace - this past week I was in a situation where I could have really leveraged Squarespace to a room of emerging artist learning how to build their own websites, and because image/media file management is SO crucial and can be a HUGE time suck to contend with - preventing artist from making art because they are wasting precious hours trying to organize their web presence - I DID NOT recommend Squarespace. Instead, WixPix became the recommended website host to about 1,500 students in this business course... They have a file management system on the backend of their platform... The fact this has not been addressed in my time as a customer baffles me. There are a lot of important devevlopments and very grateful for the ones made around eCommerce, but even for eCommerce image file management is CRUCIAL. It's literally dreadful when a client needs a 100+ product images updated and REQUIRE somehow removing the outdated images so they don't confuse the customer.
    This should be addressed, must be a top level feature, and if you don't have the people on your team capable of making it possible - hire someone who can.
    Thank you.
  6. Like
    Hadley reacted to Helen_Phan in How to return to the same scroll position when using browser's back button?   
    Try this code. It works for me.
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function () { if (localStorage.getItem("my_app_name_here-quote-scroll") != null) { $(window).scrollTop(localStorage.getItem("my_app_name_here-quote-scroll")); } $(window).on("scroll", function() { localStorage.setItem("my_app_name_here-quote-scroll", $(window).scrollTop()); }); }); </script>  
  7. Like
    Hadley reacted to studiolinear in Why Doesn't SS allow us delete/manage our own imported images?   
    Still following this.....with SO many people requesting this, why is this not a feature yet? This is a big deal breaker for us as well when we create a custom site and duplicate to work on for a new site, we do NOT want old imagery stored and transferred. 
    I am baffled that something like changing the tear-dropper icon to that annoying new plus symbol add feature would take priority over something like this where SO many people have voiced their frustrations. I have yet to run across threads where people were complaining about the old teardrop insert feature so why make that a priority when you have real users here voicing concerns? 
    And while we are here recommending features, why not simply offer a BLANK canvas with absolutely nothing saved so we can start from scratch instead of having to delete or replace imagery. For so many of us creating more custom sites, it is frustrating to have to do this where as a totally blank canvas would be incredible and something we have been asking for for a long time now!
  8. Like
    Hadley reacted to derricksrandomviews in Why Doesn't SS allow us delete/manage our own imported images?   
    I agree, that is why I don't use the SS search function, and use my own image organizer. 
  9. Like
    Hadley reacted to estnyboer in Why Doesn't SS allow us delete/manage our own imported images?   
    Please add image library feature - it's insane to have to scroll through every image that has ever been uploaded - designers use a lot of test images!!!!!
  10. Like
    Hadley reacted to tuanphan in [Share] Timeline Collection   
    Timeline 02.

    Demo (Password: abc)
    1. Add a Code Block > Paste this code
    <link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic' rel='stylesheet' type='text/css'> <!-- The Timeline --> <ul class="timeline"> <!-- Item 1 --> <li> <div class="direction-r"> <div class="flag-wrapper"> <span class="flag">Freelancer</span> <span class="time-wrapper"><span class="time">2013 - present</span></span> </div> <div class="desc">My current employment. Way better than the position before!</div> </div> </li> <!-- Item 2 --> <li> <div class="direction-l"> <div class="flag-wrapper"> <span class="flag">Apple Inc.</span> <span class="time-wrapper"><span class="time">2011 - 2013</span></span> </div> <div class="desc">My first employer. All the stuff I've learned and projects I've been working on.</div> </div> </li> <!-- Item 3 --> <li> <div class="direction-r"> <div class="flag-wrapper"> <span class="flag">Harvard University</span> <span class="time-wrapper"><span class="time">2008 - 2011</span></span> </div> <div class="desc">A description of all the lectures and courses I have taken and my final degree?</div> </div> </li> </ul> 2. Add to Design > Custom CSS
    .timeline { color: rgb(50,50,50); font-family: 'Open Sans', sans-serif; font-size: 112.5%; line-height: 1.6em; } /* ================ The Timeline ================ */ .timeline { position: relative; width: 660px; margin: 0 auto; margin-top: 20px; padding: 1em 0; list-style-type: none; } .timeline:before { position: absolute; left: 50%; top: 0; content: ' '; display: block; width: 6px; height: 100%; margin-left: -3px; background: rgb(80,80,80); background: -moz-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(30,87,153,1)), color-stop(100%,rgba(125,185,232,1))); background: -webkit-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%); background: -o-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%); background: -ms-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%); background: linear-gradient(to bottom, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%); z-index: 5; } .timeline li { padding: 1em 0; } .timeline li:after { content: ""; display: block; height: 0; clear: both; visibility: hidden; } .direction-l { position: relative; width: 300px; float: left; text-align: right; } .direction-r { position: relative; width: 300px; float: right; } .flag-wrapper { position: relative; display: inline-block; text-align: center; } .flag { position: relative; display: inline; background: rgb(248,248,248); padding: 6px 10px; border-radius: 5px; font-weight: 600; text-align: left; } .direction-l .flag { -webkit-box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15); -moz-box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15); box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15); } .direction-r .flag { -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15); -moz-box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15); box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15); } .direction-l .flag:before, .direction-r .flag:before { position: absolute; top: 50%; right: -40px; content: ' '; display: block; width: 12px; height: 12px; margin-top: -10px; background: #fff; border-radius: 10px; border: 4px solid rgb(255,80,80); z-index: 10; } .direction-r .flag:before { left: -40px; } .direction-l .flag:after { content: ""; position: absolute; left: 100%; top: 50%; height: 0; width: 0; margin-top: -8px; border: solid transparent; border-left-color: rgb(248,248,248); border-width: 8px; pointer-events: none; } .direction-r .flag:after { content: ""; position: absolute; right: 100%; top: 50%; height: 0; width: 0; margin-top: -8px; border: solid transparent; border-right-color: rgb(248,248,248); border-width: 8px; pointer-events: none; } .time-wrapper { display: inline; line-height: 1em; font-size: 0.66666em; color: rgb(250,80,80); vertical-align: middle; } .direction-l .time-wrapper { float: left; } .direction-r .time-wrapper { float: right; } .time { display: inline-block; padding: 4px 6px; background: rgb(248,248,248); } .desc { margin: 1em 0.75em 0 0; font-size: 0.77777em; font-style: italic; line-height: 1.5em; } .direction-r .desc { margin: 1em 0 0 0.75em; } /* ================ Timeline Media Queries ================ */ @media screen and (max-width: 660px) { .timeline { width: 100%; padding: 4em 0 1em 0; } .timeline li { padding: 2em 0; } .direction-l, .direction-r { float: none; width: 100%; text-align: center; } .flag-wrapper { text-align: center; } .flag { background: rgb(255,255,255); z-index: 15; } .direction-l .flag:before, .direction-r .flag:before { position: absolute; top: -30px; left: 50%; content: ' '; display: block; width: 12px; height: 12px; margin-left: -9px; background: #fff; border-radius: 10px; border: 4px solid rgb(255,80,80); z-index: 10; } .direction-l .flag:after, .direction-r .flag:after { content: ""; position: absolute; left: 50%; top: -8px; height: 0; width: 0; margin-left: -8px; border: solid transparent; border-bottom-color: rgb(255,255,255); border-width: 8px; pointer-events: none; } .time-wrapper { display: block; position: relative; margin: 4px 0 0 0; z-index: 14; } .direction-l .time-wrapper { float: none; } .direction-r .time-wrapper { float: none; } .desc { position: relative; margin: 1em 0 0 0; padding: 1em; background: rgb(245,245,245); -webkit-box-shadow: 0 0 1px rgba(0,0,0,0.20); -moz-box-shadow: 0 0 1px rgba(0,0,0,0.20); box-shadow: 0 0 1px rgba(0,0,0,0.20); z-index: 15; } .direction-l .desc, .direction-r .desc { position: relative; margin: 1em 1em 0 1em; padding: 1em; z-index: 15; } } @media screen and (min-width: 400px) and (max-width: 660px) { .direction-l .desc, .direction-r .desc { margin: 1em 4em 0 4em; } } 3. How to customize
    Vertical Line: Size, color,.. Find this CSS code
    .timeline:before { position: absolute; left: 50%; top: 0; content: ' '; display: block; width: 6px; height: 100%; margin-left: -3px; background: rgb(80,80,80); background: -moz-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(30,87,153,1)), color-stop(100%,rgba(125,185,232,1))); background: -webkit-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%); background: -o-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%); background: -ms-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%); background: linear-gradient(to bottom, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%); z-index: 5; } Freelancer, Apple Inc...box
    .flag { position: relative; display: inline; background: rgb(248,248,248); padding: 6px 10px; border-radius: 5px; font-weight: 600; text-align: left; } Red/white circle 
    .direction-l .flag:before, .direction-r .flag:before { position: absolute; top: 50%; right: -40px; content: ' '; display: block; width: 12px; height: 12px; margin-top: -10px; background: #fff; border-radius: 10px; border: 4px solid rgb(255,80,80); z-index: 10; } Time (2013 - present...)
    .time { display: inline-block; padding: 4px 6px; background: rgb(248,248,248); } and
    .time-wrapper { display: inline; line-height: 1em; font-size: 0.66666em; color: rgb(250,80,80); vertical-align: top; } Description
    .desc { margin: 1em 0.75em 0 0; font-size: 0.77777em; font-style: italic; line-height: 1.5em; } Notes
    Code on Codepen.io Tested on SS 7.1
  11. Like
    Hadley reacted to Jules68 in Why Doesn't SS allow us delete/manage our own imported images?   
    Not super helpful but it is flagged by Dev teams. Hopefully they fix it soon, it's a fairly big oops if you ask me (and I have over 20 years experience in Enterprise SW QA).
     
     
  12. Like
    Hadley reacted to MMEbyKiandraTrickett in Why Doesn't SS allow us delete/manage our own imported images?   
    Same thing with me building templates! I've started to play around.. and god I do not want the play around images in there! They'd think "geez, what is this"
    I had contacted them before my comment and they said they get lots of requests but they're adding it to the list and passing it on. 
    Makes you question how they've gone this long without that feature.. mind boggling!
    Hopefully it's our Christmas treat!
  13. Like
    Hadley reacted to cpb in Why Doesn't SS allow us delete/manage our own imported images?   
    +1 to everything here. give the users control over all the media on the site!
    furthermore, when I run Google Speed Insights, there seem to be old images dragging down the rating that aren't even used anymore. But I cannot delete them because there's no way to access that image
  14. Like
    Hadley reacted to TerryBattisti in Why Doesn't SS allow us delete/manage our own imported images?   
    Yep, have to agree with all of the statements above and am truly disappointed in SS for not having any way to manage images or an image library.  I just signed up for this service yesterday after messing around with SS a few days and am in the process of moving an old site on WP to this.  Now I am seriously considering cancelling this subscription and going back to WP.  
  15. Like
    Hadley reacted to ShannaB in Why Doesn't SS allow us delete/manage our own imported images?   
    I'm looking into options for moving my photography site from Wordpress, and thought Squarespace was the answer to all my problems. But this is an absolute deal breaker. I just can't believe that this basic functionality isn't available.
  16. Like
    Hadley reacted to cfriess128 in Is there a file manager in the works?   
    I would simply like to be able to sort my uploaded files into some sort of sequence. I've just taken over managing our website and I'm really struggling with what/when for the listed files.
  17. Like
    Hadley reacted to Classicalbass in Is there a file manager in the works?   
    I agree. I would so appreciate if this functionality could be added! When I first began searching for a file manager at SS I was confounded when I learned it did not exist.
  18. Like
    Hadley reacted to MMEbyKiandraTrickett in Is there a file manager in the works?   
    Joining purely for support and to stay updated.
     
    Infuriating foldering and deleting doesn't exist.
  19. Like
    Hadley reacted to derricksrandomviews in Is there a file manager in the works?   
    In my opinion a file manager will come with limited "library" storage like IONOS has. At some point you can't add a file without taking one out.  I moved from there to here and SS is  day to night better. Right now there is a 20mb single file limit and that is it. There is an old saying, get what you want and lose what you have. 
  20. Like
    Hadley reacted to RoryC in Is there a file manager in the works?   
    +1 
    I joined the forum just to add my support of this! It's bizarre that Squarespace doesn't allow for this. No fixing typos, etc. So strange.
  21. Like
    Hadley reacted to Clayton in Is there a file manager in the works?   
    This is certainly increasingly an issue. I want to create a static link (i.e., www.domain.com/current), and to replace the files served from that page so that when sharing links, the actual URL never changes.
  22. Like
    Hadley reacted to GraceBaldwin in Is there a file manager in the works?   
    Agree. This is quickly becoming my biggest frustration with Squarespace. I don't know how to access my files.
  23. Like
    Hadley reacted to Douwe in Is there a file manager in the works?   
    Why oh why is there no way to delete uploaded images and why is there no way to organise them into folders? It seems like such a basic necessity for managing a website. Does anyone know if there is a (simple) file manger in the works? This is by far my biggest request for Squarespace as a user.
  24. Like
    Hadley reacted to freelancervillepalmu in Why Doesn't SS allow us delete/manage our own imported images?   
    Hey! I'm working on a site and I played around the options (newest version of Squarespace) a lot. This uploaded the "dummy-images" on the site every time and now when browsing uploaded images it is hard to find the relevant pics.  How do I manage the images uploaded to the site? I'd really like to remove all of the unused images. 
    Screenshot from the media browser below.

  25. Like
    Hadley reacted to ExpansiveMedia in Why Doesn't SS allow us delete/manage our own imported images?   
    Yes. This is super important. I just built a website for a client which I started by duplicating a site I did for another client. I ABSOLUTELY CANNOT hand it off with the first client's custom photography saved in the imported images.
    So I have to build the whole site over from scratch???
    OMG. Hours and hours of redundant work are ahead.
    This is not ok.
    #featurerequest
×
×
  • 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.