Organized Docs WordPress Plugin

Support

Please see the FAQ before requesting support. You may find that the help you need has already been posted.

To request help or report bugs, please use the official support forum for the plugin at WordPress.

See the Changelog at WordPress.

Fork or contribute on GitHub

Updated on April 26, 2015

We've 2 Responses

  1. May 30th, 2015 at 8:27 pm

    I have tried all of the solutions you have posted with no luck in getting it to display on my site correctly.

    http://messrsintl.com/docs/

    I am using theme Theron Pro V2 and WordPress 4.2.2.

    
    <?php
    /*
    Template Name: Page with No sidebar
    */
    ?>
    <?php get_header(); ?>
    
    <!--Content-->
    <div id="content">
    <div class="single_wrap">
    <div class="single_post">
                       <?php if(have_posts()): ?><?php while(have_posts()): ?><?php the_post(); ?>
                    <div <?php post_class(); ?> id="post-<?php the_ID(); ?>"> 
                    
                    <div class="post_content">
                        <h1 class="postitle"><?php the_title(); ?></h1>
                        <div class="single_metainfo"><?php edit_post_link(); ?></div>
                        <div class="thn_post_wrap"><?php the_content(); ?> </div> 
                        <div style="clear:both"></div>
                        <div class="thn_post_wrap"><?php wp_link_pages('<p class="pages"><strong>'.__('Pages:').'</strong> ', '</p>', 'number'); ?></div>
                        
                        
                    </div>
                    
                    
                    
                            </div>
                <?php endwhile ?> 
                    </div>
    			<div class="comments_template"><?php comments_template('',true); ?></div>
                <?php endif ?>
    
        </div>
       
        <!--PAGE END-->
        
    
    </div>
    <?php get_footer(); ?>
    
    

    Thank you,

    Larry

    Larry Link
    • May 31st, 2015 at 2:42 pm

      Hello,
      I’m sorry about that. There is an important step missing from my directions. I will update them as soon as possible. I was not able to see your Docs pages because your site redirects me to a login page. For your single Docs template please try this:

      https://gist.github.com/isabelc/4bfffbff0a1617d98489#file-gistfile1-php

      Save that file as “single.php” and place in a folder named “organized-docs” inside your theme. So, it will be at:

      /your-theme/organized-docs/single.php

      I hope that helps.

      Isabel

Questions and Comments are Welcome

Your email address will not be published. All comments will be moderated.

Please wrap code in "code" bracket tags like this:

[code]

YOUR CODE HERE 

[/code]