Forum Replies Created

Viewing 1 replies (of 1 total)
  • `I have write this code in my index.php but product image and price dose not showing

    please help me

    <div class=”product-carousel”>
    <?php
    global $post;
    $args = array( ‘posts_per_page’ => 5, ‘post_type’=> ‘product’);
    $myposts = get_posts( $args );
    foreach( $myposts as $post ) : setup_postdata($post); ?>
    <div class=”single-product”>
    <div class=”product-f-image”>
    <img src=”<?php the_post_thumbnail(‘product-thumb-2’); ?>”>
    <div class=”product-hover”>
    <a href=”<?php the_permalink(); ?>” class=”add-to-cart-link”>
    <i class=”fa fa-shopping-cart”></i> Add to cart</a>
    <a href=”<?php the_permalink(); ?>” class=”view-details-link”>
    <i class=”fa fa-link”></i> See details</a>
    </div>
    </div>
    <h2><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></h2>
    <div class=”product-carousel-price”>
    <ins><?php echo $price_html; ?></ins>
    </div>
    </div>
    <?php endforeach; ?>
    </div>

Viewing 1 replies (of 1 total)