“add to cart” links css class “ajax_add_to_cart” doesn’t show in woocommerce in widget sidebar

I create woocmmerce widget that will create loop by product category. Product loops result should as much as same woocommerce default content-product.php file. And everything is fine within loop ( attributes, link etc ) except css class. I can’t figure out actually where i messed up, but i guess the main problem is within $defaults variable or in woocommerce_loop_add_to_cart_args filter. Please someone help me.

How do I make my terms for each product display via foreach loop? (woocommerce)

This is my current loop to display my products via woocommerce. When I do print_r($category_array); It returns the array, but when I try to use a function to call it so I can do what I want to with the data, it makes and my entire screen doesn’t display after the loop. Maybe it’s a mistake in my function? Still very new to woocommerce and wp_loops. Thank you

New field on checkout is shown but it’s not saved on the order details

I am having a problem adding a custom field on the checkout of WooCommerce, I am using this code: add_filter('woocommerce_checkout_fields','custom_override_checkout_fields'); function custom_override_checkout_fields($fields) { $fields['billing']['billing_colonia'] = array( 'label' => __('Colonia', 'woocommerce'), 'placeholder' => _x('', 'placeholder', 'woocommerce'), 'required' => true, 'class' => array('form-row-wide'), 'clear' => true ); $fields['shipping']['shipping_colonia'] = array( 'label' => __('Colonia', 'woocommerce'), 'placeholder' => _x('', … Read more