I’ve been troubleshooting one by one.
I remove the ad code and still get the issue.
However, I usually have the image on the left hand side of my home screen below my homepage panes by using this code provided by Syahir in this thread https://forum.graphene-theme.com/graphene-support/trying-to-get-rid-of-post-on-my-homepage
<?php
function anz_custom_content(){
if ( is_front_page() ) :
?>
<!-- Put your HTML content here -->
<?php
endif;
}
add_action( 'graphene_bottom_content', 'anz_custom_content' );
?>
When I remove that code, everything works again.
Basically I have a html code for an image slider that I insert into that code provided by Syahir. When I do that, I have this issue. When I remove that from my functions.php and put my html slider into the widget “after slider” everything works fine.
So the issue lies in using Syahir’s code. Either I’m using it wrong, or the updates don’t like it.