Thank you my geo FINALLY works again!
the header.php fix doc that you provide with the plugin should read more like this to avoid confusion:
Edit 1)
Look for:
1
avada_current_page_title_bar( $c_pageID );
Replace with:
if(apply_filters( ‘avada_current_page_title_bar_change’, false,$c_pageID)){ do_action(‘avada_replace_page_title’,$c_pageID); }else{
avada_current_page_title_bar( $c_pageID );
}
Edit 2)
Look for:
?>
<div id=”main” class=”clearfix <?php echo $main_class; ?>”>
Replace with:
do_action(‘avada_before_main’);
?>
<div id=”main” class=”clearfix <?php echo $main_class; ?>”