Only the featured image shows up at the post page

This topic contains 13 reply and 4 voices, and was last updated by Tareq Hasan 10 years, 9 months ago
Viewing 13 Posts - 1 through 13 (of 13 total)
Author Posts
May 24, 2013 at 2:46 pm 4149
Tareq Hasan Dear Support, I have User Frontend Pro, but the User Frontend had the same bug before. A User creates a post > the post created successfully, and all data is there at the back end. When you click on the post, then only the featured image is showing up. This doesn't happen with all the posts, just with a few. Examples: Happened with this post: http://www.mypetpassedaway.com/darcy/ Didn't happen with this post: http://www.mypetpassedaway.com/fanny/ Thank you and kind regards, Adrian
May 24, 2013 at 9:48 pm 4164
Mahi Mahi

if both posts are same type then it sounds funny !

Possible to allow me admin access for testing ? You can reply as private with login details.

Thanks.

May 24, 2013 at 9:51 pm 4165
csapoa csapoa

Sure! Thanks. Let me know your email!

Adrian

May 24, 2013 at 9:52 pm 4166
Mahi Mahi

support at wedevs.com

May 25, 2013 at 12:26 am 4179
csapoa csapoa

I have sent the login details.

May 25, 2013 at 10:47 am 4188
Mahi Mahi

You may forgot to add loin details . We only received your site url.

May 27, 2013 at 7:53 pm 4249
csapoa csapoa

Hi Mahi, I have sent you the test login information, did you receive it?

Thanks,
Adrian

May 30, 2013 at 3:54 pm 4342
Mahi Mahi

Hello Adrian,

Sorry, we didn’t receive it. Can you please resend ?

May 30, 2013 at 5:26 pm 4356
csapoa csapoa This reply has been marked as private.
June 4, 2013 at 4:37 pm 4545
csapoa csapoa This reply has been marked as private.
June 4, 2013 at 10:40 pm 4554
Tareq Hasan Tareq Hasan

Do you know how to regenerate the problem?

June 4, 2013 at 11:33 pm 4563
paperweight paperweight

I use code the below in the single.php template to first display the featured image and then to display any other images attached to the same Post.

<!-- this shows the featured image-->
 <?php 
 if ( has_post_thumbnail()) {
   $large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), 'large');
   echo '<a href="' . $large_image_url[0] . '" title="' . the_title_attribute('echo=0') . '" >';
   the_post_thumbnail('thumbnail');
   echo '</a>';
 }
 ?>

<!-- this shows any other images-->
<?php
$images = get_post_meta( $post->ID, 'additional_images' );
if ( $images ) {
    foreach ( $images as $attachment_id ) {
        $thumb = wp_get_attachment_image( $attachment_id, 'thumbnail' );
        $full_size = wp_get_attachment_url( $attachment_id );
 
        printf( '<a href="%s" title="' . the_title_attribute('echo=0') . '">%s</a>', $full_size, $thumb );
    }
}
 ?>
June 16, 2013 at 6:47 pm 4941
csapoa csapoa

Hello,

Any news with this issue?

Thanks a lot!

Adrian

June 16, 2013 at 7:26 pm 4942
Tareq Hasan Tareq Hasan

I asked a question above, you didn’t answer.

Viewing 13 Posts - 1 through 13 (of 13 total)