WooCommerce

Rename “Add to Cart” Button if Product Already at Cart

If Product already at WooCommerce Cart than change “Add to Cart” Button text and Displaying a different text instead of default “Add to Cart” text. So user can easily communicate with product. In Woocommerce it’s very easy. Woocommerce provide 2 filter hook for that. one filter hook for the Single Product page and another filter …

Rename “Add to Cart” Button if Product Already at Cart Read More »

Customize Checkout Page in Woocommerce

Hide Billing field on Checkout Page Woocommerce # Hide Shipping field on Checkout Page Woocommerce # Reorder Billing fields on Checkout Page Woocommerce # WooCommerce version 2.6 and below function reorder_wc_billing_fields($fields) { $order = array( “billing_first_name”, “billing_last_name”, “billing_company”, “billing_address_1”, “billing_postcode”, “billing_city”, “billing_email”, “billing_phone” ); foreach($order as $field) { $ordered_fields[$field] = $fields[“billing”][$field]; } $fields[“billing”] = $ordered_fields; …

Customize Checkout Page in Woocommerce Read More »

Add additional custom field to WooCommerce checkout in wordpress

In our today Woocommerce related post you will get one of the most useful ready made script which you should directly used in your website if you want to implement functionality like track Woocommerce Order as Buyer customer from where hear about you and become your customer. Look at below screenshot and you get clear …

Add additional custom field to WooCommerce checkout in wordpress Read More »

WooCommerce set minimum cart value limit and add surcharge if Cart value low

In WooCommerce base online shopping site Some time you or your client would like to set minimum cart value, and add additional surcharge in Cart total if Customer Cart value ( sum of added Item into cart ) is  not equal more than minimum limit. # add_action( ‘woocommerce_cart_calculate_fees’,’ls_woocommerce_custom_surcharge’ ); function ls_woocommerce_custom_surcharge() { global $woocommerce; if …

WooCommerce set minimum cart value limit and add surcharge if Cart value low Read More »

php – WooCommerce: Only allow products from the same category in WordPress

Are you looking something to validate your Woocommerce Cart and allow users to add only same category products into cart. if they going to add other category products into cart than show them message and prevent to add other Category products into Cart. Than im sure following code very useful for you. you just have …

php – WooCommerce: Only allow products from the same category in WordPress Read More »

Scroll to Top