Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter Totalomega

    (@totalomega)

    any news here?

    Thread Starter Totalomega

    (@totalomega)

    Is there a paid support option?

    Thread Starter Totalomega

    (@totalomega)

    I can’t launch my site still after 3 weeks of waiting to hear anything about fixing this issue many are having with pagination. What is the deal what do we have to do to get this rolling?

    Thread Starter Totalomega

    (@totalomega)

    I use this code:
    [blog_in_blog category_slug=’booking’ template=”bib_post_template.tpl” num=’10’ thumbnail_size=<100×100>]

    with same results it does control how many posts show on that page. But that is not the problem. The issue is that at the bottom after the 10 the :

    « Page 1 »

    is what shows when there are 60 or so posts its only showing an option for the first.

    Totalomega

    (@totalomega)

    very similar here also

    Thread Starter Totalomega

    (@totalomega)

    n/m I was wrong this is the proper template code I am using:

    <!-- fragment of html for post template. This file will be deprecated... -->
    <!-- blog-in-blog Version: %bib_version% -->
    <div class="post">
    <!-- Post Headline -->
    <div class="post-headline">
    <div style="float:left; margin:7px"> %post_thumbnail% </div>
    <h2>
    <a title="Permanent Link to %post_title%" rel="bookmark" href="%post_permalink%">%post_title%</a>
    </h2>
    <small>%post_date% %post_time% : %post_categories%</small>
    
    </div>
    <!-- Post Body Copy -->
    
    <div class="post-bodycopy clearfix">%post_content%</div>
    <div class="post-comments">%post_comments%</div>
    </div>

    [Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]

    Thread Starter Totalomega

    (@totalomega)

    for more explanation I believe this is the template code also:

    <?php
    /**
     * Page Template
     *
     * This template is the default page template. It is used to display content when someone is viewing a
     * singular view of a page ('page' post_type) unless another page template overrules this one.
     * @link http://codex.wordpress.org/Pages
     *
     * @package WooFramework
     * @subpackage Template
     */
    
    get_header();
    ?>
    
        <!-- #content Starts -->
    	<?php woo_content_before(); ?>
        <div id="content" class="col-full">
    
        	<div id="main-sidebar-container">    
    
                <!-- #main Starts -->
                <?php woo_main_before(); ?>
                <div id="main">
    <?php
    	woo_loop_before();
    
    	if (have_posts()) { $count = 0;
    		while (have_posts()) { the_post(); $count++;
    			woo_get_template_part( 'content', 'page' ); // Get the page content template file, contextually.
    		}
    	}
    
    	woo_loop_after();
    ?>
                </div><!-- /#main -->
                <?php woo_main_after(); ?>
    
                <?php get_sidebar(); ?>
    
    		</div><!-- /#main-sidebar-container -->         
    
    		<?php get_sidebar( 'alt' ); ?>
    
        </div><!-- /#content -->
    	<?php woo_content_after(); ?>
    
    <?php get_footer(); ?>

    [Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]

    Thread Starter Totalomega

    (@totalomega)

    Ok so I created a screen shot to show the issue. I have many more than the 10 I set to show and need pagnation to list all the pages not just the first. Any help would be greatly appreciated:

    http://imageshack.us/photo/my-images/818/screenrn.jpg/

Viewing 8 replies - 1 through 8 (of 8 total)