Kiran
Forum Replies Created
-
AuthorPosts
-
This reply has been marked as private.March 19, 2019 at 1:48 pm in reply to: Problem with tags with the same name in different languages #475352This reply has been marked as private.
Hello Marcel,
If you are using v2 then you can add rating from Pages > GD Detail Page > Add block > Post Rating.
If you are using v1 then you can use following hook to display rating below the title.
add_action('geodir_details_main_content', 'geodir_detail_page_review_rating', 20);Kiran
Yes, may be that was the reason.
Hello Tsekka,
We have opened task for this issue. https://github.com/AyeCode/geodirectory/issues/655
Kiran
Hello Kristjan,
I have investigated and found that there is an error “cURL error 35: error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure” which creates trouble for uploading image.
Ask your server admin to setup valid SSL certificate. You can try temporary solution provided at here: https://wpgeodirectory.com/support/topic/images-not-showing-after-upload/#post-469642y
Thanks,
KiranHi Vivek,
After doing some investigation found that it is BuddyPress Global Search(buddypress-global-search) plugin that breaks GeoDirectory search functionality.
BuddyPress Global Search is not compatible with GeoDirectory search. See https://wpgeodirectory.com/docs/known-issues/#bp-global-search
Thanks,
KiranThis reply has been marked as private.This reply has been marked as private.Hello Bren,
On the main directory map on my front page and the archive page map, the default post type doesn’t show if it’s set to the original gd_places (which I’ve changed to Courses on my site). If I click on another post type and then back to that original one, the map markers will show, although the map doesn’t auto-zoom like it does for the other post types, showing all markers on the map.
I have fixed this. There was a one listing “WARP” which has incorrect value for latitude(it has incorrect character). I have fixed it by re-saving that listing.
—
I cannot get rid of the gd_event CPT. It shows up on the map and I need it removed from there. I have no GD events, event tags, or event categories and I cannot delete that post type. I have deactivated and deleted the GD Events plugin. And still it remains.
In v2 we are enhancing displaying post type & markers. In next release there will be option in map widget/shortcode to hide CPT on map.
Till next release you can hide a CPT from map via hook. Use following snippet to hide event CPT from map.
/** * Remove map post types. */ function gd_snippet_190318( $post_types = array() ) { if ( isset( $post_types['gd_event'] ) ) { unset( $post_types['gd_event'] ); } return $post_types; } add_filter( 'geodir_map_post_types', 'gd_snippet_190318', 10, 1 );—
I just noticed another problem that might be related. No new Place/Courses are showing up on the map. The 25 or so that are on there are from BEFORE the conversion. I have added about 30 more AFTER the conversion. These show up as listings elsewhere on the site, but are not showing on the map.
I have checked you have 48 Place/Courses listings. I see all 48 listings on map. Please provide page link where you find missing markers for some listings.
Best Regards,
KiranThis reply has been marked as private.This reply has been marked as private.March 15, 2019 at 2:40 pm in reply to: Problem with tags with the same name in different languages #474734This reply has been marked as private.This reply has been marked as private.March 15, 2019 at 9:45 am in reply to: Problem with tags with the same name in different languages #474687This reply has been marked as private. -
AuthorPosts