Jump to content

creedon

Circle Member
  • Posts

    9,467
  • Joined

  • Last visited

  • Days Won

    78

Everything posted by creedon

  1. Please see the last bullet point of Before you begin in Forwarding a Squarespace domain. It appears SS doesn't support what you want to do. However. You could transfer your domain to a provider like GoDaddy and I think you'll find they have the feature you are looking for. Please do some research before you transfer to make sure the provider you choose can do what you want.
  2. I suggest you create a page in the Not Linked area of pages. Give us the URL for that page. Add a test form there with your hidden fields and one or two visible fields. I'm thinking we will also need a test member account. Otherwise how can the MS code insert fields into a page unless a member is logged into MS?
  3. Is this form an SS form created with SS as opposed to a MS form embedded in the site? If the former, what is the URL for the page with the form?
  4. Please post the URL for a page on your site where we can see your issue. If your site is not public please set up a site-wide password, if you've not already done so. Post the password here. Adding a site-wide password does not allow anyone to alter your site. It only allows those with the password to see your site. Please read the documentation at the link provided to understand how it works. Please read the documentation at the link provided on how to share a link to your site to understand how it works. A link to the backend of the your site wonโ€™t work for us, i.e. a url that contains /config/. We can then take a look at your issue.
  5. I lied. ๐Ÿ™‚ Inspiration struck and it didn't seem as hard as I thought initially. I have updated my cited code in my Friday post. If you prefer the previous behavior continue to use the version you have.
  6. Please post the URL for a page on your site where we can see your issue. If your site is not public please set up a site-wide password, if you've not already done so. Post the password here. Adding a site-wide password does not allow anyone to alter your site. It only allows those with the password to see your site. Please read the documentation at the link provided to understand how it works. Please read the documentation at the link provided on how to share a link to your site to understand how it works. A link to the backend of the your site wonโ€™t work for us, i.e. a url that contains /config/. We can then take a look at your issue.
  7. There wasn't but now there is! ๐Ÿ™‚ The Calendar Block Event Change code had to be updated to allow multiple callbacks to be called. You'll need to install the updated version. You'll need to set the itemCallbacks and itemFlyOutCallbacks constants to the following in the Calendar Block Event Change code. const itemCallbacks = [ cbsdeca, ]; const itemFlyOutCallbacks = [ cbmdefdca, ]; Please see Calendar Block Single Day Event Class Add. Then add the following CSS to the CSS you've already installed. You can put it in the same style tag as the previous code. .yui3-squarespacecalendar .compact-layout .yui3-calendar-day.has-event.twc-cbsdeca-single-day { background-color : PaleVioletRed; } I realized the Calendar Block Multi Day Event First Day Class Add code has a deficiency. You'll notice that in my Friday post the test image I posted shows the 15th and 16th as the first day of the multi day event. Which is correct because the calendar has been adjusted for my time zone when I view it. But you'll notice my code doesn't handle that properly. I'm not going to fix it right away as I think the code would be just a bit harder to deal with that. Hopefully the code is good enough for now! ๐Ÿ™‚ Let us know how it goes.
  8. Try the following. /* uses LESS syntax */ .tag-nocart .ProductItem-details { .product-quantity-input, .sqs-add-to-cart-button-wrapper { display : none; } } Let us know how it goes.
  9. I suggest your first stop should be DataTables. I don't know if it can handle the showing/hiding columns but DT has so many features I wouldn't be surprised. DT is a complex piece of code and although you can get something basic going pretty easily, if you're not into web site programming you'd probably need a developers help.
  10. The code only works on calendar blocks. Thanks for the catch. I updated my code in my previous post. It appears you've not done the second and third steps in the Quick Install instructions.
  11. It is an unfortunate situation for you but domain names are pretty much first come first serve. There are no rules or laws, corporate or government that prevent someone from having your name or purchasing a second level domain with a different top level domain than yours. The exception of course would be a brand name which the brand owner could go after someone for using their brand name. The traditional method for protection is to buy those domains you don't want folks to have yourself. But once the other person gets it, you are pretty much out of luck. You can offer to buy the domain from them but that can be expensive and a bit of a process. I don't think the other Charlotte Tanguy had a nefarious purpose to damage you. Her site looks legit on cursory examination. As to why you have been knocked out of a high ranking position I'm guessing that the .com might rank more highly than .fr as people are more often looking for companies rather than individuals. I'm not an SEO expert so perhaps those more familiar with SEO can comment. The only suggestions I can make would be to re-submit your site to Google, Bing, and etc. for indexing. That may not help but it can't hurt to spend the few minutes it would take to do. The other thing to do is try to improve your site content. Content is king. Again I'm not an SEO expert so I have no recommendations but that is an oft cited thing to do.
  12. The issue you are/were having may have been resolved. Please see the following.
  13. SS does not have this capability and there is no easy way to achieve it with SS's built-in features. The only thing I can suggest is to try to find an RSS aggregator that allows you to embed code in your site to render the aggregated feed.
  14. I'm thinking the curse of Ajax Loading strikes again! Try turning off Ajax Loading to see if the problem goes away. Please note that turning off Ajax Loading will effect the performance of your site. Ajax Loading is designed to increase the loading speed of your site after it first loads. You have to decide whether the custom code you are trying to use is worth turning off Ajax Loading. paul2009 has a great article on the ins and outs of Ajax Loading. Please see Why does Squarespace code only work on refresh? Let us know how it goes.
  15. @raeroshow @Rammy SS has reported that sites with FE are having issues saving changes. Not sure if this is your specific issue but may explain some folks issues. SS says a fix is in the works.
  16. I just edited a blog post with no issue. The issue appears to not be happening on all sites. Not much help but it's a data point.
  17. Is this getting closer? I used the following CSS to make the first image show the whole image. .gallery-section .gallery-grid-item:first-child .gallery-grid-item-wrapper img { object-fit : contain !important; } This code is not a solution but example code to show what might be achieved with a gallery section and some CSS. The spacing is a bit uneven as I'm mixing stock SS images with examples of your images. Your images have a border around them. The stock ones don't. Obviously if you filled a gallery with your images my example image would look even closer to your images blocks.
  18. When you need help please ask and don't feel bad! Even if you don't answer a question, asking a question is contributing as someone else may benefit from any answers to your questions. ๐Ÿ™‚
  19. It appears to be white text on a white background so you can't see the text. I made the background red locally so I could see what is going on. You'll want to edit your colors. Let us know how it goes.
  20. First issue. Please see the following for an explanation why that ID won't work. Let me see if I understand what I think you are trying to accomplish. It appears you want to be able to provide a URL to the wedding page that will automatically pop the form when the URL is visited without having to click the RSVP button?
  21. The Gallery Section set to Gallery Type Grid: Simple seems to be close to what you want in terms of layout.
  22. When you say click through do you mean you want the be able to navigate to the next image and see it in a lightbox, kind of like you would with an actual gallery? Also you've not provided, that I can tell, the URL to the page with the image blocks on it. Without that page it will be hard for anyone to try and come up with code. I also clarified my previous post. That JavaScript would be needed, if the effect can indeed be achieved. I don't know for sure that it can. I wonder if it would be possible to restructure an actual gallery into the format you do like. That way you wouldn't have to recreate the more complex functionality, comparatively, of navigating between images in the lightbox.
ร—
ร—
  • 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.