Kiran
Forum Replies Created
-
AuthorPosts
-
Hi Misty,
I applied a patch on your site, please check and let us know.
Thanks,
KiranHi Rodney,
By default is returns 10 items per page. You can use per_page parameter to retrieve desired number of items per page.
Ex: &per_page=20See https://developer.wordpress.org/rest-api/using-the-rest-api/pagination/#pagination-parameters
Kiran
Hello Misty,
Try following PHP snippet to link pending posts.
/** * * Allow to link pending posts. */ function gd_snippet_search_include_pending_posts( $where ) { $search = "p.post_status = 'publish'"; $replace = "( p.post_status = 'publish' OR p.post_status = 'pending' )"; $where = str_replace( $search, $replace, $where ); return $where; } add_filter( 'geodir_cp_search_posts_query_where', 'gd_snippet_search_include_pending_posts', 20, 1 ); add_filter( 'geodir_cp_check_link_post_query', 'gd_snippet_search_include_pending_posts', 20, 1 );
Regards,
KiranHi Olga,
Issue has been fixed, please check and let us know.
Thanks,
KiranHi Gary,
Please check and let us know.
Kiran
March 13, 2020 at 4:14 am in reply to: GD creating multiple images each time on import of categories #535078Hello There,
Can you provide us .csv file that you are trying to import? Please attach .csv file in zip format.
Thanks,
KiranThis reply has been marked as private.March 12, 2020 at 11:00 am in reply to: Problems translating CPT Names with WPML String Translation #534955Hi jotomas,
I checked with same WPML setup on my test site and it is working as expected there.
Can you provide FTP credentials to check more there?
Kiran
March 12, 2020 at 10:42 am in reply to: Translated listing not found + internal editor no entries found #534954How or where shall I translate those Categories and tags slugs in an alternative way?
Categories & tags slugs are not translatable.
—
I implement those customized entries into the child theme styles.css then its also not working. Are you able to may help me to find out if there could be a css entry that causes that problem?
Try following CSS
.geodir-content-right .widget_icl_lang_sel_widget .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu { position: inherit; }
If it now working then ask help from “Simple Custom CSS plugin” team, because they knows flow of the plugin better.
Kiran
This reply has been marked as private.March 12, 2020 at 9:18 am in reply to: Translated listing not found + internal editor no entries found #534943This reply has been marked as private.March 12, 2020 at 8:50 am in reply to: The Add-listing page width on iPhone 7 is wider than the screen #534942Hello Alexander,
Can you try again after clearing your browser cache for following pages?
https://wpgeo.directory/starter/places/
https://wpgeo.directory/starter/add-listing/?listing_type=gd_placehttps://wpgeo.directory/supreme-directory/places/
https://wpgeo.directory/supreme-directory/add-listing/?listing_type=gd_placehttps://wpgeo.directory/gdf/places/
https://wpgeo.directory/gdf/add-listing/?listing_type=gd_placeLet us know how it show to you.
Thanks,
KiranThis reply has been marked as private.Hi Christina,
“GeoDirectory WP All Import” plugin provides integration for “WP All Import” & “GeoDirectory”.
“GeoDirectory WP All Import” is developed to import data into GeoDirectory via “WP All Import” plugin.
So to work “GeoDirectory WP All Import” it must have “WP All Import” installed & active.
Thanks,
KiranHi Olga,
I tried searching with “World trad park jaipur” at Google Place Autocomplete Address https://developers.google.com/maps/documentation/javascript/examples/places-autocomplete-addressform but it not showing any results.
Autocomplete suggestions are listed from Google API response.
Thanks,
Kiran -
AuthorPosts