• Resolved helven

    (@helven)


    Hi Tomas, after trying several different themes, I find I like MineZine the best ?? I really would like to use it on my sites, but I have only one thing that bothers me:
    When viewing a single post, only one image is displayed (featured), allthough I uploaded fx 5 images to the post(frontend posting).
    Is there any way i can get displayed all the images uploaded in a post? Maybe if I go buy the PRO version?, I′ll be happy to, if that can solve this issue.
    I suppose it is a theme issue, I use Users Ultra plugin to make the frontend posts, but looking through their support forum, it seem to be a theme issue… Hope you can help me.
    Thanks in advance. Helle
    PS! I′m a newbe in wordpress ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • Theme Author TT Themes

    (@tomastoman)

    Hi Helle,

    if you would like to display full posts on the Blog page, please select the option “Content” in “Theme Options > General Settings > Content/Excerpt Displaying”. If this is not what you are looking for, please post here a link to your website so I could view it.

    Best regards,
    Tomas Toman

    Thread Starter helven

    (@helven)

    Hi Tomas, thank you very much for your quick answer.

    Basically I want the single posts to display all the images uploaded to the post, and not only one image.

    You can take a look at my website here: https://planteboden.dk/
    The posts shown on the front page, all have more than one image uploaded, but only one image show when you view the single post.
    Hope it makes sence.. ??
    Thank you. Helle

    Theme Author TT Themes

    (@tomastoman)

    Hi Helle,

    have you please inserted the images into your posts using the Add Media button as described in this manual? If so, can you see the images in the Visual Editor window when you are editing the post?

    Best regards,
    Tomas Toman

    Thread Starter helven

    (@helven)

    Hi again Tomas, no I use a frontend post submission for users to add post (and images). The images are uploaded to the media library, I can see them there, but they don′t show up in post (only the one featured) but….

    I′ve been searching around here in wordpress forum, and I came across following code, to insert in single.php, and it seems to do the trick! You can take a look now: https://planteboden.dk/

    <?php $images = get_children( array(
    ‘post_parent’ => get_the_ID(),
    ‘post_type’ => ‘attachment’,
    ‘post_mime_type’ => ‘image’,
    ‘numberposts’ => -1
    ) );
    foreach ( (array) $images as $image ) {
    print wp_get_attachment_link( $image->ID,thumbnail,true );
    }
    ?>
    The thumbs do not show up as pretty, they are close side by side, if you have a trick to get a little space between them, I′ll be glad to know:) Thank you very much for your support and your great theme, it′s a 5 star ??
    Helle

    Theme Author TT Themes

    (@tomastoman)

    Hi again Helle,

    thank you for information. To get some space between the thumbnails, please put the following custom CSS into “Theme Options > Other Settings > Custom CSS”:

    #content .attachment-thumbnail {margin-right: 10px;}

    Best regards,
    Tomas Toman

    Thread Starter helven

    (@helven)

    Thank you, that was just what I needed! ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘To show more than one image in post’ is closed to new replies.