PHP Parse error: syntax error, unexpected ‘{‘ in /var/www/vhosts/my-gd-site.com/httpdocs/wp-content/plugins/geodir_avada_compatibility/geodir_avada_compatibility.php on line 172
// FUNCTION TO ADD HOME TOP SECTION INTO AVADA SLIDER AREA
function avada_gd_home_top_content() {
if( geodir_is_page(‘location’) || ( is_front_page() && get_option(‘geodir_set_as_home’) && !$_GET[‘geodir_signup’] ) {
geodir_action_geodir_sidebar_home_top();
}
}
It looks like it is missing a closing parenthesis. Should be:
// FUNCTION TO ADD HOME TOP SECTION INTO AVADA SLIDER AREA
function avada_gd_home_top_content() {
if( geodir_is_page(‘location’) || ( is_front_page() && get_option(‘geodir_set_as_home’) && !$_GET[‘geodir_signup’] ) ) {
geodir_action_geodir_sidebar_home_top();
}
}