Giri
Forum Replies Created
-
AuthorPosts
-
You are welcome 🙂
This reply has been marked as private.Hi John,
The avatar is only for the author.
Please post your wp-admin login details. So I can add the filter.
Thanks
Hi Richard,
Just had a discussion with my team.
Custom textarea fields don’t have that option. If you need advanced editor then change the field type to html.
We will try to make custom textarea fields support advanced editor in future versions.
Thanks
This reply has been marked as private.Hi The issue coming from your avada child theme.
.clearfix { clear: both; position: relative; z-index: 1008; }
You need to remove that z-index property for chosen to work properly.
Thanks
Hi John,
Were you talking about the gravatar2.png file found in this line?
https://github.com/mistergiri/supreme-directory/blob/master/inc/geodirectory-compatibility.php#L821
If yes, then I can add a filter to override that image. So you can override using snippet.
Let me know if thats what you are after.
Thanks
Hi Richard, I see lot of js errors in your console.
https://www.dropbox.com/s/kj5x533f267jg6v/Screenshot%202017-06-15%2018.41.51.png?dl=0
It comes from tabs responsive plugin. Please try after disabling it.
Let me know how that goes.
Thanks
The page looks fine in iphone 5s. Can you tell us which mobile you used for testing?
Hi Tania,
remove existing code and replace with this one.
function gd_custom_sd_details_output_address( $address = '' ) { global $post; $sd_address = '<div class="sd-address">'; if (isset($post->post_city) && $post->post_city) { $sd_address .= apply_filters('sd_detail_city_name', $post->post_city, $post); } $sd_address .= '</div>'; $sd_address .= '<div class="sd-address">'; if ( geodir_is_page( 'detail' ) && !empty( $post ) && !empty( $post->post_neighbourhood ) && !empty( $post->country_slug ) && defined( 'GEODIRLOCATION_VERSION' ) ) { if ( get_option( 'location_neighbourhoods' ) && $neighbourhood_info = geodir_location_get_neighbourhood_by_id( $post->post_neighbourhood, true, $post->post_location_id ) ) { $sd_address .= '<div class="sd-neighbourhood" style="clear:both;"><span class="geodir-i-neighbourhood" style=""><i class="fa fa-location-arrow"></i> ' . __( 'Neighbourhood:', 'geodirectory' ) . ' </span> ' . $neighbourhood_info->hood_name . '</div>' . $social; } } $sd_address .= '</div>'; $sd_address .= '<div class="sd-address">'; if (isset($post->post_region) && $post->post_region) { $sd_address .= ', ' . apply_filters('sd_detail_region_name', $post->post_region, $post); } if (isset($post->post_country) && $post->post_country) { $sd_address .= ', ' . apply_filters('sd_detail_country_name', __($post->post_country, 'geodirectory'), $post); } $sd_address .= '</div>'; return $sd_address; } add_filter( 'sd_details_output_address', 'gd_custom_sd_details_output_address', 10, 2 );
Hi giuseppe,
Your popup blocker is blocking me in desktop. So i’m unable to access your frontend. Please disable them until I debug.
As for the mobile, your “Listing” menu link taking me nowhere. Please post the direct url where I can test those bugs.
Thanks
Hi Jay,
I added this code in custom css. It works fine now.
.header-wrap .geodir_cpt_listings h3.widget-title { display: none !important; } .header-wrap .geodir_cpt_listings .gd-cpt-wrow-gd_event { display: none !important; }
Hi Murphy,
Like i mentioned earlier, the problem is with your server.
This is what is see in js file.
https://www.dropbox.com/s/4n27c3yujczblzx/Screenshot%202017-06-15%2016.32.20.png?dl=0
As paolo advised you should move to linux server.
Please contact your hosting support to solve your server issue since the problem is not with the code but with your server.
Thanks
You are welcome
You seem like you are using windows server.
It throws some error in askimet js file.
http://tellit.com.ng/pass/wp-content/plugins/akismet/_inc/form.js?ver=3.3.2
Please disable that plugin and it would work fine.
Contact your hosting support if you want to enable that again.
Thanks
-
AuthorPosts