Sku on page

2.how can i get rid of the sku and category on the product page in woo commerce?
2. on the product page how can i get rid of the cart icon that is in the button?
3. How to get rid of the field that lets you type in a quantity on the product page?
4. center the check out form on the billing page
5. How to get rid of the blue notification on the check out page saying it was added to basket
5. Can you delete products from the check out page?

Hey Justing,

Thanks for writing in!

1.) To get rid of the sku and category on the product page, you can make use of this code:

.product_meta {
    display: none;
}

2.) To get rid of the cart icon that is in the button, you can make use of this code:

.woocommerce .button.product_type_simple:before, 
.woocommerce .button.single_add_to_cart_button:before {
    display: none;
}

3.) To get rid of the field that lets you type in a quantity on the product page, you can make use of this code:

.woocommerce .quantity .input-text.qty.text{
    display: none;
}

4.) To center the check out form on the billing page, you will need to edit the page and change the page template to “Layout - Fullwidth”. To know more about the different page templates in the theme, please check this out: https://theme.co/apex/forum/t/features-page-templates/50/1

5.) To get rid of the blue notification on the check out page saying it was added to basket, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

.woocommerce-notices-wrapper {
    display: none;
}

6.) You cannot delete the products from your checkout page. You can only do it in the cart page. Please do not assign the cart page as you check out page. They must be a separate page so that you will have the option to delete those products when you are in the cart page.

Hope this helps.

Thanks for all the help, :slight_smile:

You can see in the screen shot that it isn’t centered in the page if that helps

Hey Justin,

Please follow the solution in #4.

Thanks.

got it thanks!

You’re welcome!
We’re glad we were able to help you out.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.