• Resolved ovejaenlaciudad

    (@ovejaenlaciudad)


    Hi!

    I would like to know how to do two things in the checkout process:

    1- How to display quantity as a number and not let users edit it
    2- How to hide the quantity buttons that show up in the end

    Please see the screenshot where I point out both of them

    https://ibb.co/TqDtXY2 (sorry about the quality of the drawing :P)

    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author yoancutillas

    (@yoancutillas)

    Hello, sorry actually this issue is related to the Prices and Credits add-on only and ww.wp.xz.cn doesn’t allow us to discuss it on their forum, can you contact me at [email protected] for any question related to add-ons?

    1.
    You can only change the input html via custom code.
    It is also possible to fake it via CSS (in Appearence > Customize > Additional CSS), for example:

    .bapap-price-category-cart-field {
        pointer-events: none;
        background: none;
        border: none;
        padding: 0;
        width: 35px;
    }

    2.
    Booking Activities does hide the original quantity field, this is probably due to your theme, or a third party plugin. You will probably be able to hide them with CSS, maybe try:
    .bookacti-cart-item-activity .bapap-price-categories-quantities + .quantity { display: none !important; }

    Thread Starter ovejaenlaciudad

    (@ovejaenlaciudad)

    Thanks a lot!

    Hi,

    I have the same issue on our website (nr 2): showing the quantity box at the end.
    Ik would like to try your solution:
    2.
    Booking Activities does hide the original quantity field, this is probably due to your theme, or a third party plugin. You will probably be able to hide them with CSS, maybe try:
    .bookacti-cart-item-activity .bapap-price-categories-quantities + .quantity { display: none !important; }

    Where do I put this? Im not very technical, so I hope you can explain this in a very simple way.

    Thank you in advance!

    Plugin Author yoancutillas

    (@yoancutillas)

    Hello, I cannot provide support for custom code, but if it can help, you can add any custom CSS in Appearence > Customize > Additional CSS.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Checkout Quantity buttons’ is closed to new replies.