/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

function my_custom_locations_post_type( $post_type ) {
    return 'page'; // Change 'wpseo_locations' to 'page' if you want standard pages
}
add_filter( 'wpseo_local_post_type', 'my_custom_locations_post_type', 10, 1 );
