Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author teastudio.pl

    (@teastudiopl)

    I’m sorry but the plugin has no effect on the behavior of the rest of the elements of your website.
    The problem may be related with your styles.

    Plugin Author teastudio.pl

    (@teastudiopl)

    close

    Hi, I’m using WordPress 4.5.1 and want to display custom post type (product) but it’s not showing the single-product page instead returns index.
    My index

    <?php $args = array('post_type'=>'my_product','posts_per_page'=>1);
    			$product = new WP_Query($args);
    			if($product->have_posts()): while($product->have_posts()): $product->the_post(); ?>
    			<div class="media">
    				 <div class="col-sm-12 col-lg-7 arr">
    					 <div class="media-body" style="padding-right: 20%;">
    						 <h4 class="media-heading">
    							 <?php the_title();?>
    						 </h4>
    						 <hr class="gold-hr">
    						 <p>
    							 <?php the_excerpt();?>
    						 </p>
    						 <a href="<?php the_permalink();?>"><b>بیشتر بدانید</b> <i class="fa fa-chevron-left"></i></a>
    					 </div>
    				 </div>
    
    my single-product:

    <div class=”panel”>
    <div class=”panel-heading”><h4><?php the_title();?> </h4></div>
    <div class=”panel-body”>
    <?php if (have_posts()): while(have_posts()): the_post(); ?>
    <div class=”thumbnail”>
    <?php if(has_post_thumbnail()) { the_post_thumbnail(‘featured’); }?>
    <div class=”caption”>
    <h3><?php the_title();?></h3>
    <p class=”text-muted”>نویسنده: <?php the_author();?>    به تاریخ: <?php the_date();?></p>
    <p> <?php the_content();?> </p>
    </div>
    </div>
    <?php endwhile; endif; ?>

    </div>
    </div>
    any help.
    thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Single Product Page Problem’ is closed to new replies.