Jump to content

Astoria

Circle Member
  • Posts

    5
  • Joined

  • Last visited

Posts posted by Astoria

  1. On 8/29/2023 at 10:45 PM, nathanb said:

    I'm also curious about this. Did you ever find an answer?

    Here is the reply I received from support, unfortunately it's not possible but I hope this will be a feature they add in the future:

    Hello, 
     
    James from the Acuity Support team with you today, happy to help. 
     
    I see that you'd like to require a minimum number of attendees for group classes. This is currently not a feature that Acuity offers. I'm happy to submit this as a feature request. Feedback directly from Acuity users is important for the development of the platform, but we aren’t able to guarantee if/when certain features might be built or changed. 
     
    The only workaround I could think of would be to collect interest about the class outside of Acuity (for example, through a form on a website) and only place the class on the calendar in Acuity when you know you have enough clients who are interested. 
     
    I hope that helps clarify, please let me know if you have any other questions. Have a great day,

    James F.

  2. 8 hours ago, nathanb said:

    I'm also curious about this. Did you ever find an answer?

    Unfortunately not! I ended up reaching out to support so I am hoping to hear back over the next day or so. I'll update the post with their reply, I'm assuming it isn't currently possible but hoping this will be a feature added in the future. It's a pretty popular request with my clients who hold classes and workshops. 

  3. Hello!

    Is there a way to set a minimum number of attendees required for group classes booked on Acuity Scheduling? I have a client who would like to set a minimum of at least 4 people for her group classes so she isn't having days where there is only 1 booking. Is this possible?

    If not, perhaps there is a workaround I haven't thought of?

  4. Site URL: https://pigeon-squid-t97t.squarespace.com/

    Hello! 

    After much Googling trying to find a fix to adding two buttons to the header without CSS (so I can have one link to an external url - if I can do this simply with CSS please let me know!) I've used a combination of Javascript & CSS by Thomas Creedon to add two buttons to my header, which work great but I was wondering what code I can add to change the color of just one of these buttons? Changing the color of both of them is as close as I was able to get. 

     

    The website PW is: pixelsplease


    I am trying to get one button in the beige, and one in the blue


    Any help is greatly appreciated!

     

     

    Header Injection

    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>`

    Footer Injection

    <script>
    
      $( ( ) => {
      
        /*
        
          begin add buttons to header
          
          Version       : 0.6d1
          
          SS Version    : 7.1
          
          Dependancies  : jQuery
          
          By            : Thomas Creedon < http://www.tomsWeb.consulting/ >
          
          */
          
          const buttonsTextUrl = [
          
            /*
            
              following is an example of a new button data structure. copy the
              example new button data structure and paste after the example new
              button data structure. remove the forward slash asterisk and asterisk
              forward slash lines from before and after the copied example. repeat
              for as many new buttons you want to create. this has been done once
              initially
              
              */
              
            /*
            
              {
              
                text : '[enter button text here between single quotes]',
                url : '[enter url here between single quotes]'
                
                },
                
              */
              
            {
            
              text : 'GET STARTED',
              url : 'get-started'
              
              },
              
            ]
            
          // do not change anything below, there be the borg here
          
          $( '.header-actions-action--cta, .header-menu-cta' ).each ( function ( ) {
          
            const $this = $( this );
            
            $.each ( buttonsTextUrl, function ( index, buttonTextUrl ) {
            
              $( '.btn:first', $this )
              
                .clone ( )
                
                .attr ( 'href', buttonTextUrl.url )
                
                .text ( buttonTextUrl.text )
                
                .appendTo ( $this );
                
              } );
              
            } );
            
          /* end add buttons to header */
          
        } );
        
      </script>
    
    

    CSS

    // Two Buttons on Header
    /*
    
      begin add buttons to header
      
      Version       : 0.6d1
      
      SS Version    : 7.1
      
      Dependancies  : LESS
      
      Note          : on mobile at 575px and below the orientation is forced to
                      column
      
      By            : Thomas Creedon < http://www.tomsWeb.consulting/ >
      
      */
      
      @gap : 3rem; // space between buttons
      
      /*
      
        direction-order controls whether buttons will be oriented in a row or column
        and if they will be in normal or reversed order. the first argument can be
        row or column, the second argument can be normal or reverse.
        
        */
        
      .direction-order ( row, reverse );
      
      // do not change anything below, there be the borg here
      
      .header .header-actions-action--cta, // desktop
      .header-menu-cta // mobile
      
        {
        
          display : -webkit-box;
          display : -ms-flexbox;
          display : flex;
          
          -webkit-box-orient : @d3;
          -webkit-box-direction : @d2;
          -ms-flex-direction : @d1;
          flex-direction : @d1;
          
          grid-gap : @gap;
          gap : @gap;
          
          }
          
      // desktop
      
      @media only screen and ( pointer : coarse ) and ( max-width : 1023px ),
        screen and ( max-width : 799px ) {
        
        .header .header-actions-action--cta {
        
          display : none;
          
          }
        }
        
      // begin mobile
      
        .header-menu-cta {
        
          justify-content : center;
          
          }
          
        @media screen and ( max-width : 575px ) {
        
          .header-menu-cta {
          
            -webkit-box-orient : @d6;
            -webkit-box-direction : @d5;
            -ms-flex-direction : @d4;
            flex-direction : @d4;
            
            }
          }
          
        .header-menu-cta a {
        
          margin-left : auto;
          margin-right : auto;
          
          }
          
        // end mobile
        
      // begin direction mixins
      
        // begin desktop
        
          // direction row, normal
          
          .direction-order ( @d, @o ) when ( @d = row ) and ( @o = normal ) {
          
            @d1 : row;
            @d2 : normal;
            @d3 : horizontal;
            
            }
            
          // direction row, reverse
          
          .direction-order ( @d, @o ) when ( @d = row ) and ( @o = reverse ) {
          
            @d1 : row-reverse;
            @d2 : reverse;
            @d3 : horizontal;
            
            }
            
          // direction column, normal
          
          .direction-order ( @d, @o ) when ( @d = column ) and ( @o = normal ) {
          
            @d1 : column;
            @d2 : normal;
            @d3 : vertical;
            
            }
            
          // direction column, reverse
          
          .direction-order ( @d, @o ) when ( @d = column ) and ( @o = reverse ) {
          
            @d1 : column-reverse;
            @d2 : reverse;
            @d3 : vertical;
            
            }
            
          // end desktop
          
        // mobile
        
          // direction column, normal
          
          .direction-order ( @d, @o ) when ( @o = normal ) {
          
            @d4 : column;
            @d5 : normal;
            @d6 : vertical;
            
            }
            
          // direction column, reverse
          
          .direction-order ( @d, @o ) when ( @o = reverse ) {
          
            @d4 : column-reverse;
            @d5 : reverse;
            @d6 : vertical;
            
            }
            
        // end direction mixins
        
      // end add buttons to header

    Screenshot - 2021-12-01T185332.592.png

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