Hi there,
I have a problem with customization of my atahualpa 3.4.1 theme installation.
I want the posts footer to be displayed always, except for the home page. On the blog
homepage the most recent posts are shown, no static page is used.
First thing I did was to remove the code from Edit Post/Page Info ITems -> FOOTER Homepage.
Now it is empty, but still the footer information is displayed on the homepage.
Then I went to Style & Edit CENTER COLUMN. There I replaced the corresponding line with
the following code:
<?php
if ( !is_front_page() ) {
bfa_post_footer('<div class="post-footer">','</div>');
}
?>
However, the footer does always show up, also if I replace !is_front_page with !is_home.
I did also edit the file bfa_post_parts.php with the corresponding modifications, but none of
them is working. The conditionals somewhat work if I insert wp_reset_query(); before the
is_home() statement, but the posts query is totally messed up...
Does anybody have clue, what might be going wrong here???
Regards
dextor