• I downloaded a theme that is perfect for the site I am trying to put together however the pages and posts are not displaying. I know I should just move on to another theme however this one just fits perfect for what I am looking for. I have searched for a newer version with no luck. If someone could be has any experience with this theme or has any ideas on how I can fix it please let me know.

    The theme is: Valentine 1.0 by Punit Thakkar

    And you can visit my site to see the problem here

    PS: There is content in 2 post as well as the Home and About pages.

    Thank you,

    Terry

Viewing 4 replies - 1 through 4 (of 4 total)
  • start with index.php:

    <div class="text_clanku" align="justify">
    						<? the_content();?>
    					</div>

    change the line with the_content into
    <?php the_content();?>

    (i thing some versions of php don’t understand the
    shortform <? code ?>)

    found another in archive.php

    <div class="text_clanku">
    						<? the_excerpt();?>
    					</div>

    and page.php:

    <div class="text_clanku" align="justify">
    						<? the_content();?>

    same could be in the other php files, such as single.php.

    Thread Starter tbonehwd

    (@tbonehwd)

    Not sure if this may help I have been playing around for the last few hours with no luck but below is the code for the three files that call <? the_content(); ?>

    Single.php

    <?php get_header(); ?>
    <div id="telo_blogu">
    <?php get_sidebar(); ?>
    <div id="obsah">
    	<?php if(have_posts()) : ?>
    		<?php while(have_posts()) : the_post(); ?>
    			<div class="post" id="post-<?php the_ID();?>">
    				<div class="nadpis">
    					<div class="datum">
    						<div class="datum_mesic"><?php the_time('M') ?></div>
    						<div class="datum_den"><?php the_time('j') ?></div>
    					</div>
    					<div class="titulek">
    						<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" class="h2"><?php the_title(); ?></a>
    						<div class="meta"><?php the_author() ?> <?php _e("in"); ?> <?php the_category(',') ?> <?php edit_post_link(__('Edit This')); ?></div>
    					</div>
    				</div>
    					<div class="text_clanku" align="justify">
    						<? the_content(); ?>
    						<?php link_pages('<div class="pages"><strong>Pages:</strong> ', '</div>', 'number'); ?>
    					</div>
    			</div>
    		<?php endwhile; ?>
    		<div class="comments-template">
    			<?php comments_template(); ?>
    		</div>
    
    		<div class="navigation">
    				<?php previous_post_link('<span class="tlacitka">&laquo; %link</span>') ?> <?php next_post_link('<span class="tlacitka">%link &raquo;</span>') ?>
    		</div>
    
    		<?php else : ?>
    			<div class="post">
    			<div class="nadpis">
    				<h2><?php _e('Sorry, no posts matched your criteria.'); ?></h2>
    			</div>
    			</div>
    			<div class="navigation">
    				<?php posts_nav_link('','<span class="tlacitka"><< Previous</span>','<span class="tlacitka">Next >></span>'); ?>
    			</div>
    	<?php endif; ?>
    
    </div>
    </div>
    <?php get_footer(); ?>
    <strong>Page.php</strong>
    
    <?php get_header(); ?>
    <div id="telo_blogu">
    <?php get_sidebar(); ?>
    <div id="obsah">
    	<?php if(have_posts()) : ?>
    		<?php while(have_posts()) : the_post(); ?>
    			<div class="post" id="post-<?php the_ID();?>">
    				<div class="nadpis">
    					<div class="datum">
    						<div class="datum_mesic"><?php the_time('M') ?></div>
    						<div class="datum_den"><?php the_time('j') ?></div>
    					</div>
    					<div class="titulek">
    						<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" class="h2"><?php the_title(); ?></a>
    						<div class="meta"><?php the_author() ?> <?php edit_post_link(__('Edit This')); ?></div>
    					</div>
    				</div>
    					<div class="text_clanku" align="justify">
    							<? the_content(); ?>
    						<?php link_pages('<div class="pages"><strong>Pages:</strong> ', '</div>', 'number'); ?>
    					</div>
    
    			</div>
    		<?php endwhile; ?>
    
    		<div class="navigation">
    				<?php posts_nav_link('','<span class="tlacitka"><< Previous</span>','<span class="tlacitka">Next >></span>'); ?>
    		</div>
    
    		<?php else : ?>
    			<div class="post">
    			<div class="nadpis">
    
    				<h2><?php _e('Sorry, no posts matched your criteria.'); ?></h2>
    			</div>
    			</div>
    			<div class="navigation">
    				<?php posts_nav_link('','<span class="tlacitka"><< Previous</span>','<span class="tlacitka">Next >></span>'); ?>
    			</div>
    	<?php endif; ?>
    
    </div>
    </div>
    <?php get_footer(); ?>

    Index.php

    <?php get_header(); ?>
    <div id="telo_blogu">
    <?php get_sidebar(); ?>
    <div id="obsah">
    	<?php if(have_posts()) : ?>
    		<?php while(have_posts()) : the_post(); ?>
    			<div class="post" id="post-<?php the_ID();?>">
    				<div class="nadpis">
    					<div class="datum">
    						<div class="datum_mesic"><?php the_time('M') ?></div>
    						<div class="datum_den"><?php the_time('j') ?></div>
    					</div>
    					<div class="titulek">
    						<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" class="h2"><?php the_title(); ?></a>
    						<div class="meta"><?php the_author() ?> <?php _e("in"); ?> <?php the_category(',') ?> <?php edit_post_link(__('Edit This')); ?></div>
    					</div>
    				</div>
    					<div class="text_clanku" align="justify">
    						<? the_content(); ?>
    					</div>
    					<div class="komentar"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></div>
    			</div>
    		<?php endwhile; ?>
    
    		<div class="navigation">
    				<?php posts_nav_link('','<span class="tlacitka"><< Previous</span>','<span class="tlacitka">Next >></span>'); ?>
    		</div>
    
    		<?php else : ?>
    			<div class="post">
    			<div class="nadpis">
    				<h2 ><?php _e('Sorry, no posts matched your criteria.'); ?></h2>
    			</div>
    			</div>
    			<div class="navigation">
    				<?php posts_nav_link('','<span class="tlacitka"><< Previous</span>','<span class="tlacitka">Next >></span>'); ?>
    			</div>
    	<?php endif; ?>
    
    </div>
    </div>
    <?php get_footer(); ?>
    Thread Starter tbonehwd

    (@tbonehwd)

    Thank you so much… just changing

    <? the_content();?> to <?php the_content();?>

    Solved this problem you are a lifesaver

    it pays to be persistent … ??

    don’t forget archive.php
    <? the_excerpt();?>

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Just can’t give up – Help with nonworking theme’ is closed to new replies.