Set minimum Quantity for Woo Commerce Product
We can set minimum quantity as by default for woo commerce product using following code We have used the Plugin Min Max Quantity plugin...
Adding a new Tab on Product detail page in woo commerce
/** * Add a custom product data tab */ add_filter( 'woocommerce_product_tabs', 'woo_new_product_tab' ); function woo_new_product_tab(...
Change Placeholder and Label of Shipping Address in WooCommerce
function uwc_new_address_one_placeholder( $fields ) { $fields['address_1']['placeholder'] = 'Address Line 1'; return $fields; }...
Custom Cron Schedules on a Plugin
<?php /* Plugin Name: Mustek WooCommerce Stock Updater Plugin URI : https://api.mustek.co.za Description: This plugin is used to update...
Add custom fields under Billing Fields and save in Order Meta
function comcast_woocommerce_billing_fields($fields) { $fields['gx_name'] = array( 'label' => __('Billing Contact for GXS',...
Change Placeholder of Order Notes on Woo Commerce
add_filter('woocommerce_checkout_fields', 'comcast_woocommerce_checkout_fields'); function comcast_woocommerce_checkout_fields( $fields )...
Add new value in Additional Information tab on Woo Commerce Product Details Page
We used a minimum order quantity plugin and we need to show minimum order quantity on additional information tab along with product...