• Resolved tsumugipo

    (@tsumugipo)


    Hello!
    I’m making a free request site and I don’t have the number.
    Please let me know if there is CSS etc. to erase the number on the checkout screen.
    If you have a plug-in, thank you.

Viewing 8 replies - 1 through 8 (of 8 total)
  • Hello,

    I want to erase the number of checkout screens

    Can you please provide more details and/or screenshots so we can understand what you are trying to do?

    I recommend https://snipboard.io for easily sharing screenshots – please follow the instructions on the page, then paste the URL in this chat. It works with Chrome, Firefox, Safari, and Edge.

    Thread Starter tsumugipo

    (@tsumugipo)

    thank you!
    I want to erase this “x1”.

    https://snipboard.io/F1xcig.jpg

    Luminus Alabi

    (@luminus)

    Automattic Happiness Engineer

    Hi @tsumugipo,

    It seems like you’re trying to hide the quantity of the product that the customer is “purchasing”.

    If that’s the case, you’re going to need to write some custom CSS in order to make that happen.

    If you can provide a link to your site, preferably a direct link to a product that one can test with, it’ll be easier for someone to assist you with what you need from a CSS perspective.

    Thread Starter tsumugipo

    (@tsumugipo)

    thank you!

    Click here for the site
    https://26g.me/

    The test product is here.
    https://26g.me/product/test/

    Mashi

    (@shaonback2)

    Hello @tsumugipo,

    You can add the following CSS code to your site’s Appearance 👉 Customize 👉 Additional CSS section to remove the quantity of product your prospective customer is purchasing.
    Please note, if a customer purchase more than 1 unit of the same product it will not show the quantity on the checkout page because of adding this CSS.

    .woocommerce-checkout .cart_item .product-quantity{
    display: none;
    }

    Cheers!

    Thread Starter tsumugipo

    (@tsumugipo)

    Putting it on additional CSS had no effect.

    But thank you for your reply!

    Hi @tsumugipo

    Please try replacing the code with the following:

    #content-in .cart_item .product-quantity {display: none !important}

    If that still doesn’t work, please clear your browser’s cache, and flush any active caching on your site.

    Best,

    Mirko P.

    (@rainfallnixfig)

    Hey @tsumugipo,

    Hope you’re doing well! The CSS above provided by @hegenberg should work for the checkout page.

    To hide × 1 on the order received page as well please try this CSS:

    .woocommerce-checkout .woocommerce-order-details .product-quantity {
    display: none;
    }

    If you’re interested in learning CSS we highly recommend using the free tutorials at w3schools. Here, you can find the basics of selectors (how to target the right element on the page), and properties (how to change the element on the page).

    I’m going to mark this as resolved. Feel free to start a new thread if you have any more questions.

    Cheers.

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

The topic ‘I want to erase the number of checkout screens’ is closed to new replies.