Well, this is getting more interesting by the moment. To answer your questions, most listings were entered through admin backend however it doesn’t seem to matter. I tried both ways and it’s the same. I can also confirm that all the geocoding on the listing page is identical on both sites… and, as I said earlier, the map does show complete addresses… just not the listings.
However, now looking at the admin “all listings” (I renamed them Practices), on the site that does display the complete addresses, those street addresses display on that listings page. However on the directory that only shows the regions, only the primary region display on the “all listings” page under Location.
And here’s something else that really has me scratching my head. I looked at the functions.php in Appearance Editor on both sites and found them to be different but I don’t recall editing them. Further, when I paste the code from the correct site to the one only showing regions, nothing changes regarding the addresses anyway. Since I basically cloned all my directories from the first one I did, I don’t know why one site would have a different functions.php code. Here are the two different function.php codes. My ability stops at the water’s edge of code sadly so I don’t know exactly what the differences mean.
I checked the two links and neither seem to apply in this situation.
From the site that is not displaying addresses
<?php
/**
* Listify child theme.
*/
function listify_child_styles() {
wp_enqueue_style( ‘listify-child’, get_stylesheet_uri() );
}
add_action( ‘wp_enqueue_scripts’, ‘listify_child_styles’, 999 );
/** Place any new code below this line */
/* Enable shortcodes in widgets */
add_filter(‘widget_text’, ‘do_shortcode’);
add_filter( ‘listify_cover_image’, function( $image ) {
if ( is_singular( ‘post’ ) ) {
return false;
}
return $image;
} );
—————————————-
From the site that IS listing addresses correctly:
<?php
/**
* Listify child theme.
*/
function listify_child_styles() {
wp_enqueue_style( ‘listify-child’, get_stylesheet_uri() );
}
add_action( ‘wp_enqueue_scripts’, ‘listify_child_styles’, 999 );
/** Place any new code below this line */
/* Enable shortcodes in widgets */
add_filter(‘widget_text’, ‘do_shortcode’);
add_filter( ‘submit_job_form_fields’, ‘custom_submit_job_form_fields’ );
function custom_submit_job_form_fields( $fields ) {
$fields[‘job’][‘job_description’][‘required’] = false;
// And return the modified fields
return $fields;
}
add_action( ‘wp_footer’, function() {
?>
<script>
jQuery(function($) {
var $window = $(window).outerHeight();
var tb = ( $window – $( ‘.homepage-cover’ ).height() ) / 2;
console.log($window);
$( ‘.homepage-cover’ ).css({
‘padding-top’: tb,
‘padding-bottom’: tb
} );
} );
</script>
<?php
} );
———————–
I greatly appreciate the help