Archived topic
Woocommerce and Generatepress
11 replies · Started by Matthieu on November 3, 2020
Hello I have installed woocommerce via generatepress, for questions related to the personalization of the product pages / cart / payment page, am I in the right place? (Example remove the quantity option)
Hi there,
That depends on the elements you are looking to modify.
For example, the quantity button can be removed using the customizer option:
https://docs.generatepress.com/article/woocommerce-overview/#single-product
The cart and checkout page is generally completely handled by WooCommerce so you will likely need to check with their support.
Thanks for checking :)
Unfortunately this does not completely disable the choice of quantity ...
I also wanted to change the borders of the checkout page and remove items like the "subtotal" in the "cart" page
Unfortunately this does not completely disable the choice of quantity …
Can you link me to the page in question?
yes
Ahh that's right.
GP's option only turns the WooCommerce quantity option into a button and does not remove it.
You can try this CSS to remove it:
.woocommerce .quantity .qty {
display: none;
}
As for the cart page, try this CSS:
.woocommerce table.shop_table thead {
display: none;
}
.woocommerce table.cart td.actions, .woocommerce-page #content table.cart td.actions, .woocommerce-page table.cart td.actions {
display: none;
}
Please do keep in mind that all of these are elements coming from WooCommerce so the question should be handled by their support team :)
Wow that's perfect thank you very much! Luckily you're here!
No problem :)
Hi!
I contacted the woocommerce support for the modifications of the cart and checkout pages, they tell me that they offer no development services for the customizations related to the free WooCommerce plugin and that I have to hire a developer ... ☹️
Do you think you could help me with my small changes ? 😃
Thanks
Hi there,
create a new topic for the specific change you require and we will take a look.
It works thanks !
No problem :)