Hi Glenn, Karen !
Glenn, it’s not because I don’t have so much time that I don’t have time at all… ??
So please ask your questions and I’ll try to answer it.
Regarding your issue, I already posted something on the support to have an access to your ftp so I can check it. But you still did not answered me ?? So please contact me for more details.
In fact, you should have something like that :
– YOURTHEME/wp-fullpage/fullpage.php
should look like :
<?php
/**
* The template for displaying all fullpages
*
* This is the template that displays all fullpages by default.
* Please note that this is the WP Fullpage construct of fullpages and that
* other 'pages' on your WordPress site will use a different template.
*/
WPFP()->get_header( 'child' ); ?>
<div id="fullpage" class="<?php WPFP_Query()->get_fullpage_easing(); ?> <?php print WPFP_Query()->fullpage->post_name; ?>" data-bg="<?php print WPFP_Query()->get_fullpage_bg(); ?>">
<?php
while ( have_posts() ) : the_post();
// Start the sections Loop.
WPFP()->get_sections();
endwhile;
?>
</div><!-- #fullpage -->
<?php
// $navigation = WPFP_Query()->fullpage->fullpage_options['navigation'];
// if( 'yes' === $navigation )
// WPFP()->get_navigation();
WPFP()->get_sidebar( 'child' );
WPFP()->get_footer( 'child' );
– YOURTHEME/wp-fullpage/layout/header-child.php
should look like :
<?php
/**
* The Header for Fullpage
*
* Displays all of the <head>
*
* @package WP_Fullpage\Templates\Layout
*/
?>
<!DOCTYPE html>
<!--[if IE 7]>
<html class="ie ie7" <?php language_attributes(); ?>>
<![endif]-->
<!--[if IE 8]>
<html class="ie ie8" <?php language_attributes(); ?>>
<![endif]-->
<!--[if !(IE 7) | !(IE 8) ]><!-->
<html <?php language_attributes(); ?>>
<!--<![endif]-->
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width">
<title><?php wp_title( '|', true, 'right' ); ?></title>
<link rel="profile" href="https://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<!--[if lt IE 9]>
<script src="<?php echo get_template_directory_uri(); ?>/js/html5.js"></script>
<![endif]-->
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id="wrapper">
<?php
// if( WPFP_Query()->fullpage_has_full_navigation() )
// WPFP()->get_sidebar( 'menu' );
– YOURTHEME/wp-fullpage/layout/footer-child.php
should look like :
<?php
/**
* The template for displaying the Fullpage footer
*
* Contains footer content.
*
* @package WP_Fullpage\Templates\Layout
*/
?>
</div><!-- #Wrapper -->
<?php WPFP()->get_sidebar( 'footer-child ); ?>
<?php wp_footer(); ?>
</body>
</html>
– And finally, YOURTHEME/wp-fullpage/layout/sidebar-footer-child.php
should look like :
<?php
/**
* The Sidebar containing the main widget area
*
* @package WP_Fullpage\Templates\Layout
*/
?>
<?php do_action( 'mfn_hook_bottom' ); ?>
Thanks, cheers,
Julien