Leave Us A Message

    Our Address

    Support : +8801952-069608

    Email : minikidsworld2050@gmail.com

    Opening Hours

    Monday :
    Tuesday :
    Wednesday :
    Friday :
    Saturday :
    Sunday :
    9 a.m – 6 p.m
    9 a.m – 6 p.m
    9 a.m – 6 p.m
    9 a.m – 6 p.m
    9 a.m – 4 p.m
    Closed

    Careers

    At Mini Kids World, we value your privacy and are committed to protecting your personal information. This policy explains how we collect, use, and safeguard your data when you visit our website or interact with our services.
    // Replace Add to Cart text and make it go directly to checkout add_filter( 'woocommerce_loop_add_to_cart_link', 'mk_replace_add_to_cart_button', 10, 3 ); function mk_replace_add_to_cart_button( $button, $product, $args ) { // āϝāĻĻāĻŋ āĻĒā§āϰ⧋āĻĄāĻžāĻ•ā§āϟ āĻ¸ā§āϟāĻ• āĻĨāĻžāϕ⧇ āĻāĻŦāĻ‚ simple product āĻšāϝāĻŧ if ( $product->is_purchasable() && $product->is_in_stock() && $product->is_type( 'simple' ) ) { $checkout_url = wc_get_checkout_url(); // āύāϤ⧁āύ āĻŦāĻžāϟāύ āϤ⧈āϰāĻŋ $button = sprintf( 'āĻ…āĻ°ā§āĻĄāĻžāϰ āĻ•āϰ⧁āύ', esc_url( $checkout_url ), esc_attr( $product->get_id() ) ); } return $button; }