Kiran
Forum Replies Created
-
AuthorPosts
-
This reply has been marked as private.
Hi,
This has been implemented and it will be in next release of Custom Post Types. There will be option under CPT(Ex: Places) > Settings > Link Post Settings to choose fields to import.
Kiran
Hi,
This has been implemented and it will be in next release of Custom Post Types. There will be option under CPT(Ex: Places) > Settings > Link Post Settings to choose fields to import.
Kiran
April 1, 2020 at 3:37 pm in reply to: Automatically populating address when linking an event to an exististing listing #537834Hi,
This has been implemented and it will be in next release of Custom Post Types. There will be option under CPT(Ex: Places) > Settings > Link Post Settings to choose fields to import.
Kiran
April 1, 2020 at 3:34 pm in reply to: Auto populate event address field from selected linked place address #537829This reply has been marked as private.April 1, 2020 at 3:32 pm in reply to: Auto populate event address field from selected linked place address #537828Hi Alain,
This has been implemented and it will be in next release of Custom Post Types. There will be option under CPT(Ex: Places) > Settings > Link Post Settings to choose fields to import.
Next release probably within with 3rd week of this month.
Regards,
KiranHi Ralf,
I guess it could be related to theme + user menus plugin. Try following PHP snippet.
function gd_snippet_the_title( $title, $post_id = 0 ) { if ( ! ( geodir_is_geodir_page() && GeoDir_Template_Loader::is_archive_page_id( $post_id ) ) ) { return $title; } // Don't overwrite Yoast SEO or Rank Math SEO. if ( GeoDir_SEO::yoast_enabled() || GeoDir_SEO::rank_math_enabled() ) { return $title; } if ( ( geodir_is_page( 'post_type' ) || geodir_is_page( 'archive' ) ) && ( $_title = GeoDir_SEO::set_meta() ) ) { $title = $_title; } return $title; } add_filter( 'the_title', 'gd_snippet_the_title', 20, 2 );
Thanks,
KiranHi blumbre,
Map issue is fixed.
You have set default location to Spain, Madrid, Madrid where as all listings are stored with location “Spain, Comunidad de Madrid, Madrid”. I have corrected and set default region to “Comunidad de Madrid” and now detail map is working fine.
Thanks,
KiranThis reply has been marked as private.Hi Ralf,
Issue is fixed. You have set only one menu item “Main-Category” with conditional display for menu “Sek”. So when “Main-Category” is not allowed to visible them menu “Sek” becomes empty and it is invalid.
I have added one menu item “Home” with Everyone now “Main-Category” shows correct title for both logged & non-logged user.
Let us know.
Thanks,
KiranThis will be in next release of Pricing Manager.
Kiran
This will be in next release of Pricing Manager.
Kiran
Hello Eva,
Let me clarify between descriptions.
One description is “location description” which is displayed to show description for the location. “Location Description” widget/shortcode is used to this description. This description can be added from GeoDirectory > Settings > Locations > Countries/Regions/Cities > Edit.Other description is “category description” which is displaced on category pages to show description for the category for particular description(or common for all location). “Category Description” widget/shortcode is used to this description. This description can be added from CPT(Places) > Categories > Edit Category > Description for each country/region/city or set common for country/region/city.
Let us know.
Thanks,
KiranHello Tania,
Please provide us FTP credentials so i can check there and also provide us listing url to check.
Kiran
Hello,
There is JavaScript datepicker script form WP Job Search plugin which conflicts and breaking business hours timepicker slider.
Try following PHP snippet to fix conflict.
function gd_snippet_200330_fix_jobsearch_conficts() { if ( is_admin() ) { // Backend $screen = get_current_screen(); $screen_id = $screen ? $screen->id : ''; if ( wp_script_is( 'geodir-add-listing', 'enqueued' ) && wp_script_is( 'wp-jobsearch-datetimepicker', 'enqueued' ) ) { if ( $screen_id && in_array( $screen_id, geodir_get_screen_ids() ) ) { wp_dequeue_script( 'wp-jobsearch-datetimepicker' ); // Dequeue wp-jobsearch-datetimepicker on GD pages } } } } add_action( 'admin_enqueue_scripts', 'gd_snippet_200330_fix_jobsearch_conficts', 100 );
Thanks,
Kiran -
AuthorPosts