Posts

  • How To Create Custom Table List In WordPress Admin Page

    Introduction In this tutorial, you will learn how to add an admin table which is similar to admin posts or pages or comments table list Our table list is a merged list of all searchable post types post which are in draft mode i.e. not yet published or still work in progress posts Based on this tutorial you will learn how to implement the following features Search box Filter dropdown (Post type) Bulk action (Trash multiple posts at a time) Action quick links (Each post have edit, trash & view) Pagination Our custom table is a child class of the…

    read more

  • How To Limit The Cart Quantity Of Discounted Product

    Introduction In this tutorial, you will learn how to control the quantity of the specific set of products based on a logical condition Here in this tutorial, we considered the condition if the discounted product added more than our defined quantity it will notify/alert the end-user but once you understand the concept the same can be applied in different scenarios with little modifications Through this process, you will learn the following from the technical/development side woocommerce_add_to_cart_validation filter hook woocommerce_update_cart_validation filter hook wc_add_notice WooCommerce notice function wc_get_product function to get product instance get_regular_price product instance method get_sale_price product instance method generate_cart_id…

    read more

  • How To Add Quantity Input In Shop Page

    Introduction This tutorial will teach you how to add a quantity input text box with the number type for each product in the shop page Something like this When a user clicks the add to cart ajax button instead of adding one quantity of the product it will add the quantity present in the input box to the cart part page Rendering Input Quantity Box To render the quantity input box we are using the filter woocommerce_loop_add_to_cart_link You can find the official WooCommerce source code in GitHub where the filter hook is created Here is the code snippet for rendering…

    read more