Kiran
Forum Replies Created
-
AuthorPosts
-
This reply has been marked as private.
Hello There,
I have added GeneratePress theme page layout compatibility.
Please provide FTP credentials to apply patch on your site. FTP credentials you provided are not working.
Kiran
June 1, 2019 at 2:54 pm in reply to: Different “GD Archive Item” template for each “Package” type? #490351Hi,
Please try following snippet to use different page archive item for each package.
function gd_snippet_010619_archive_item_page_id( $page_id, $post_type ) { global $gd_post; if ( ! empty( $gd_post ) && ! empty( $gd_post->package_id ) ) { $package_id = $gd_post->package_id; if ( $package_id == 1 ) { // MATCH PACKAGE ID $page_id = 123; // ARCHIVE ITEM PAGE ID from PAGES } elseif ( $package_id == 2 ) { $page_id = 234; } elseif ( $package_id == 3 ) { $page_id = 567; } } return $page_id; } add_filter( 'geodir_archive_item_page_id', 'gd_snippet_010619_archive_item_page_id', 10, 2 );Kiran
Hi Alexandra,
Google map taking too much time to load around 7900 listings markers. I have enabled marker cluster by adding marker_cluster=1 in gd_map shortcode. Now map is loading fine.
Please check and let us know.
Regards,
KiranHi eic2010,
It looks like “Event Dates” field is not saved properly in CPT(What’s On) > Settings > Search.
I have have deleted and added again and it fixed issue.Please check and let us know.
Thanks,
KiranHi Nolan,
Sorry missed this topic.
I have done some debugging and found that “Author Archives” page is disabled via Yoast SEO settings.
I have enabled “Author archives” from SEO > Search Appereance > Archives > Author archive settings. Now my listings & my favorites pages are working fine.
Regards,
KiranJune 1, 2019 at 1:25 pm in reply to: How to publish payment packages for front end user to choose #490343This reply has been marked as private.Hi Kate,
Please check now. I run GD Tool from GeoDirectory > Status > Tools > Clear DB versions. Running this tool fixed missing field.
Kiran
Hello,
Please check now.
I have enabled plugin “Full Screen Menu for Elementor” and now menu is back.
Kiran
This reply has been marked as private.I had already changed it and selected “GD Location page” at GeoDirectory > Settings > Pages > Location.
Now /directory/ page is working fine.Kiran
Hi Kate,
You have assigned same page as a site front page and as a GD location page.
A Page selected at GeoDirectory > Settings > Pages > GD Location page can not be used as a front page or a home page.Please check and let us know.
Regards,
KiranHo Tony,
This is already fixed and i have applied patch on your site.
Please check and let us know.
Best Regards,
KiranJune 1, 2019 at 8:55 am in reply to: Single Location Region not loading map in Safari/Firefox #490300Hi Foster,
Try following steps to show listing count even for one page:
– copy template file \plugins\geodirectory\templates\loop\pagination.php into your child theme or theme. (so path will be THEME\geodirectory\loop\pagination.php)
– In file THEME\geodirectory\loop\pagination.php find:if ( $wp_query->max_num_pages <= 1 ) {and replace that line with
if ( $wp_query->max_num_pages < 1 ) {—
My first issue with the map not loading seems to have been solved.
I tried but still not replicating issue from my side.
Did you tried on other system?Regards,
KiranThis reply has been marked as private. -
AuthorPosts