Jump to content

creedon

Circle Member
  • Posts

    9,486
  • Joined

  • Last visited

  • Days Won

    79

Community Answers

  1. creedon's post in Add to cart button is disappearing? was marked as the answer   
    The code is in Store Settings > Advanced > Page Header Code Injection for the store page. Please see per-page code injection.
    Remove the following.
    <style> .ProductItem-details .sqs-add-to-cart-button-wrapper { display : none; } </style> Let us know how it goes.
  2. creedon's post in Accordion Block Dividers Glitch "Show First and Last" was marked as the answer   
    I can confirm that no matter how the accordion block is duplicated the bottom and top border are always turned on.
    I would consider this a bug. It is not WSIWYG!
    For some CSS please see the following.
    Let us know how it goes.
  3. creedon's post in Custom crypto exchange embed help. was marked as the answer   
    I don't have a solution but I can describe why things are not working as one might hope.
    You've included a full HTML page inside another HTML page and HTML doesn't work that way. It's a syntax error.
    A developer would have to see if they can pull out the critical bits and include/modify them to work in a Squarespace site context. Another option might be to host the full page on another hosting service and pull the page in with an iframe in a code block. Each method has its challenges. I would not classify this task as easy.
  4. creedon's post in Blog screen buttons cut off was marked as the answer   
    This appears to be a bug on Squarespace's end.  I checked several v7.0 sites and they are all doing this.
    I suggest reporting the issue to SS. Please Contact Customer Support.
    Let us know how it goes.
  5. creedon's post in Indexing On Google Search was marked as the answer   
    I'm not sure if your question is if you have to do something to get the mentioned pages indexed. Or, if you don't want some pages indexed for some reason.
    In theory there is a chance that your pages will be indexed naturally. No one can guarantee when or if it will happen. Being indexed and searchable on Google depends on many factors.
    You can increase your chances by getting an account on Google Search Console and submitting your sitemap.xml file to it. But again there are many factors that go into success. GSC also gives you reports about Google's indexing activity that can be useful.
    If you don't want some pages indexed there is a technique to do this. It has been mentioned many times in this forum.
  6. creedon's post in Product desciption had gold text only for one product? was marked as the answer   
    Edit your Additional Info for the product.
    Place a line block above the first text block ( the one with the unwanted color ).
    Above the line block add a new text block. Enter the text from scratch. Don't copy and paste the current bad text. Also do not set a custom color for the text.
    Apply the Additional Info and Save the product.
    Check the new text. Does it look OK? If so, go back in and delete the line block and the bad text block.
    Let us know how it goes.
  7. creedon's post in Stop members sharing login details - is it a thing? was marked as the answer   
    You can't stop people from sharing login information and tracking such behaviour is not a thing.
    Plugins aren't going to help as they could easily be disabled client side.
  8. creedon's post in Help with rendering the header at tablet size was marked as the answer   
    I do! The issue is a non-printing character has gotten into the mix and causes the ruleset to fail. If you look at the ruleset you will notice two characters between the selector and the right curly bracket ( { ).
    Select the two characters and type the space character. Or, you can use the following.
    @media screen and ( min-width : 768px ) and ( max-width : 799px ) { .header .header-announcement-bar-wrapper { padding : 3vw; } } Also note I change the 798 to 799.
    Let us know how it goes.
  9. creedon's post in SSL Certificate Processing - Time / Troubleshooting was marked as the answer   
    Just a general note for folks.
    Although things like DNS changes and SSL certificates usually take much less than the 72 hour recommended waiting period. There are those occasional circumstances when it does take the recommended wait period.
  10. creedon's post in Webpage Showing Text and Images In The Wrong Order On Mobile was marked as the answer   
    v7.0 sites use a single editor for both desktop and mobile.
    Your issue is probably due to unintentional nesting of blocks.

     
    Notice how the two coming soons are not on a row on their own. They are laid out in a column under the videos.
    The way columns wrap when viewed on mobile is the ones on the right collapse under columns that precede them.
    So on desktop you have...
    column 1    column 2
    ...and on mobile you get...
    column 1
    column 2
    So you can see with thee layout you have you get an interleaving you probably don't want.
    To reduce unwanted nesting of blocks I use the technique of using line blocks that span the whole width. Something like the following.
    Line block
    block    block
    Line block
    block    block
    Line block
    block    block
    Line block
    Then when everything is laid out the way I want, I remove the line blocks.
    Let us know how it goes.
  11. creedon's post in Enabling Fluid Engine with Circle Member was marked as the answer   
    Yes you can add another member who is a Circle Member and have them change the setting.
    I'd be happy to do this for you. Direct message me and we can set it up.
    Whichever Circle Member you invite will need a Contributor invitation with administrator permission.
  12. creedon's post in JavaScript or HTML from MailerLite into my Personal Subscription was marked as the answer   
    I can't speak to the MailerLite JavaScript itself working on a SS site.
    As to running JavaScript on a SS site, that requires the business plan or above.
  13. creedon's post in How to add code without a code block was marked as the answer   
    The gallery section is still set to height medium. Set it to large and Save.
    The section with the code is set to large. It should be medium.
    If those section heights aren't set correctly. Then the CSS code won't work.
    I also updated my code. There was a missing ruleset.
  14. creedon's post in Custom SVG logo won't show (on home page only) was marked as the answer   
    This is the issue. Gallery sections don't have themes and your current CSS is targeting the theme classes to add your effect.
    For the homepage you may want to use a selector like the following.
    .homepage .header-mobile-logo a Let us know how it goes.
  15. creedon's post in Clicking the dropdown title doesn't open the first page on 7.1 was marked as the answer   
    Please see the following.
    Let us know how it goes.
  16. creedon's post in Linking 'Add to Cart' to external specific URLs for individual products was marked as the answer   
    Please see the following.
    Let us know how it goes.
  17. creedon's post in Social links broken design in header (7.1) was marked as the answer   
    Add the following to Website > Website Tools > Custom CSS.
    /* workaround for header social icon spacing issue */ .header-actions--right .header-actions-action--social { font-size : 0px; } I suspect you have at some point modified the sites font styles perhaps increasing the size of some of the site elements?
    This appears to be causing an issue with the spacing around the header social icons. I would consider this a Squarespace bug.
    Let us know how it goes.
  18. creedon's post in Remove Newsletter form Last name field from view and remove from data storage was marked as the answer   
    No. You can hide it visually in the browser but that hiding has no effect on what SS expects to receive when the form is submitted. Hence you have to supply a value for the Last Name field behind the scenes.
  19. creedon's post in Help! Images won't load more than 2-3 images in all product pages. was marked as the answer   
    Perhaps your issue is related to the following.
     
     
  20. creedon's post in Why can't different Variant Options have different pricing? was marked as the answer   
    For folks that may not readily see the solution. Set the Stock to zero for A4/None and 60 x 90 in/Metal in the case of this particular scenario.
    SS is a bit funky in the way it handles variants. There is some fallout from this set up. The from price always shows zero. To overcome this you can set the price for the non-existent variants to the lowest of all the prices. You just have to remember to never set the Stock to non-zero values. You also get Sold Out messages if you select one of the non-existent variants.
    It may be possible to overcome these "features" of how SS does things with some custom code. You'd have to search the forum or ask a question for a particular need.
  21. creedon's post in CSS cover page navigation changes reverting to default was marked as the answer   
    I updated my code. Please try the revised version.
  22. creedon's post in Cannot accurately target the code to a single image in grid gallery was marked as the answer   
    Add the following to Website > Pages > Website Tools > Custom CSS.
    .mobile-style-nav #block-yui_3_17_2_1_1592486068357_51634 .sqs-gallery-block-grid .slide:nth-last-child( 2 ) { display : none; } Let us know how it goes.
  23. creedon's post in Referencing a video and its location via a url was marked as the answer   
    Please see the following.
     
  24. creedon's post in Adding a second button in mobile header with HTML was marked as the answer   
    Please see the following.
    Let us know how it goes.
  25. creedon's post in Scrolling text width goes beyond page edge was marked as the answer   
    This isn't an issue with the scrolling text. The issue is header actions is overflowing due to the following custom CSS.
    div.header-actions { padding-right: 10vw } Let us know how it goes.
×
×
  • 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.