Viewing 3 Topics - 31 through 33 (of 33 total)
Author Posts
August 26, 2015 at 4:37 pm 69137
Simon Chabrier Simon Chabrier

Nox I use in my child theme personnal front page.php with this code :

<?php
/**
 * The Template for displaying all single posts.
 *
 * @package _bootstraps
 * @package _bootstraps - 2013 1.0
 */
get_header();
?>

    <div id="content" class="site-content" role="main">

        <?php while (have_posts()) : the_post(); ?>

            <?php get_template_part( 'content', 'page' ); ?>

            <?php
            // If comments are open or we have at least one comment, load up the comment template
            if ( comments_open() || '0' != get_comments_number() )
                comments_template( '', true );
            ?>

        <?php endwhile; // end of the loop. ?>

    </div><!-- #content .site-content -->
</div><!-- #primary .content-area -->

<?php get_footer(); ?>

It is ok to change the first page.
But I can’t use the Dokan first page in an other place in the site ! You uderstand ? If I wan’t to use a personnal home page and have shops on an other place in the site I can’t do it with full Dokan theme fonctionnality and display.

August 27, 2015 at 10:11 am 69270
towhid towhid

Hello Simon,

I am not clear your last post. But I can’t use the Dokan first page in another place in the site! What does it mean?

Thanks

August 27, 2015 at 4:43 pm 69351
Simon Chabrier Simon Chabrier

I need to use Dokan as a second part of my site . Visitors must arrive by another first page for exexmple articles page, and after they can go to the shops using the menu link.

Viewing 3 Topics - 31 through 33 (of 33 total)