• Portfolio dont show Sites

    Hello everyone. I got into the bussiness of a friend. Im the Developer ofthe Team and now i have a problem and need your help.

    On our Home-Site is shown a protfolio with ervery projects we made. But ther is only shown Project 1 to 5. But there are actually 9 Projects. If im logged in to the Site, i can see all Projects. I looked into the protfolio settings but there is no limit… All sites are not private and already online. But if you arent logged in and go to the Protfolio site, there u can see all this sites ([ redundant link removed ]) there is every project lsited. I dont konow how to show all Projects on the Homepage. Can u help me?

    Also i have a Robots nofollow noindex tag on the homesite. But in the WordPress settings the topic is already disabled. I dont konw how to remove this tag. But in this problem i guess its from the webserver and not the Website am i right ?

    Thanks for ur help :))

    • This topic was modified 2 years, 10 months ago by floorball72.
    • This topic was modified 2 years, 10 months ago by Jan Dembowski. Reason: Moved to Fixing WordPress, this is not an Everything else WordPress topic

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • go to your site /wp-admin/options-reading.php

    see what the “Blog pages show at most” option is set to and change it if needed.

    If that doesn’t work, you can look at your index.php or whatever phjp file is running the home page and you can modify the posts_per_page query to -1 to show all.

    Thread Starter floorball72

    (@floorball72)

    where do i find the php file ?

    Thread Starter floorball72

    (@floorball72)

    I found this. What do i need to change?

    <?php
    /*
    Template name: Blog Template
    */
    get_header();

    while ( have_posts() ){

    the_post();

    ?>

    <?php

    // display hero section, if any
    get_template_part(‘sections/hero_section’);

    ?>
    <!– Main Content –>
    <div id=”main-content”>
    <!– Blog–>
    <div id=”blog”>
    <!– Blog-Content–>
    <div data-fx=”1″>
    <?php

    $hervin_paged = ( get_query_var( ‘paged’ ) ) ? absint( get_query_var( ‘paged’ ) ) : 1;

    $hervin_args = array(
    ‘post_type’ => ‘post’,
    ‘paged’ => $hervin_paged
    );
    $hervin_posts_query = new WP_Query( $hervin_args );

    // the loop
    while( $hervin_posts_query->have_posts() ){

    $hervin_posts_query->the_post();

    get_template_part( ‘sections/blog_post_section’ );

    }

    ?>
    </div>
    <!– /Blog-Content –>

    <?php

    hervin_pagination( $hervin_posts_query );

    wp_reset_postdata();
    ?>
    </div>
    <!– /Blog–>
    </div>
    <!–/Main Content–>

    <?php

    }

    get_footer();

    ?>

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Portfolio dont show sites’ is closed to new replies.