Kor
Forum Replies Created
-
AuthorPosts
-
June 6, 2017 at 11:54 am in reply to: Removing unrelated default fields from custom post type #381894
Hi leaf,
You can disable some of these fields by switching the “Is active” field to “Off” and here is the section of the documentation for your reference https://wpgeodirectory.com/docs/core-place-settings/#custom .
You can use this option in GD > General > General > disable location for a CPT http://prntscr.com/fgiss7 . As for your last question, could you elaborate?
Thanks!
Hi Howard,
Could be just a cache issue or a glitch. But I’m glad that everything is working well for you now.
Thanks!
June 6, 2017 at 8:47 am in reply to: Problem with listings picking up wrong default category image #381865Hi Chris,
Please share WP temp admin access to your site so we can take a better look. You can post the details here using the private reply option below. Also, please list down the steps to recreate the issue.
Thanks!
Hi Tania,
With the help from a developer, I’m able to fix the issue and added the neighbourhood to the address section. Could you check and see if it’s what you’re looking for? Below is the code for our reference.
function gd_custom_sd_details_output_address( $address = '' ) { global $post; if ( $address && !empty( $post->post_address ) ) { $sd_address = '<span class="sd-address-only">' . stripslashes( $post->post_address ) . ', </span>'; $address = str_replace( '<div class="sd-address">', '<div class="sd-address">' . $sd_address , $address ); } return $address; } add_filter( 'sd_details_output_address', 'gd_custom_sd_details_output_address', 10, 2 ); function gd_custom_sd_details_output_social_neighbourhood( $social = '' ) { global $post; 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 ) ) { $social = '<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; } } return $social; } add_filter( 'sd_details_output_social', 'gd_custom_sd_details_output_social_neighbourhood', 10, 1 );Hi Jonas,
Please share Wp admin and FTP access and I’ll ask a developer to check this out
Hi Howard,
Please share WP temp admin access to your site so we can take a better look. You can post the details here using the private reply option below.
Hi Anna,
Kindly refer to this article. https://wpgeodirectory.com/docs/faqs/how-do-i-change-place-and-places/
Thanks!
Hi Tania,
We can display a “Slider” on the detail page, but it will stay below the listing title. Check out this post on how to achieve this https://wpgeodirectory.com/support/topic/flexslider-2/#post-362593 . If you wish to display it on top, it would require customization.
Thanks!
Hi mrv,
Thanks for letting us know.
Hi Jane,
Looks like a 3rd party plugin or the theme is causing the conflict. Could you please try deactivating all non-GD plugins and see if it fixes the issue there? If the issue persists, please share WP temp admin access to your site so we can take a better look. You can post the details here using the private reply option below.
Hi there,
Try the method from this posts and see if it works for you https://wpgeodirectory.com/support/topic/flexslider-2/#post-362593
Thanks!
Hi mcclocal,
Please share WP temp admin access to your site so we can take a better look. You can post the details here using the private reply option below. Also, please the Facebook page that you would like to import so that we can replicate the said issue.
Thanks!
Hi there,
Sorry for the late response. I’ve just tested the “Social Import” functionality and it works fine. Check out this screenshot http://prntscr.com/fg3jw8 .
Thanks!
Hi there,
Just create your categories in your listings and follow this instruction https://wpgeodirectory.com/docs/gd-search/#select on the “Advanced Search filter form” . Example https://wpgeo.directory/gdf/
Thanks!
Hi Tania,
We can’t, but we can hide it using custom CSS. Try the code below.
.gd-search-input-wrapper.gd-search-field-search { display:none!important } -
AuthorPosts