Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter hansyulianto

    (@hansyulianto)

    Thanks a lot for your help @mrfoxtalbot

    It works very well.

    Thread Starter hansyulianto

    (@hansyulianto)

    $layout_type = 'right';
    it’s working. Thanks a lot ??

    Thread Starter hansyulianto

    (@hansyulianto)

    It did’t work ??

    Thread Starter hansyulianto

    (@hansyulianto)

    single.php

    <?php
    /**
     * The Template for displaying all single posts
     *
     * @package WordPress
     * @subpackage Everal
     * @since Everal 1.0
     */
    
    get_header();
    
    global $site_width;
    ?>
    
    <div id="main-content" class="main-content row">
    	<div id="primary" class="content-area">
    		<div id="content" class="site-content <?php echo $site_width; ?>" role="main">
    			<?php
    				// Start the Loop.
    				while ( have_posts() ) : the_post();
    
    					/*
    					 * Include the post format-specific template for the content. If you want to
    					 * use this in a child theme, then include a file called called content-___.php
    					 * (where ___ is the post format) and that will be used instead.
    					 */
    					get_template_part( 'content', get_post_format() );
    
    					// Previous/next post navigation.
    					everal_post_nav();
    
    					// If comments are open or we have at least one comment, load up the comment template.
    					if ( comments_open() || get_comments_number() ) {
    						comments_template();
    					}
    				endwhile;
    			?>
    
    		</div><!-- #content -->
    	</div><!-- #primary -->
    	<?php get_sidebar( 'content' ); ?>
    </div><!-- #main-content -->
    
    <?php
    get_sidebar();
    get_footer();

    archieve.php

    <?php
    /**
     * The template for displaying Archive pages
     *
     * Used to display archive-type pages if nothing more specific matches a query.
     * For example, puts together date-based pages if no date.php file exists.
     *
     * If you'd like to further customize these archive views, you may create a
     * new template file for each specific one. For example, Everal 1.0
     * already has tag.php for Tag archives, category.php for Category archives,
     * and author.php for Author archives.
     *
     * @link https://codex.www.ads-software.com/Template_Hierarchy
     *
     * @package WordPress
     * @subpackage Everal
     * @since Everal 1.0
     */
    
    get_header();
    
    global $site_width;
    ?>
    <div id="main-content" class="main-content row">
    	<?php
    		get_sidebar();
    	?>
    	<section id="primary" class="content-area <?php echo $site_width; ?>">
    		<div id="content" class="site-content" role="main">
    
    			<?php if ( have_posts() ) : ?>
    
    			<header class="page-header">
    				<h1 class="page-title">
    					<?php
    						if ( is_day() ) :
    							printf( __( 'Daily Archives: %s', 'everal' ), get_the_date() );
    
    						elseif ( is_month() ) :
    							printf( __( 'Monthly Archives: %s', 'everal' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'everal' ) ) );
    
    						elseif ( is_year() ) :
    							printf( __( 'Yearly Archives: %s', 'everal' ), get_the_date( _x( 'Y', 'yearly archives date format', 'everal' ) ) );
    
    						else :
    							_e( 'Archives', 'everal' );
    
    						endif;
    					?>
    				</h1>
    			</header><!-- .page-header -->
    
    			<?php
    					// Start the Loop.
    					while ( have_posts() ) : the_post();
    
    						/*
    						 * Include the post format-specific template for the content. If you want to
    						 * use this in a child theme, then include a file called called content-___.php
    						 * (where ___ is the post format) and that will be used instead.
    						 */
    						get_template_part( 'content', get_post_format() );
    
    					endwhile;
    					// Previous/next page navigation.
    					everal_paging_nav();
    
    				else :
    					// If no content, include the "No posts found" template.
    					get_template_part( 'content', 'none' );
    
    				endif;
    			?>
    		</div><!-- #content -->
    	</section><!-- #primary -->
    	<?php get_sidebar( 'content' ); ?>
    </div><!-- #main-content -->
    
    <?php
    get_footer();

    category.php

    <?php
    /**
     * The template for displaying Category pages
     *
     * @link https://codex.www.ads-software.com/Template_Hierarchy
     *
     * @package WordPress
     * @subpackage Everal
     * @since Everal 1.0
     */
    
    get_header();
    global $site_width;
    ?>
    
    	<section id="primary" class="content-area <?php echo $site_width; ?>">
    		<div id="content" class="site-content" role="main">
    
    			<?php if ( have_posts() ) : ?>
    
    			<header class="archive-header">
    				<h1 class="archive-title"><?php printf( __( 'Category Archives: %s', 'everal' ), single_cat_title( '', false ) ); ?></h1>
    			</header><!-- .archive-header -->
    
    			<?php
    					// Start the Loop.
    					while ( have_posts() ) : the_post();
    
    					/*
    					 * Include the post format-specific template for the content. If you want to
    					 * use this in a child theme, then include a file called called content-___.php
    					 * (where ___ is the post format) and that will be used instead.
    					 */
    					get_template_part( 'content', get_post_format() );
    
    					endwhile;
    					// Previous/next page navigation.
    					everal_paging_nav();
    
    				else :
    					// If no content, include the "No posts found" template.
    					get_template_part( 'content', 'none' );
    
    				endif;
    			?>
    		</div><!-- #content -->
    	</section><!-- #primary -->
    
    <?php
    get_sidebar( 'content' );
    get_sidebar();
    get_footer();

    Thread Starter hansyulianto

    (@hansyulianto)

    Hi, Vipin Saini..
    I testing Everal on localhost. But later i will install at https://www.suyonos.com.

    On demo site, there is no sidebar on archieve page. https://cohhe.com/demo/everal/category/llis-ullam/

    I think if it’s show sidebar (archieve page) on my site later, it will be great ??

    Thread Starter hansyulianto

    (@hansyulianto)

    it works !!!
    and the new style from 1.1.3 is awesome. Color picker for the next version maybe? Btw Thanks for this great plugin Geoffrey….

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