No prices in woocommerce cart and checkout - wordpress

Managed to not display prices in my product page.
But does anyone know how to remoce pricing from the cart and checkout?
Or should that all be custom css tweaks? I am looking for a hook but can't find it. It is a website to order stuff and pricing is not availible online.
Hopefully someone can help me out

I've been there! You will need to inspect every price element on the site and then remove then from the theme's php code or turn it's css classes invisible like this:
span.price{display: none;}

Related

Woocommerce loop product images

In Woocommerce products page, iwant to display only the image of the product; no "add to cart" and no "more infos". I found how to remove them via CSS but i am not able to remove the frame under the image where those informations are placed.
this is the problem...
Has anyone ever had this problem and solved it? Thanks!
WooCommerce has lots of different hooks for their shop page but seems none of them could solve my problem.

WooCommerce Checkout Total Duplication Bug

Is there anyone that could help me with this duplication bug? It seems that the order total is duplicating on my woocommerce store checkout page. It is always showing the checkout total as it would be if the customer chose in store pickup even if they choose shipping as their option. I'm looking for a way to disable the elements circled in red on my checkout page.
I went to the template file in my wordpress backend, but am unsure how to edit this. I am using the Flatsome Child Theme for woocommerce.
Element I need to remove is linked here
Do you have a plugin for checkout page? if you don't know which plugin is affecting to checkout page you can try disable other plugins. Other way is you can try to adding custom css. For example:
.class-name{
display:none;
}
If the code doesn't work you can try this:
.class-name{
display:none !important;
}

Stay on shop page when add to cart

I'm using elementor pro, woocommerce, ocean wp theme and the elementor custom skin add-on.
I want to build an ecommerce website without products pages but only a shop page, in order to have all my products on the shop page with add to cart button and a quantity selector.
For that, I used the loop system and it works quite well.
I only have 1 issue : when you add a product to the cart, it automaticaly redirects you to the product page.
I don't want to use the products pages. I would like to disable them.
I want customers to stay on the shop page for further shopping. Only access to cart page or checkout page when they click on the add to cart menu.
If it's possible to do that without coding it's best, otherwise, please tell me how to do if you can :)
thank you!
This issue can be fixed if you click on the tick mark named as " Redirect to the cart page after successful addition". You will find it in Woocommerce > Settings > General.
This will help customers to go to the cart page after they add something to the cart. But I don't know how to redirect customers to the shop page after they add to cart something. I am also asking for that help.
See the screenshot:

Wordpress Woocommerce texts too close to each other

I have built my online shop in Wordpress, theme Ellie, and using Woocommerce plugin.
Issue is that the texts "View Cart" and "Checkout" are too close to each other in 2 different places: Footer and Cart widget on Shop page. Something wrong there.
Shop page
Footer
https://senjacosmetics.com/shop/
Really happy if you can help! I tried to research this but didn't find anything. I'm not a developer so cannot proceed on my own.
This is just small css issue. You can easily solve it by adding some css rule.
You can add following css rule in your theme's style sheet or if your theme supports custom css, then via that feature.
.woocommerce-mini-cart__buttons a.checkout{margin-left:15px;}
"woocommerce-mini-cart__buttons" is the class assigned to 'p' tag which contains both the links. "checkout" is one of the class assigned to the 'Checkout' link.
You can change the value of '15px' to anything you want depending on how much space you want between the two links.
Following is screenshot for your reference. I added the css rule to checkout link in developer console.
Hope this helps.

Wordpress theme: where can I fix cart and checkout design?

I have a basic wordpress website with the woocommerce plugin and tesseract theme, and I want to know where I can fix the design related to following issues:
On the cart page the dollar sign for the totals for a product are on a different line than the number. The same thing happens on the checkout page.
Some boxes are gray and some are white which looks nice, but on the checkout page, some of the boxes that should be grey are white, making it look bad. Can anyone tell me where in the code I can fix this?
The two pages in question are the cart and checkout pages. I would post code, but the problem is that I don't know where to find the specific section from where to fix the issue.

Resources