Is there a solution to change the order of the cart columns without copying the file in my own template folder? The reason is, that I don’t want to overwrite such a crucial template file. Unfortunately, the order is hardcoded as table in the file cart.php and not inside a function. Is there in this case any “clean” way to
Tag: woocommerce
Remove checkout notice from plugin Points & Rewards in WooCommerce
I’m using the WooCommerce plugin “Points & Rewards” which displays two notices in my checkout. I found the code of the notice generation in the plugin: public function __construct() { …. …
Auto change order status from hold-on to processing in Woocommerce
I would like to change every order from woocommerce with the status ‘HOLD-ON’ to ‘PROCESSING’ with php. I already tried to write a function in the functions.php file but I failed. How can I auto …
Add a sortable custom column in Woocommerce Admin Orders list
I’ve added a custom column to the “Orders” section of WooCommerce for the shipping zip code. The column and its values appear correctly. What I cannot figure out is how to make the sorting of this …
Remove “estimated for {country}” text after tax amount in Woocommerce checkout page
I set up a 19% standard tax amount in my Woocommerce Online-Shop. Unfortunatley – now there is a text “estimated for Germany” behind the (includes 20,12 €… part below the total-amount in my checkout page (see image below). I guess it displays the text because the calculated tax amount has a lot of decimals. HTML This is not the case
Add custom checkout fields below the terms and conditions in Woocommerce
I have built an e-commerce site using Woocommerce. I would like to add two more check boxes below the terms and conditions. I have searched everywhere for a working solution and the only thing that I found is a commercial plugin. How to add custom checkout fields (2 checkboxes) below the terms and conditions programmatically? Location of the terms and
Set back to product category in Woocommerce Product Page
I want to set a back button on my product page (to the product category). I cant manage to get the category and echo on the page. I have tried to use this code and it doesn’t work… The first problem I have whit this code is what I have no option to set the parent category for the product.
Set specific Products to be shipped only in specific countries in WooCommerce
How can I set certain products to be shippable to only certain countries in Woocommerce? For example, during checkout, if Country is not USA, I want to show the message “We cannot deliver to your country.” Answer This can be done mainly with a custom function hooked in woocommerce_package_rates filter hook. The code below, will allow you to disable shipping,
Customizr Pro editing menu issue with some Woocommerce custom code
I attempted to ask Customizr support what my code was running into, but they basically said they do not support 3rd party plugins such as Woocommerce I needed to restrict the payment types based on what folk were buying on the site. For example, the Check payment type is only available for people buying lessons. Here is the code that
Add value to custom column on customer’s orders page in woocommerce
I was trying to add new column to the orders page of the customer’s recent orders table, the new column should show the details of the product like product name & description. Tried different …