Jump to content

creedon

Circle Member
  • Posts

    9,499
  • Joined

  • Last visited

  • Days Won

    79

Everything posted by creedon

  1. Add the following to my code where it indicates CSS should be added. .twc-malidc-sign-up h1::after { color : gray; content : 'Create an account to unlock exclusive content.'; display : block; font-size : 13px; } .twc-malidc-sign-up-password-confirm::after { color : gray; content : 'By joining you may receive emails and updates related to your account. You can unsubscribe at anytime.'; display : block; font-size : 13px; margin-top : 1em; } Let us know how it goes.
  2. Please post the URL for a page on your site where we can see your issue. For us to see the URL you need to include the link in the content of your post. The URL field the forum software provides is not shown to us. A link to the backend of the your site won’t work for us, i.e. a URL that contains /config/. Please set up a site-wide password, if your site is not public and 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 site-wide password and how to share a link documentation to understand how they work. You may find How to post a forum question post useful. We can then take a look at your issue.
  3. You can always report the issue to SS but I would not expect a fast fix.
  4. I don't have a solution but an observation after checking your issue out on my test site. Apparently SS is just ignoring the open in new window/tab setting. The action appears to be happening on the server side. SS gets the form submission, processes it, and then does the redirect. There is no link on the page that we can manipulate.
  5. You can set up a test page in Not Linked that we can take a look at.
  6. Fluid Engine Compatibility has four possible states Yes, No, Unknown and Not Applicable. Not Applicable means that fluid engine is not applicable to the code. In this case the code is manipulating the body element of the HTML document and FE is not involved.
  7. That CSS won't work as it was designed for @mbaydesign's specific setup. I don't have a CSS solution for your particular setup. I can say that you will want to use [data-store-category="T-SHIRTS"] for the CSS as T-SHIRTS is what is entered for the name of the category.
  8. Please post the URL for a page on your site where we can see your issue. For us to see the URL you need to include the link in the content of your post. The URL field the forum software provides is not shown to us. A link to the backend of the your site won’t work for us, i.e. a URL that contains /config/. Please set up a site-wide password, if your site is not public and 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 site-wide password and how to share a link documentation to understand how they work. You may find How to post a forum question post useful. We can then take a look at your issue.
  9. I see no sign of my category effect code is installed. It's hard to diagnose an issue when the code isn't installed. I do see that you've correctly installed twcsl.
  10. The code you used was not posted by me. My code is cited several posts below the code you used.
  11. Please post the URL for a page on your site where we can see your issue. For us to see the URL you need to include the link in the content of your post. The URL field the forum software provides is not shown to us. A link to the backend of the your site won’t work for us, i.e. a URL that contains /config/. Please set up a site-wide password, if your site is not public and 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 site-wide password and how to share a link documentation to understand how they work. You may find How to post a forum question post useful. We can then take a look at your issue.
  12. CSS is for styling the look of elements. What you need to use is JavaScript. Please see my October 30, 2020 post.
  13. I suspect you added the site URL to the post field but that doesn't show to us in the thread. Please post the URL as part of a posts content.
  14. It appears the code has taken a trip through a word processor and they often foul up code by putting smart quotes in. Code, in general, hates smart quotes and causes syntax errors. submissionRedirectUrl: ‘https://www.durangocreativedistrict.org’, ...needs to be changed to... submissionRedirectUrl: 'https://www.durangocreativedistrict.org', Notice the dumb quotes in place of the smart quotes. When working with code use a code editor or a dumb word processor that doesn't do helpful things like automatically adding smart quotes. After I made the quotes dumb here is what I'm seeing locally. Let us know how it goes.
  15. For the home page of your site go to Page Settings > Advanced > Page Header Code Injection for the page. Please see per-page code injection. Remove the following. <STYLE>.header{ display: none; } </STYLE> Let us know how it goes.
  16. This domain is not connected to a Squarespace site. If you provide your built-in domain that is something like your-site-xy4d.squarespace.com, we should be able to get a look.
  17. Please post the URL for a page on your site where we can see your issue. For us to see the URL you need to include the link in the content of your post. The URL field the forum software provides is not shown to us. A link to the backend of the your site won’t work for us, i.e. a URL that contains /config/. Please set up a site-wide password, if your site is not public and 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 site-wide password and how to share a link documentation to understand how they work. You may find How to post a forum question post useful. We can then take a look at your issue.
  18. Please post the URL for a page on your site where we can see your issue. For us to see the URL you need to include the link in the content of your post. The URL field the forum software provides is not shown to us. A link to the backend of the your site won’t work for us, i.e. a URL that contains /config/. Please set up a site-wide password, if your site is not public and 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 site-wide password and how to share a link documentation to understand how they work. You may find How to post a forum question post useful. We can then take a look at your issue.
  19. Add the following to Store Settings > Advanced > Page Header Code Injection for the store page. Please see per-page code injection. <!-- begin reorder store categories Version : 0.3.7 SS Version : 7.0 Template : Avenue Notes : the code is comprised of a number style tags. all of them are needed for the full effect to work code generated on 02/23/2024 12:38:53 PM by my magic table < ? > By : Thomas Creedon < http://www.tomsWeb.consulting/ > --> <style> /* rulesets just for reordering categories */ .category-nav-links li:nth-child( 3 ) { /* Canvas */ -webkit-box-ordinal-group : 3; -ms-flex-order : 2; order : 2; } .category-nav-links li:nth-child( 4 ) { /* Paper */ -webkit-box-ordinal-group : 4; -ms-flex-order : 3; order : 3; } .category-nav-links li:nth-child( 5 ) { /* Prints */ -webkit-box-ordinal-group : 7; -ms-flex-order : 6; order : 6; } .category-nav-links li:nth-child( 6 ) { /* Tiny */ -webkit-box-ordinal-group : 5; -ms-flex-order : 4; order : 4; } .category-nav-links li:nth-child( 7 ) { /* Wood */ -webkit-box-ordinal-group : 6; -ms-flex-order : 5; order : 5; } </style> <style> /* rulesets to define the base of this effect no user serviceable parts below */ /* desktop */ @media only screen and ( min-width : 641px ) { .category-nav-links { display : flex; justify-content : center; } } /* mobile */ @media only screen and ( max-width : 640px ) { .category-nav-links { display : flex; flex-direction : column; } } </style> <!-- end reorder store categories --> This is for v7.0 using the Avenue template. Let us know how it goes.
  20. The code that is hiding the header and footer are in code blocks in the content of each page. Remove them or do something like the following... <style> html:not( .squarespace-damask ) .header, html:not( .squarespace-damask ) #footer-sections { display : none; } </style> I prefer to put these kinds of customizations in the Page Header Code Injections for each page instead of a code block as the later has a tendency to get lost in the mix. Let us know how it goes.
  21. It took a long time but there is now an update path for some v7.0 sites using particular templates.
  22. I'm not a Java developer but apparently there may be some ways to run it browser side. I think traditionally Java has been a server side language. I have no idea if Java could work in the browser with SS as a host. If I were to approach this I'd probably look at if AWS (Amazon Web Services) could host the app and then you'd embed it in the SS site.
  23. This still works on v7.1 as the demo demonstrates. No. In my instructions take the code and install it where I indicate. If there were different locations I would add those as steps to the install instructions. Yes. But I can't speak to if my effect will work how you imagine you want your effect to work. 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.