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;
}
Related
I have some problems on my woocommerce website. As you see on screenshot, the order data part is missing.
I disabled plugins which can make this happen. But nothing changes at all.
Screenshot:
Wordpress theme: Megashop.
Thanks.
div.panel#order_data {
display:block;
}
Adding this to admin_css.css file solved the problem.
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.
I want to change the way grouped products are shown by two different versions of wordpress.
case 1: Wordpress 4.1.5 running WooCommerce 2.3.11 with custom theme.
case 2: Wordpress 4.2.2 running WooCommerce 2.3.11 with default theme.
I need to display grouped products (child products) in a tabular form with quantity box before it just like image2. Where do i need to make a change so i could achieve same in case 1? Why it is showing View all Products button instead of listing the products itself?
any help will be appreciated.
You can read about WooCommerce's template overrides. If you aren't seeing the default with your theme that means that your theme is overriding it.
I can't be sure, but probably you need to go into your theme's woocommerce folder.... and find the grouped.php template in:
yourtheme/woocommerce/single-product/add-to-cart/grouped.php
and rename it to anything else grouped-backup.php so that WooCommerce will stop using it.
If that doesn't work, then it is perhaps being hidden by CSS or by Javascript. I don't have enoug information to know and you should contact your theme's author.
The issue is on Woocommerce permalink. I have added 7 menus to my woocomerce website, of which 5 of them contains the products, the others are HOME and CART. The problem is, I ain't aware of the permalink concept. Though, I tried to link my products to the respective page by changing permalink as
Custom Structure : http://example.org/%product_cat%/
Category base : products
and it works fine for the 5 products in the menu, but the problem occurs with my CART menu.
When I click it shows
"Page not found! Something has gone wrong. Sorry about that!"
I tried with Woocommerce settings, where I couldn't find any option to resolve this.
Hi try to go to Woocommerce setting and then on Checkout tab set the Cart page to your designated Cart Page that you created. (Same goes as your checkout page). Or try to go to permalink and save again.
What is the link that shows in the browser when you get the "Page not found" error?
If you go to Woocommerce Settings > Checkout, you will see a section called Checkout Pages. Make sure you set your cart and checkout pages to the correct page and save it. If that does not fix your issue, go to Settings > Permalinks and click save. Test again.
You also want to make sure you update your theme and plugins. If none of these options work, please send the url that shows when you get the "page not found" error.
The best way is to use a special plugin as well as you can save time and quickly manage URL’s on your WooCommerce store.
In my opinion, the best plugin for managing links to the WooCommerce platform is the WooCommerce Permalink Manager by Premmerce that allows you to configure URL generation strategy for your store. I used almost all similar plugins, but I can confidently say that it’s the best solution in this area. This plugin is completely free and has a friendly interface. So you can use this tool without any skill.
I hope It will help to you!
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;}