• Resolved steve02a

    (@steve02a)


    Here is the site I’m working on: HERE

    I’m using the plugin to populate posts of a certain category. This category gets auto-populated from an RSS Feeder (or fetcher).

    I’ve temporarily a added the category as a menu item, which isHERE

    Images show fine – as expected by my RSS Feeder plugin.

    However, when I use this plugin and pop in the shortcode on a page [ic_add_posts category=’rrfashion’] (rrfashion is the slug name for my post category)

    Check out what it looks like on this page HERE

    The category shows images fine and the entire aticle. But this plugin strips out most of the text and images. How can I fix this?

    http://wordpress.org/plugins/posts-in-page/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Eric Amundson

    (@sewmyheadon)

    Howdy steve02am,

    Check this thread for your answer. Look for the section that says:

    1.) How can I display the full posts, including pictures, into the page? I do not want an excerpt.

    Thread Starter steve02a

    (@steve02a)

    Hey Eric – I read that thread and it’s a bit crazy. However, I did copy the posts_loop_template.php into the root folder of my template (/wp-content/themes/Nexus). I did change the php file since it had all that “twentynine” in there to “Nexus” (my theme name) – but I’m still not seeing the entire article nor images. Did I miss something in that php file?

    Plugin Author Eric Amundson

    (@sewmyheadon)

    steve02a,

    Sorry about that. Maybe this post will help:

    http://wordpress.org/support/topic/not-showing-full-text?replies=8

    To show the full post using the post_loop_template.php file, you’ll need to open it and look at line 11:

    <div class="entry-summary">
    	<?php the_excerpt(); ?>
    </div>

    Change to:

    <div class="entry-summary">
    	<?php the_content(); ?>
    </div>
    Thread Starter steve02a

    (@steve02a)

    Outstanding! Thank you Eric! Works like a charm! Perfect solution! thank you, thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Where are images and text??’ is closed to new replies.