Viewing 8 replies - 1 through 8 (of 8 total)
  • What theme is it?

    The first string you want to remove looks like a breadcrumbs type item. That is probably something loaded by your theme or by a plugin.

    To remove the page links look for next_posts_link() and previous_posts_link() in your theme.

    Thread Starter rate4d

    (@rate4d)

    It’s inove

    Thread Starter rate4d

    (@rate4d)

    im not using any plugins, so it’s probably in the theme(inove), but I cant found the code, because I don’t know whats the name of thoose things, I searched “next_posts” “posts_link” in all php files, Couldn’t find anything

    Thread Starter rate4d

    (@rate4d)

    *cant find xD

    Look in single.php, index.php, page.php, single.php, etc. for the breadcrumb:

    <a title="<?php _e('Goto homepage', 'inove'); ?>" href="<?php echo get_settings('home'); ?>/"><?php _e('Home', 'inove'); ?></a>> <?php the_category(', '); ?>> <?php the_title(); ?>

    and for the botom links:

    <span class="newer"><?php previous_posts_link(__('Newer Entries', 'inove')); ?></span><span class="older"><?php next_posts_link(__('Older Entries', 'inove')); ?></span>

    The navigation links are in single.php– next_post_link and previous_post_link. The breadcrumb path is the div labeled ‘postpath’ in single.php.

    Thread Starter rate4d

    (@rate4d)

    Dude you can’t imagine how thankful I am ^^
    I will go to help other people with problems, because if you haven’t helped for me it would took several days or week to get this work, thank you very much, it’s good feeling then you are heared, I can’t donate everybody who helps me, but I can help other people, and if we help each other it’d be cool.

    <Im still shitting in my pants, how happy I am>

    I removed postpath from single.php and next/previous posts code from single.php , archive.php , and index.php it works great.

    Cool that it works. I help out here because I like to, and others have helped me, too….

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Please help to remove postpath and next/prev posts’ is closed to new replies.