Kiran
Forum Replies Created
-
AuthorPosts
-
Hi Fryderyk,
Please provide us url where you placed this two blocks.
Kiran
Hi Vivek,
This has been fixed and it will be in future release of GeoDirectory v2.0.0.85.
Try this patch till next update. https://github.com/AyeCode/geodirectory/pull/1134/commits/d12a9290a206e810c8c88bdf5f67c19f16c9d611
Thanks,
KiranHello There,
Sorry recent release don’t have included this changes, because we found some compatibility issue with Elementor Page Builder. I will update here once we fix it.
Kiran
April 3, 2020 at 7:52 am in reply to: Force location search to only look at starting letters? #538195Hi Duane,
Un-tick “GeoDirectory > Settings > Locations > Enable location search autocompleter?” to disable autocomplete search on search form.
OR
Try following CSS to hide In: results.
.geodir-listing-search ul.gdlmls-neighbourhood, .geodir-listing-search ul.gdlmls-city, .geodir-listing-search ul.gdlmls-region, .geodir-listing-search ul.gdlmls-country { display: none !important; }
Thanks,
KiranHi Ralf,
The snippet will only work if you have disabled using Yoast SEO from GD settings. GD has own SEO & Yoast also has own SEO. At one time you can use only one SEO for GD pages.
Remove following lines from snippet to force using GD meta even Yoast SEO is not disabled.
if ( GeoDir_SEO::yoast_enabled() || GeoDir_SEO::rank_math_enabled() ) { return $title; }
Kiran
April 3, 2020 at 6:15 am in reply to: Auto populate event address field from selected linked place address #538183This reply has been marked as private.I have re-saved Settings > Permalinks and now listings are working fine.
Check and let us know.
Kiran
April 2, 2020 at 1:37 pm in reply to: Auto populate event address field from selected linked place address #538007This reply has been marked as private.Hi bantyjbc,
We have found issue that categories list are not updating on change of post type. It is working fine in widgets but not working in blocks. We are working to fix this issue.
Thanks,
KiranHi Karin,
Please try now after clearing your browser cache.
Kiran
April 2, 2020 at 11:20 am in reply to: Auto populate event address field from selected linked place address #537993This reply has been marked as private.April 2, 2020 at 11:15 am in reply to: Force location search to only look at starting letters? #537992Hi Duane,
Try following PHP snippet to force location search to only look at starting letters
/** * Force location search to only look at starting letters. */ function gd_snippet_200402_search_by_starting_letters( $sql, $args, $params ) { if ( !empty( $args['search'] ) ) { $search = "'%" . wp_slash( $args['search'] ) . "%'"; $replace = "'" . wp_slash( $args['search'] ) . "%'"; $sql = str_replace( $search, $replace, $sql ); } return $sql; } add_filter( 'geodir_location_get_locations_sql', 'gd_snippet_200402_search_by_starting_letters', 20, 3 );
—
is there a way to force it to always display “Near” results in the dropdown of city/state vs. “In”?
Try to submit search without selecting autocomplete result.
—
In “Near” searches, is there a way to force GD to only display listings in the USA?
Select United States from the location autocomplete results.
Kiran
Hi Manfred,
FTP credentials are not working. Make sure there is no IP/country restriction active to access FTP.
Kiran
Hi Karin,
There is one more problem with the lightbox. The first 2 images are full size, and the other images are smaller and centered. How can I display all images in the same size as the first 2 images?
Can you provide specific url where you see this issue?
—
On mouseover the image title is displayed at the bottom left, although I changed the shortcode to show_title=”0″, and even deleted it, but it still shows the title. How can I fix it?
That is not image title, that is image caption that added to alt tag of image.
You can hide it via css. Try following CSS..lity-opened .lity-content .lity-caption { display: none; }
Let us know.
Thanks,
KiranApril 2, 2020 at 5:04 am in reply to: Auto populate event address field from selected linked place address #537937This reply has been marked as private. -
AuthorPosts