Okay
  Public Ticket #3330355
Service Description
Closed

Comments

  •  2
    Jon started the conversation

    I am not able to figure out a solution or option for a service description. My form hides the Location, and Employee fields on the 'Service Selection' form, so there is a large amount of real estate/white space which could be better utilized.

    It seems strange that 'Extra's' have the ability to provide a description via the 'Learn More' field expansion, yet services do not.

    Ultimately my problem is that I do not have the ability to add 'service parameters' to a given service. (i.e. number of bedrooms, bathrooms) which would impact the base service cost. This is forcing me into a tiered pricing model where I would have to offer price tiers based on a range of sizes (small, medium, large homes).

    If I continue to pursue this tiered pricing model - I would need to provide a description to my customers for what exactly that tier includes. I.E. service: 'Standard Cleaning - Small Home' Would need to describe the criteria of being a small home, versus a medium home, or large home.

    If anyone could provide some suggestions, it would be greatly appreciated. Love this tools capabilities for booking - but I am feeling the pricing functionality is lacking a bit. Hoping I'm just missing something (looking through documentation).

  •  1,304
    Marko replied

    Hello Jon,

    Thank you for reaching out to us.

    You can show the service description with our catalog booking form. The service description is not possible to show in step by step but your customer can see it in catalog form like this for example

    4412503048.png

    Hope this helps. 

    If you have any more questions please open a new separate ticket for each question and we will gladly help you there.

    We wish you all the best.

    Have a nice day. 


    Kind Regards, 

    Marko Davidovic
    [email protected]

    Rate my support

    wpDataTables: FAQ | Facebook | Twitter | InstagramFront-end and back-end demo | Docs

    Amelia: FAQ | Facebook | Twitter | InstagramAmelia demo sites | Docs | Discord Community

    You can try wpDataTables add-ons before purchasing on these sandbox sites:

    Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables

  •  2
    Jon replied

    Hi Marko,


    Thanks for the suggestion, I will definitely explore this option.

    Can you please advise if I can modify the CSS module selector for the Catalog form to expand the height, etc. (to eliminate the scrolling)? I really would like to avoid users having to scroll within a container if possible.

    Attached files:  Screenshot 2023-03-23 at 10.15.54 AM.png

  •  1,304
    Marko replied


    Hello Jon,

    Unfortunately, no, you can try and expend the with but not hight. Maybe this weill help but quite sure that what you want to achieve is not possible at this time.

    Our support does not fully provide customization solutions, but we can try to provide some basic CSS in situations like this.

    For manipulating the width of the "outer Booking container", you can try this CSS:

    .amelia-v2-booking #amelia-container.am-fs__wrapper {
        max-width: 1200px !important;
        width: 100%;
        height: 560px;
        margin: 99px auto;
        border-radius: 8px;
        box-shadow: 0 30px 40px #0000001f;
    }

    For example, on our Demo page, if i add that CSS, the outer container expands like this :

    3146601994.png

    Just the background colour we set is transparent, so it is not very visible on our page,

     but that width can be changed like that.

    -

    Now, if you also wish to manipulate this "inner Booking container width", you can use this CSS selector :

    .amelia-v2-booking #amelia-container .am-fs__main {
        
        max-width: 1200px;
        width: 100%;
    }

    If i add that to our Demo, here is the result :

    5856364923.png

    As you see, we have successfully changed the width this way.

    The main property to edit is "max-width" with a fixed pixel value.

    Let us know if that works for you.smile.png

    -

    If you wish to see a built-in solution for users to choose the Booking Form width from the Amelia's Customize interface, 

    please feel free to search through our feature suggestion page

     to see if someone may be already suggested this feature. If you can't see it, feel free to add your suggestion there, and as more people vote, the feature will move higher on the priority list.

    You can certainly follow our changeLog page if you'd like, where we state any changes/new features/bug fixes during updates;

    and our newsletter, so you're informed about new features, bug fixes, freebies, etc.

    If you have any more questions please open a new separate ticket for each question and we will gladly help you there.

    We wish you all the best.

    Have a nice day. 


    Kind Regards, 

    Marko Davidovic
    [email protected]

    Rate my support

    wpDataTables: FAQ | Facebook | Twitter | InstagramFront-end and back-end demo | Docs

    Amelia: FAQ | Facebook | Twitter | InstagramAmelia demo sites | Docs | Discord Community

    You can try wpDataTables add-ons before purchasing on these sandbox sites:

    Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables

  •  2
    Jon replied

    Fortunately I was actually able to modify the height with css using the max-height styling - here is a snippet of the selector and parameters used to achieve the goal of modifying the height while eliminating scrolling:

    .am-cat__content.am-fcil__wrapper {
            max-width: 1200px !important;
            width: 100%;
            max-height: 100% !important;
            height:900px !important;
            margin:2px !important;
            border-radius: 8px;
            box-shadow: 0 30px 40px #0000001f;
        }

    ;) YW


    Please feel free to close out this ticket.

  •  1,304
    Marko replied

    Hello Jon,

    That is fantastic news, and thank you so much for sharing this with us. We will test this out we were unable to expand the form in this way. We will save your solution in case anyone else needs it. Thank you once again.

    We wish you all the best.

    Have a nice day. 


    Kind Regards, 

    Marko Davidovic
    [email protected]

    Rate my support

    wpDataTables: FAQ | Facebook | Twitter | InstagramFront-end and back-end demo | Docs

    Amelia: FAQ | Facebook | Twitter | InstagramAmelia demo sites | Docs | Discord Community

    You can try wpDataTables add-ons before purchasing on these sandbox sites:

    Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables