Jump to content

creedon

Circle Member
  • Posts

    9,361
  • Joined

  • Last visited

  • Days Won

    78

Posts posted by creedon

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

  2. This is another variation on hiding these elements.

    Add the following to Website > Website Tools > Custom CSS.

    /* begin events page list stacked multiday times and separators hide */
    
      .tweak-events-stacked-show-time .eventlist-event--multiday .eventlist-meta-time {
      
        display : none;
        
        }
        
      .tweak-events-stacked-show-time .eventlist-event--multiday .eventlist-meta-date .event-date:after {
      
        content : unset;
        
        }
        
      /* end events page list stacked multiday times and separators hide */

    This is for v7.1.

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

  4. 16 minutes ago, Bos said:

    I copied and pasted my CSS below: 

    In a quick test on my test site the code worked.

    ScreenShot2024-02-27at2_53_47PM.png.57467c25493ed5290915b2bcea65ecc0.png

    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.

  5. 11 hours ago, D8NMT said:

    Any ideas?

    Yes. I think I was off track here so lets reset.

    It appears we are dealing with the member dialog in two different states. One is a default dialog.

    ScreenShot2024-02-27at12_53_23PM.png.507560b2db34ecff2c8cc3ec440f4eff.png

    The other is a digital product block dialog.

    ScreenShot2024-02-27at12_52_44PM.png.a8230cd0fd96df17bd5fe0b14853d481.png

    In this one we see the added texts Create an account to unlock exclusive content. and By joining you may receive emails and updates related to your account. You can unsubscribe at anytime.

    Let work on this one first.

    .twc-malidc-sign-up h1 ~ h3 {
    
      visibility : hidden;
      
      }
      
    .twc-malidc-sign-up h1 ~ h3::before {
    
      content : 'Testing changing the text.';
      display : block;
      visibility : visible;
      
      }
      
    .twc-malidc-sign-up .twc-malidc-sign-up-password-confirm ~ div {
    
      visibility : hidden;
      
      }
      
    .twc-malidc-sign-up .twc-malidc-sign-up-password-confirm ~ div::after {
    
      content : 'Testing changing the text.';
      display : block;
      visibility : visible;
      
      }

    Remove any previous attempts at this effect.

    Let us know how it goes.

  6. 10 minutes ago, AlexMo said:

    Any update on the fact that it doesn't appear on mobile?

    As I recall I updated my code to address a previous mobile display issue.

    Perhaps there is another issue.

    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.

  7. 2 hours ago, D8NMT said:

    I wondered if it's possible to change the small text that sits below the title in the sign up box, by default is says 'Create an account to unlock exclusive content.'

    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.

  8. 52 minutes ago, D8NMT said:

    I wondered if it's possible to change the small text that sits below the title in the sign up box, by default is says 'Create an account to unlock exclusive content.'

    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. 1 hour ago, NewbiefromUK said:

    I had removed it after seeing its not applicable for fluid engine

    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.

  10. 1 hour ago, NewbiefromUK said:

    The CSS I had put in

    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.

  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. 1 hour ago, NewbiefromUK said:

    I tried to follow the steps that @creedon has sent a link to but for some reason I couldnt get it to work. I would appreciate if someone can assist me with this problem.

    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.

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

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