Google Font Plugin causing repetition of body text into header image
-
Hello. I’m using Google Font Plugin for “alétheia”, a child-theme of Follet. My site is here
By disabling plugins, I discovered that it is causing the repetition of any body text that I add, into the header image as well as into the body.
Can anyone help me eliminate this please? I would accept getting rid of the whole body on this page as a solution
It only occurs on my landing page, which has a different php header to the rest. this is it
<?php
/**
* Header for the landing page template.
*
* It will be displayed when “Landing Page” is chosen as a the template for the
* current page.
*
* @package Follet_Theme
* @since 1.1
*/
?>
<!DOCTYPE html><html <?php language_attributes(); ?>>
<head>
<meta charset=”<?php bloginfo( ‘charset’ ); ?>”>
<meta name=”viewport” content=”width=device-width, initial-scale=1″>
<title><?php wp_title( hide ); ?></title>
<link rel=”profile” href=”https://gmpg.org/xfn/11″>
<link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>”>
<?php wp_head(); ?></head>
<body id=”wrapper” <?php body_class(); ?> <?php follet_microdata( ‘body’ ); ?>>
<div id=”page” class=”hfeed site landing-page”>
<?php get_template_part( ‘templates/top-navigation-landing-page’, get_post_format() ); ?>
<?php echo do_shortcode(‘[maxbutton id=”1″]’); ?>
<?php get_template_part( ‘templates/header-landing-page’, get_post_format() ); ?>
<div id=”content-wrapper” class=”<?php follet_container_class( ‘content-wrapper’ ); ?>”>
I have tried removing each line of php one-by-one, but nothing seems to work
- The topic ‘Google Font Plugin causing repetition of body text into header image’ is closed to new replies.