/home/nbcgowuy/kdosheleads.com/wp-content/themes/marketo/inc/shortcode/style/product/style2.php
<div class="row no-gutters product-block-category">
    <?php
    $args['posts_per_page'] = $product_count;
    if($xs_query->have_posts()):
        while ($xs_query->have_posts()) :
        $xs_query->the_post();
        $xs_product = wc_get_product(get_the_id());
        $img_link = xs_resize( get_post_thumbnail_id(), 120, 120,true );
    ?>
        <div class="col-md-3">
            <?php if(!empty($img_link)): ?>
            <a class="xs_product_img_link" href="<?php echo esc_url(get_the_permalink()) ?>">
                <?php
                    echo wp_get_attachment_image(get_post_thumbnail_id($xs_query->ID), array(120, 120), false, array(
                    'alt'  =>  get_the_title()
                        ));
                ?>
            </a>
            <?php endif; ?>
                
            <a class="product-title" href="<?php echo esc_url(get_the_permalink()) ?>"><?php echo get_the_title(); ?></a>
            <span class="price">
                <?php echo marketo_return($xs_product-> get_price_html());?>
            </span>
        </div>
        <?php endwhile; ?>
    <?php endif; ?>
    <?php wp_reset_postdata(); ?>
</div>