Title: jnavarroc's Replies | WordPress.org

---

# jnavarroc

  [  ](https://wordpress.org/support/users/jnavarroc/)

 *   [Profile](https://wordpress.org/support/users/jnavarroc/)
 *   [Topics Started](https://wordpress.org/support/users/jnavarroc/topics/)
 *   [Replies Created](https://wordpress.org/support/users/jnavarroc/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/jnavarroc/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/jnavarroc/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/jnavarroc/engagements/)
 *   [Favorites](https://wordpress.org/support/users/jnavarroc/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Shopera] Posts are not showing](https://wordpress.org/support/topic/posts-are-not-showing-2/)
 *  [jnavarroc](https://wordpress.org/support/users/jnavarroc/)
 * (@jnavarroc)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/posts-are-not-showing-2/#post-6754408)
 * Hi Cohhe,
 * I have investigated it a bit further.
    Changing excerpt management in content
   pages solved the issue:
 *     ```
       $myexcerpt = get_the_excerpt();
       if( '' == $myexcerpt ) {
       	$post_content = __( 'No excerpt for this post.', 'shopera' );
       } elseif ( $post_grid == false || is_single() ) {
       	the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'shopera' ) );
       } else {
       	if ( strlen( $myexcerpt ) > 140 ) {
       		$post_content = substr($myexcerpt , 0, 140) . '..';
       	} else {
       		$post_content = $myexcerpt ;
       	}
       	echo '<p>'.$post_content.'</p>';
       }
       ```
   
 * Just added `$myexcerpt` variable.
 * Regards,
    Javier
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Shopera] Posts are not showing](https://wordpress.org/support/topic/posts-are-not-showing-2/)
 *  [jnavarroc](https://wordpress.org/support/users/jnavarroc/)
 * (@jnavarroc)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/posts-are-not-showing-2/#post-6754407)
 * Hi Cohhe,
 * I have exactly the same issue.
    Did you manage to find a solution? Can you post
   it here?
 * Many thanks,
    Javier

Viewing 2 replies - 1 through 2 (of 2 total)