im having the same issues on my site but only on a page template i’ve been coding.
My issue is not site wide or at least that i can see, it only seems to appear on this particular page, and more so on the template i’ve created, i have turned of photon site wide and this has fixed the error, but im sure there is a fix or something ive not added to the code i should have.
Does anyone know what triggers this error?
i can show my code if that would help, im not the best coder so im guessing it’s something ive done, as i was saying it’s only appearing on a page ive created.
<?php
/*
Template Name: MFRCode Sales Page Template
*/
?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title><?php bloginfo('name'); ?> - <?php the_title();?></title>
<link href="<?php bloginfo('stylesheet_directory')?>/mfrcode-salespage.css" rel="stylesheet" type="text/css" />
<meta http-equiv="Content-Language" content="en">
<meta name="description" content="<?php bloginfo('description'); ?>">
</head>
<body>
<div id="contenttop"></div>
<div id="contentmid">
<!----MFRCODE Post php below-----!>
<div id="contentcontainer">
<div id="content" class="widecolumn">
<?php if (have_posts()) : while (have_posts()) : the_post();?>
<div class="post">
<div class="entrytext">
<?php the_content('<p class="serif">Read the rest of this page ?</p>'); ?>
</div>
</div>
<?php endwhile; endif; ?>
<?php edit_post_link('Edit <---', '<p>', '</p>'); ?>
</div>
</div>
<div id="text-bottom" align="center">
<!----MFRCODE Add your copyright info and site footer info below this line-----!>
Copyright ? <?php _e(date('Y')); ?> <a href="<?php echo home_url('/') ?>" title="<?php echo esc_attr(get_bloginfo('name', 'display')); ?>"><?php bloginfo('name'); ?></a> All Rights Reserved
<br><font size="2"><?php bloginfo('description'); ?></font>
<!----MFRCODE DESIGN CREDIT MUST STAY INTACT UNEDITED OR TOUCHED IN ANYWAY OR YOUR SITE WILL RECIVE NO SUPPORT FROM US AND WILL BE CONSIDERED THEFT OF OUR WORK HTTP://RANDELLMONAGHAN.ME-----!>
<br>
<font size="1">WordPress Custom Sales Page Designed By: <a href="https://randellmonaghan.me" target="_blank">Randell Monaghan</a> | Proudly Powered By: <a href= "https://www.remarpro.com">WordPress</a></font>
</div>
</div>
<div id="contentbottom"></div>
</body>
here’s a link to the page also i’ll turn photon on again just incase someone can help fix this.
here is the troubled page
thanks in advance everyone.
p.s im a super messy coder so dont laugh lol.