Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi – cheers for the info – I can see how I could implement it – just needs a bit of tweaking with my stylesheet. Will give it a go later tonight. Again cheers for the help

    Hi there,

    Love the site – nice and clean. Just have to ask as you mentioned it in your message. I see that you have headers images for weblog, comments etc. How did you code it so you didnt have any validation issues? I have done a similar but alas I have issues with my span divs. Could you give me any ideas/help? Any would be appreciated?

    The site is https://www.digitalencore.co.uk

    Thanks for any help in advance

    Thread Starter digitalencore

    (@digitalencore)

    also getting the following info when looking in the dashboard under manage>files

    Warning: is_file(): Stat failed for /home/kevi0007/public_html/wp-content/plugins/post-image.php (errno=13 – Permission denied) in /home/kevi0007/public_html/wp-admin/templates.php on line 60

    Browsing wp-content/plugins/post-image.php

    Oops, no such file exists! Double check the name and try again, merci.

    even though that file is there

    Forum: Plugins
    In reply to: Recent Posts as images

    Am also looking for a similar thing for sidebar as well as for main blog section. Have tried post-image etc but to no avail – I think this is partly due to me not totally understanding php – so if there is a dummies guide or something that would be great

    Forum: Plugins
    In reply to: Help with PostImage plugin

    Would also like to know how to use this plugin – am a total noob when it comes to php.

    Am also trying to implement this feature into a sidebar for https://www.digitalencore.co.uk.

    as i want an image to show and then a except in the column for my review section.

    am currently using this code in my sidebar after installing post image

    <div id=”side_two” class=”side”>

    <h3>Reviews</h3>

      <?php if (have_posts()) : ?>
      <?php while (have_posts()) : the_post(); ?>

      <!– Begin Post Container –>
      <div class=”post” id=”post-<?php the_ID(); ?>”>
      <div class=”entry”>

      <!– Begin Thumb Container –>
      <div class=”postthumb”>“><?php post_image(”, true, true); ?>
      </div>
      <!– End Thumb Container –>
      <div class=”posttext”>
      <h3>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h3>
      <?php the_excerpt(); ?>
      </div>
      <div class=”clear”></div>
      </div>
      </div>
      <!– End Post Container –>
      <?php endwhile; ?>
      <?php else : ?>
      <h3 class=”center”>Not Found</h3>
      <p class=”center”>Sorry, but you are looking for something that isn’t here.</p>
      <?php endif; ?>

    <h3>Topics</h3>

      <?php wp_list_cats(‘sort_column=name&optioncount=0’); ?>

    <h3>Archives</h3>

      <?php wp_get_archives(‘type=monthly’); ?>

    <!– Uncomment this if you have more than one author

    <h3>Authors</h3>

      <?php wp_list_authors(‘show_fullname=1&exclude_admin=0’); ?>

    –>

    </div>
    <div class=”clear”></div>

    now how do i activate it when writing the post – so that the image comes up in the sidebar?, will this code work to do that? – i would like this feature to be for the top 5 last category enteries as well – any idea on how to do this. (is there a beginners guide on how to use this plugin/loop function?)

    many thanks in advance

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