• RE: Red Evo Aphelion Theme v 1.0.2

    First, this is a great template.. with a few small problems.

    1. The alternative CSS color templates, ie: blue.css, have path issues with all the image urls.. add the ../to the urls

    2. The Recent Articles in the dynamic_sidebar(5) in bottom.php repeat only the first article, you can see this in the demo too.

    I am not sure why this happens.

    <div id="user2"><div class="padding">  <ul>
         <?php if ( !function_exists('dynamic_sidebar')
            || !dynamic_sidebar(5) ) : ?>
              <li class="recentarticles">
              <h3 class="widgettitle"><?php _e('Recent Articles'); ?></h3>
              <ul>
                <?php $side_posts = get_posts('numberposts=10'); foreach($side_posts as $post) : ?>
                <li><a href= "<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
                <?php endforeach; ?>
              </ul>
              </li>
              <?php endif; ?>
              </ul>
       </div></div>

The topic ‘Small Problems.. Red Evo Aphelion’ is closed to new replies.