• Resolved draligus

    (@draligus)


    i am using WP 3.0.5 and blucorp theme. when i enter site.com/category/my-category-page (category page), i see all posts. Not only that category. Please help me

Viewing 15 replies - 1 through 15 (of 15 total)
  • Thread Starter draligus

    (@draligus)

    another thing now. i have same problem in tags page also. when you enter “word” tag page, you should see one post. But you can see a lot of posts.

    Thread Starter draligus

    (@draligus)

    another thing now. i see that there is noy category page in my template. is this a cause for my problem

    i see that there is noy category page in my template. is this a cause for my problem

    http://codex.wordpress.org/Template_Hierarchy

    in which case index.php is displaying the posts (if there is no archive.php)
    check index.php if there is a custom query before the loop.

    you could paste the code of index.php into a http://wordpress.pastebin.com/ and post the link to it here so someone might be able to check this.

    Thread Starter draligus

    (@draligus)

    http://wordpress.pastebin.com/HVJGCFFJ
    thank you for your help

    there is an empty cat parameter in the query;
    try and change line 16 to something like this:

    <?php $temp = $wp_query; $wp_query= null; $wp_query = new WP_Query('showposts=6&paged=' . $paged);?>

    you might need to further change this to:

    <?php global $query_string;
    $temp = $wp_query; $wp_query= null; $wp_query = new WP_Query( $query_string . '&showposts=6&paged=' . $paged);?>
    Thread Starter draligus

    (@draligus)

    thanks a lot. thank you very much. it is great.
    thank you.

    Thread Starter draligus

    (@draligus)

    i have a similar problem. my top banner logo is lost in CATEGORY, ARCHIVE and TAG pages. would you please help me again.

    your archive.php file hase this conditional statement at the beginning (which’s purpose is not clear to me)

    <?php if ((!function_exists("check_theme_footer") || !function_exists("check_theme_header"))) { ?><?php { /* nothing */ } ?><?php } else { ?><?php get_header(); ?>

    try to change this to:

    <?php get_header(); ?>

    basically remove the conditional statement to always show the header.

    make backup copies of the theme files before editing

    Thread Starter draligus

    (@draligus)

    i have done it. but i am sorry, i still have the same problem

    Thread Starter draligus

    (@draligus)

    this is my functions.php page:
    http://wordpress.pastebin.com/3HpW9VHz

    your theme seems to be ‘protected’ by some encrypted code in functions.php and some code in other template files.

    you might have edited something which the theme authors consider ‘not allowed’ and which as a results blocks some of the theme functions.

    i can’t help there any further, and recommend that you look for a different theme from a reputable source.

    Thread Starter draligus

    (@draligus)

    thank you but, this is not related to encryption. encryption is only for footer links. so if possible, would you please help me.

    Thread Starter draligus

    (@draligus)

    it may be related with header.php
    http://wordpress.pastebin.com/JVgS5L8R

    there might be only one bit of encrypted code in footer.php, but there are several checks in the templates, in header.php as well;
    imho, it more trouble than it is worth to try and find out if and how these are interfering with the site.

    imho, no honest wordpress theme needs any of this.

    even if stop looking at your problem, there are other helpers here, and someone might be able to help you with your problem.

    maybe start a new thread focussing on the missing header in the archive pages.

    Thread Starter draligus

    (@draligus)

    i have solved the problem. problem was in header.php
    i have added
    <?php echo home_url( '/' ); ?>
    line 50 became:
    <a href="<?php echo home_url( '/' ); ?>" title="<?php bloginfo('name'); ?>" target="_blank"><img src="<strong><em><?php echo home_url( '/' ); ?></em></strong>wp-content/themes/blucorp/images/cerrahi-saglik.jpg" width="468px" height="80px" alt="<?php bloginfo('name'); ?>" /></a>

    anyway, thank you very much for your help

Viewing 15 replies - 1 through 15 (of 15 total)
  • The topic ‘urgent category page problem’ is closed to new replies.