thilipdonmax29
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
Hello Team,
Any Update?Hi Tamrat A,
Coupon code is working now but have problem on post_meta and order_meta table its lot of duplication data, we need to where is coming and how to prevent that.
https://prnt.sc/hllIagvJOuY9
https://prnt.sc/IqktWwadF7brHi Madison,
I refactor the wp_query but I am getting only first taxonomy only
$args = array( 'post_type' => 'product', 'posts_per_page' => -1, //'paged' => $paged, 'tax_query' => array( array( 'taxonomy' => 'pa_size-mm', 'field' => 'slug', 'terms' => array('10','8-24-x-7-82'), ), ) ); $loop = new WP_Query( $args ); $product_count = $loop->post_count; while ( $loop->have_posts() ) : $loop->the_post(); global $product; global $post; $test = $loop->post->ID; echo $test; echo "<br>"; endwhile;
Thanks
Forum: Plugins
In reply to: [Post Types Order] Post type order HooksHi Maya,
Pls ignore above message, hooks working properly
thanks for your support.
Forum: Plugins
In reply to: [Post Types Order] Post type order HooksHi Maya,
Thank you for your support, Above hooks are working properly but our problem is when I call hooks that function call many times for example if I have five posts it should call five times
add_action( 'pto/save-ajax-order', 'custom_order_post', 10, 3 ); function custom_order_post() { echo "action working - "; //trigger action completed do_action('PTO/order_update_complete'); }
My Response: https://prnt.sc/q2sxH9T9ZXTN
Forum: Plugins
In reply to: [WP Search with Algolia] After update the Plugin Version 1.7.0 – 1.8.0Yes working now, i don’t know what happend
- This reply was modified 3 years, 10 months ago by thilipdonmax29.
Viewing 6 replies - 1 through 6 (of 6 total)