ohenecoker
Forum Replies Created
-
Forum: Themes and Templates
In reply to: If conditionsAwesome!!! You’re a rock star!
It worked. Thanks a lot Simon
Forum: Themes and Templates
In reply to: If conditionssorry here’s the code again
<?php if(is_page('spanish-home')) {?> <?php echo"<a href="#"id="spanish" class="threecol">English</a>";?> <?php } ?> <?php else {?> <?php echo "<a href="#"id="spanish" class="threecol">Espa?ol</a>";?> <?php } ?>
Forum: Themes and Templates
In reply to: background imag not showing in ieI found the solution! I changed the jpg to gif. I guess ie is so n00bish that it can’t read jpg or something
Forum: Themes and Templates
In reply to: background imag not showing in iehere is a link to the site
Forum: Themes and Templates
In reply to: Remove ‘?’ bullets from sidebaryeah I tried that too still no luck :{
Forum: Themes and Templates
In reply to: Remove ‘?’ bullets from sidebarI found it in the plugin and deleted it but it still does not work
Forum: Themes and Templates
In reply to: Remove “read more”never mind I fixed it ??
I had to change the_excerpt to the_content in page.php instead of index.php. But thanx all the sameForum: Themes and Templates
In reply to: Remove “read more”I think it uses the_content. this is how my index.php looks like
<?php get_header(); ?>
<div id=”content”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php
## Exclude the ‘About’ category which is reserved for the footer
$excludeID = get_cat_id(‘about’);
if (in_category($excludeID)) continue; ?><div class=”post”>
<?php the_content(‘READ FULL ARTICLE ‘ . the_title(”, ”, false)); ?>
<div class=”postMeta”>
<?php include(“post-meta.php”); ?>
</div>
</div><!– end post –>
<?php endwhile; ?>
<?php else : ?>
<h2 class=”center”>Not Found</h2>
<p class=”center”>Sorry, but you are looking for something that isn’t here.</p>
<?php get_search_form(); ?><?php endif; ?>
</div><!– end content –>
<?php get_footer(); ?>
Forum: Themes and Templates
In reply to: kubrickbg-ltr.jpgOh I see. Thanks guys