My WooCommerce cart totals table is doubling over? - woocommerce

Here is the issue:
http://i59.tinypic.com/ljgwp.jpg
As you can see, the cart totals doesn't look right at all. Everything else in my WooCommerce platform work perfectly. I don't know what to do or where to change it. I can't seem to find the CSS files.
How could I put the shipping and handling, the subtotal in borders so that it looks neat?

Related

Show a product price based on product ID in WordPress

This might be a stupid question, but have searched quite a lot and have still not found a way for this.
I use Wordpress, WooCommerce and Elementor on my webshop.
I update my prices about once a month. A lot of places I have a price written as texteditor or headline, and want to change that to be price coming from system.
I have tried some different ways, but so far I could not manage to make it work.
Any ideas?
I have tried use product lists, I can get the price based on product ID, but cannot style it.
I have tried with CSS shortcode, but could not make it work.
There is Product Price fields in Wordpress, but cannot make them work.

How to Hide This from Woocommerce Order Page?

Does anyone know how to hide the Stripe fees from the Woocommerce order page in the back end. It's displayed under the total the customer pays for an item and it just repeats the total again along with the Stripe fee. It feels quite unnecessary and I was hoping a simple css code would hide it. Here is a screenshot of the part I'm trying to hide/remove: https://prnt.sc/A4VmaJ-Pxc_u
I'm not the best with CSS so the simpler the better really, thank you very much in advance.
Haven't tried anything yet, am hoping a simple CSS code will resolve this.
You can use filters to hide. Add following filters in your functions.php
//Hides the Stripe fee
add_filter( 'wc_stripe_hide_display_order_fee','__return_false');
//Hides the net total of the transaction without the charges of Stripe.
add_filter( 'wc_stripe_hide_display_order_payout','__return_false');

WooCommerce Change Subtotal String on Product Page

How can I change the Subtotal text on the WooCommerce product page (not the cart page). Screenshot attached, I'd like to change 'Subtotal' > 'Subtotal (GST Inclusive)'
Screenshot of Subtotal
Thanks!
In regular single product page of Woocommerce with default themes (like twentytwenty), there is no Subtotal inside it.
I believe, in your case, the Subtotal is shown by a plugin or theme function. So, you need to check the custom code that shows this Subtotal area. After making some research, please provide us your work related to issue and make clear your question.
Additionally, you can use translate plugins or plugin named String Locator to easily solve this issue.

woocommerce variation/add to cart not showing

so, I have coded a wordpress theme and integrated woocommerce with it. It has used only simple products for some time, and I was using a simple product to test codes, as it works fine. But I recently added a variation product and then, the add to cart button also gone ( variation select dropdown is there, but values are not bonded to drop down.
If anyone can give me a hint, showing what I have done wrong, that would be a big favor.
I just got the same issue and it solved when I manually entered a price for the variable products. Unfortunately I didn't find out yet why I have to enter it, even for the same value. But it fixed it.
Hope it helps !

WooCommerce - Variations

I am using WooCommerce in my project and would like to display variations in a similar style like http://www.e-rudy.com/en/products/detail/SN220724R1. They have a tab called "other colors". Is it possible to do that in WooCommerce?
Yes, it is possible, but you will have to add a custom template for that to be incorporated in the product tabs. In that template you should pull all the variations information corresponding to the main product.
If you don't do it as parent->variations products, you can still link them in the backend and show those in the template. In short, it's doable but you or someone else will have to code that part. It might also be possible to do it with wp-types views, but I have never used it so I can't comment.
Hope that helps to get you started.
Like this https://woocamp.com/product/classic-wordpress-shirt/ ?
When you click on the additional sizes, nothing visually happens. But the size is registered as a variation. Now, when you select a different color, the image actually changes and the image switches as well!
I did that using WooCommerce Variations and Swatches

Resources