• Resolved FS1

    (@fs1)


    Hello,

    After a long search, I found your corporate business theme, which I like very much.
    Would you be so kind as to tell me how I can combine the FrontPage with the Homepage? I prefer 1 page with almost all of the information.

    Also, I would prefer the widgets next to the content column on the right, which is the case on the Homepage currently, but not on the FrontPage.

    When is the update available?
    Thanks in advance for your answer(s)!
    FS1

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Dinozoom

    (@dinozoom)

    Hi,
    The update is available now.

    You can try this to move up the content on the homepage.
    0. Backup this file. (front-page.php)
    1. Open front-page.php
    2. Delete all the content
    3. Paste this:

    <?php
    /**
     * The template for displaying front page components.
     *
     * @package CorporateBusiness
     */
    get_header();
    if ( get_option( 'show_on_front' ) == "posts" ) {
    	get_template_part('index', 'homepage') ;
    } elseif ( get_option( 'show_on_front' ) == "page" ) {
    	get_template_part('index') ;
    }
    if ( $paged <= 1 && ! is_404() ) {
    	if ( get_theme_mod( 'enable_services' ) ) get_template_part('index', 'services') ;
    	if ( get_theme_mod( 'enable_projects' ) ) get_template_part('index', 'projects') ;
    	if ( get_theme_mod( 'enable_testimonials' ) ) get_template_part('index', 'testimonials') ;
    	if ( get_theme_mod( 'enable_customers' ) ) get_template_part('index', 'customers') ;
    }
    get_footer();
    ?>

    4. Save.

    Thanks.

    Thread Starter FS1

    (@fs1)

    Hello Mark,

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Combining Frontpage and Homepage’ is closed to new replies.