Hi Mandy,
I have updated patch on your site to fix styling conflict.
I also added following snippet in your child theme functions.php to fix chosen conflict.
// Fix jQuery chosen conflict
function _gd_custom_geowp_fix_chosen_conflict() {
if ( class_exists( 'GEO_my_WP' ) && defined( 'GEODIRECTORY_VERSION' ) ) {
if ( wp_script_is( 'google-maps', 'enqueued' ) ) {
wp_dequeue_script( 'google-maps' );
}
if ( wp_script_is( 'chosen', 'registered' ) ) {
wp_deregister_script( 'chosen' );
wp_register_script( 'chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.min.js', array( 'jquery' ), GEODIRECTORY_VERSION );
}
}
}
add_action( 'wp_print_scripts', '_gd_custom_geowp_fix_chosen_conflict', 100 );
Please check after clearing your browser cache.
Let us know if you have any problem.
Thanks,
Kiran