Woo commerce checkout and product page

i need some help with a few minor things on my woo commerce pages

  1. how can i get rid of the shadows on the product page and check out and billing page? see screen shot

  2. how can i add a blank text box so people can write their group name and date on the product page?

  3. How to change the color to another red on the product page for the $75 text

  4. how can i make the “X” bigger on my cart page? So people can easily delete products. The “X” is currently very tiny

  5. Make “basket total” just say “Total” on cart page

  6. make “update basket” button on cart page say “update”

  7. How to get rid of “or check out with pay pal” on the cart page

Hello Justin,

Thanks for posting in!

1.) To get rid of the shadows on the product page and check out and billing page, please make use of this code:

.single-product .entry-wrap,
.woocommerce-checkout .entry-wrap,
.woocommerce-cart .entry-wrap{
    border: none;
    box-shadow: none;
}

2.) Adding a blank text box so people can write their group name and date on the product page will require custom modifications to the theme which is beyond the scope of our support. You might want to check out this links instead:


3.) The price color is the same as the links color. You can change it in X > Theme Options > Typography > Site Links. There should be a color picker that you can use to select the color.

4.) To make the “X” bigger on my cart page? So people can easily delete products, please make use of this code:

td.product-remove a{
    font-size: 40px;
}

5.) and 6.) It goes with the translation of WooCommerce. You might need to check this out: https://docs.woocommerce.com/document/woocommerce-localization/

7.) To remove the check out to paypal button, please make use of this code:

.wcppec-checkout-buttons.woo_pp_cart_buttons_div {
    display: none;
}

Hope this helps.

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