• I have query_post show item product

    
    <?php
    $hbox = array(
    	'posts_per_page' => $pn,
    	'post_type' => 'product',
    );
    query_posts( $hbox );
    $loop = new WP_Query( $hbox );
    ?>
    <?php if (have_posts($loop->have_posts())); { ?>
    <?php while (have_posts($loop->have_posts())) { $loop->the_post(); global $product; ?>
    ...
    <?php echo do_shortcode('[yith_quick_view]'); ?>
    ....
    <?php } ?>
    <?php } wp_reset_query(); ?>
    

    But don’t show button yith_quick_view?

    Any idea form help me.

    Thanks

Viewing 1 replies (of 1 total)
  • Plugin Author YITHEMES

    (@yithemes)

    Hi,
    this is why the shortcode [yith_quick_view] is not currently present on this version. Anyway the developer will add this on next update.

    Regards.

Viewing 1 replies (of 1 total)

The topic ‘Query_post YITH WooCommerce Quick View not working’ is closed to new replies.