• Hi,
    I have a little trouble navigating in the template.
    Namely, why not work to navigate index.php (obviously after installing the WP-PageNavi and paste the appropriate code for php) but for instance in the archive work?

    Please help
    albatros

Viewing 8 replies - 1 through 8 (of 8 total)
  • Your theme might be coded in a different way, contact your theme author.

    Thread Starter albatrosivpl

    (@albatrosivpl)

    The author is Smasching Magazine. I wrote yesterday on this subject with them on the forum but have not yet got an answer. If I gave here the contents of index.php you would be able to help me?

    Yours,
    albatros

    You can try pasting it here, but try on the default theme first to see if it works.

    Thread Starter albatrosivpl

    (@albatrosivpl)

    This is the original file:

    <?php
    /**
     * @package WordPress
     * @subpackage Default_Theme
     */
    
    get_header(); ?>
    
    	<div id="main-content" class="clearfix">
    
    		<div class="container">
    
    			<div class="col-580 left">
    
    				<?php
    					query_posts( 'showposts=2' );
    					if (have_posts()) :
    						while (have_posts()) : the_post(); $category = get_the_category();
    				?>
    
    				<div <?php post_class(); ?>>
    
    					<div class="post-meta clearfix">
    
    						<h3 class="post-title left"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
    
    						<p class="post-info right">
    							<span>By <?php the_author_posts_link(); ?></span>
    							<?php the_time( 'l F j, Y' ) ?>
    						</p>
    
    					</div><!-- End post-meta -->
    
    					<div class="post-box">
    
    						<div class="post-content">
    
    							<div class="comment-count">
    								<?php comments_popup_link(__( '0 Comments' ), __( '1 Comment' ), __( '% Comments' )); ?>
    							</div>
    
    							<?php if( get_post_meta( $post->ID, "image_value", true ) ) : ?>
    
    							<div class="post-image">
    								<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><img src="<?php bloginfo( 'template_directory' ); ?>/timthumb.php?src=<?php echo get_post_meta( $post->ID, "image_value", true ); ?>&w=521&h=246&zc=1" alt="<?php the_title(); ?>" /></a>
    							</div>
    
    							<?php endif; ?>
    
    							<div class="post-intro">
    
    								<?php the_content( '' ); ?>
    
    							</div><!-- End post-intro -->
    
    						</div><!-- End post-content -->
    
    						<div class="post-footer clearfix">
    
    							<div class="continue-reading">
    								<a href="<?php the_permalink() ?>#more-<?php the_ID(); ?>" rel="bookmark" title="Continue Reading <?php the_title_attribute(); ?>">Continue Reading</a>
    							</div>
    
    							<div class="category-menu">
    
    								<div class="category clearfix">
    									<div><a href="#"><span class="indicator"></span> <?php echo $category[0]->cat_name; ?></a></div>
    								</div>
    
    								<div class="dropdown">
    
    									<ul class="cat-posts">
    										<?php
    											$posted = get_posts( "category=" . $category[0]->cat_ID );
    											if( $posted ) :
    												foreach( $posted as $post ) : setup_postdata( $posted );
    										?>
    										<li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a><span><?php the_time( ' F j, Y' ) ?></span></li>
    										<?php
    												endforeach;
    											endif;
    										?>
    										<li class="view-more"><a href="<?php echo get_category_link( $category[0]->cat_ID ); ?>" class="view-more">View More &raquo;</a></li>
    									</ul>
    
    								</div><!-- End dropdown -->
    
    							</div><!-- End category -->
    
    						</div><!-- End post-footer -->
    
    					</div><!-- End post-box -->
    
    				</div><!-- End post -->
    
    				<?php
    						endwhile;
    					endif;
    				?>
    
    				<?php
    					query_posts( 'showposts=4&offset=2' );
    					if (have_posts()) : $counter = 0;
    						while (have_posts()) : the_post(); $category = get_the_category();
    
    						if( $counter % 2 == 0 )
    							$end = "";
    						else
    							$end = "last";
    				?>
    
    				<div <?php post_class( 'single ' . $end ); ?>>
    
    					<div class="post-meta clearfix">
    
    						<h3 class="post-title left"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
    
    					</div><!-- End post-meta -->
    
    					<div class="post-box">
    
    						<div class="post-content">
    
    							<div class="comment-count">
    								<?php comments_popup_link(__( '0 Comments' ), __( '1 Comment' ), __( '% Comments' )); ?>
    							</div>
    
    							<?php if( get_post_meta( $post->ID, "image_value", true ) ) : ?>
    
    							<div class="post-image">
    								<img src="<?php bloginfo( 'template_directory' ); ?>/timthumb.php?src=<?php echo get_post_meta( $post->ID, "image_value", true ); ?>&w=235&h=109&zc=1" alt="<?php the_title(); ?>" />
    							</div>
    
    							<?php endif; ?>
    
    							<div class="post-intro">
    
    								<?php the_excerpt( '' ); ?>
    
    							</div><!-- End post-intro -->
    
    						</div><!-- End post-content -->
    
    						<div class="post-footer clearfix">
    
    							<div class="continue-reading">
    								<a href="<?php the_permalink() ?>#more-<?php the_ID(); ?>" rel="bookmark" title="Continue Reading <?php the_title_attribute(); ?>">Continue Reading</a>
    							</div>
    
    						</div><!-- End post-footer -->
    
    					</div><!-- End post-box -->
    
    				</div><!-- End post -->
    
    				<?php
    					// Clear the left float to allow for different heights
    					if( $counter % 2 != 0 )
    						echo'<div style="clear:left;"> </div>';
    				?>
    
    				<?php
    						$counter++;
    						endwhile;
    					endif;
    				?>
    					<br />
    				<?php
    					query_posts( 'showposts=6&offset=6' );
    					if (have_posts()) :
    						while (have_posts()) : the_post(); $category = get_the_category();
    				?>
    
    				<div <?php post_class( ); ?>>
    
    					<div class="post-meta clearfix">
    
    						<h3 class="post-title-small left"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
    
    						<p class="post-info right">
    							<span>By <?php the_author_posts_link(); ?></span>
    							<?php the_time( 'l F j, Y' ) ?>
    						</p>
    
    					</div><!-- End post-meta -->
    
    				</div><!-- End archive -->
    
    				<?php
    						endwhile;
    					endif;
    				?>
    
    			</div><!-- End col-580 (Left Column) -->
    
    			<div class="col-340 right">
    
    				<ul id="sidebar">
    
    					<?php get_sidebar(); ?>
    
    				</ul><!-- End sidebar -->   
    
    			</div><!-- End col-340 (Right Column) -->
    
    		</div><!-- End container -->
    
    	</div><!-- End main-content -->
    
    <?php get_footer(); ?>

    Interestingly it is not specifically about the WP-PageNavi because it does not work any navigation. Even if you copy the code for the navigation of archivum.php index.php – she also does not work.

    PS Sorry, I do not know English. Google explains everything.

    Based on your code, the index is not suitable to use PageNavi because there are more than 1 loop and each loop loads a different amount of post.

    Thread Starter albatrosivpl

    (@albatrosivpl)

    Thank you.
    So what do I navigate to work? Remove one loop? Is it possible to do this in order to be maintained “high” and “small” format posts?

    Yours,
    albatros

    Sorry it is not that straightforward, if you remove some code, it may screw up what the theme is made for. I would suggest asking waiting for the theme author to reply.

    Thread Starter albatrosivpl

    (@albatrosivpl)

    Ok, thx 🙂

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

The topic ‘Magazeen – Navigation does not work’ is closed to new replies.