Jump to content

creedon

Circle Member
  • Posts

    9,501
  • Joined

  • Last visited

  • Days Won

    79

Posts posted by creedon

  1. There are are some errors generated by the custom calendar code that is installed.

    47895719_ScreenShot2022-08-11at3_58_47PM.thumb.png.79106d6be9938f115a192e41dc60c9a4.png

    The code may not be installed properly or was not designed to work with SS.

    I would say this is an issue with that particular code and not a fault in SS.

    I don't have a solution as it looks like it would take some amount of time to try to figure out what the issue is.

  2. On 8/10/2022 at 7:10 PM, The-Design-Order said:

    I am no coder however and am wondering if there is any way to remove the paid ads from the top of the interface? I am guessing no?

    Are you using a free service? Then I'd say no. If you are using a paid service then you should not have to put up with ads.

  3. 2 hours ago, Smollys97 said:

    is it also possible to invert the page links?

    It is possible to use a filter on links but I don't think it will achieve a good effect. I suggest changing the actual color of the links with the color property.

    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.

  4. 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.

  5. 2 hours ago, moondesignco said:

    If I want to completely remove the text that says "2 Store Reviews" (above the product title), does anyone know how to code that?

    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.

  6. 3 hours ago, Javdesign said:

    The code above removed it from view entirely (understandably, but not quite what I'm trying to achieve).

    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. Quote

    Would there be a way to do the same for a single day event?

    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. 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.

  9. 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.

  10. 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.

  11. Is this getting closer?

    1590115073_ScreenShot2022-08-08at3_10_34PM.thumb.png.679f3e89a66d9d54604920f1c8aba8a7.png

    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.

×
×
  • 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.