Instantly confirming a customer’s purchase is one of the best ways to improve the customer experience in your store. They will be able to access…
Continue ReadingBy default, the woocommerce product by button shows “Add to cart“, if you want to change the text with other any text. You can use…
Continue ReadingIf you want to skip cart and want to go direct checkout page, you can add following type URL as your button URL https://Your_site_URL/checkout/?add-to-cart=product_id For…
Continue ReadingTo make woocommerce product orders autocomplete you can use this code /** * Auto Complete WooCommerce orders. */ add_action( 'woocommerce_thankyou', 'custom_woocommerce_auto_complete_order' ); function custom_woocommerce_auto_complete_order( $order_id…
Continue ReadingTo get woocommerce product sale amount , you can use this shortcode add_shortcode( 'sales', 'show_sales_by_product_id' ); function show_sales_by_product_id( $atts ) { $atts = shortcode_atts( array(…
Continue ReadingTo add custom meta field in the product single page and save the field data then get value, Need to add this following code You…
Continue ReadingUsing the WooCommerce Variation Swatches plugin , you can add product variation attributes to your products that help users to choose and find expected products…
Continue Reading