Kiran
Forum Replies Created
-
AuthorPosts
-
Hi Jonathan,
We implement things based on higher priority.
Current searching shows best match results at top of the results. With use wild card search that you mentioned will loose this best match things.
To show results for the logic you asked, try PHP snippet provided at here https://wpgeodirectory.com/support/topic/link-posts-search-left-to-right-only/#post-516591
Regards,
KiranHi @laurence,
To display renew / upgrade link along with status on non-author page, try following things.
1) Use PHP snippet provided at here https://wpgeodirectory.com/support/topic/recurring-packages-and-expirations/page/2/#post-528799
2) Use [gd_author_actions author_page_only=0] in Archive Item template.I have tested on my test site and it worked as expected.
Let us know if you still issue after doing this.
Kiran
Hi Alexander,
We have added option ‘show_current’ in Locations widget/shortcode to show current country / region / city / neighbourhood if set.
It will be in next release of Location Manager.
Kiran
Hi @gnhinc,
Conversion is successful from phpMyDirectory to GeoDirectory.
Please check and let us know.
Kiran
This reply has been marked as private.This reply has been marked as private.Hi Rodney,
search=xyz will search results matching keyword in title & description. To search with multiple keywords you can use while pace between keywords. Ex: search=xyz abc
Kiran
Hello Rodney,
To show listings from single category:
http://MYSITE.COM/wp-json/geodir/v2/places?gd_placecategory=85
To show listings from multiple categories:
http://MYSITE.COM/wp-json/geodir/v2/places?gd_placecategory=85,33,25
Just add category id to post type taxonomy.
Example:
For gd_place it will be gd_placecategory=xx
For gd_event it will be gd_eventcategory=xx
For gd_business it will be gd_businesscategory=xxKiran
February 4, 2020 at 4:05 am in reply to: Feature area background images not displayed after importing CSV #528655Hi Dinis,
We have increased zip code length limit to 50 characters. It will be in next release.
To fix it on your site, do following things.
1) Add following PHP snippet
2) Run GD Tool from GeoDirectory > Status > Tools > “Clear version numbers” > Run/** * Increase zip(postcode) field characters limit. */ function gd_snippet_200204_increase_zip_char_limit( $columns, $cpt, $post_type ) { if ( isset( $columns['zip'] ) ) { $columns['zip'] = "zip VARCHAR(50) NULL"; } return $columns; } add_filter( 'geodir_db_cpt_default_columns', 'gd_snippet_200204_increase_zip_char_limit', 20, 3 );
This will increase field limit to 50 characters.
Regards,
KiranThis reply has been marked as private.On author page those actions are displayed via shortcode [gd_author_actions author_page_only=1] from GD Archive Item template.
Set author_page_only=0 to show actions everywhere.Let me know where & which link you want to generate, so i can provide snippet if easily feasible.
Kiran
So the expiration date of recurring packages does not change unless the payment fails? and are they supposed to receive reminder emails or invoice receipt?
Yes, user/admin will receive invoice email on renewal payment.
When gateway site receives renewal payment it sends IPN notification to to the website. At website end it generate new invoice for the renewal payment and sends notifications to the admin/user for the same.What shortcode should we be using for the dashboard page?
Dashboard page can be accessed from “My Dashboard” widget or shortcode [gd_dashboard].
Kiran
Hi @laurence,
Now we’re seeing some recurring listings being renewed properly with authorize.net and the expiration date not changing to next year. Is this expected behavior? Are they supposed to receive payment receipt or reminder emails?
Listings which are running with recurring package will not have any impact of expire date. Because recurring listings only expires when recurring cycles are completed or subscription is cancelled from gateway site(ex: paypal).
—
when a package does get set to Expired Status, the author of the listing cannot see his listing on our dashboard page. It doesn’t display any options to renew their expired listing because it’s not visible.
I’ve tried usingUser can see expired listings on dashboard page. Can you provide example listing which not displayed on user’s dashboard?
Kiran
This reply has been marked as private.February 3, 2020 at 8:37 am in reply to: One category has a -1 in the permalink. Where do I fix this? #528467I have renamed all categories slug with -1.
FYI: You can edit media/attachment slugs from Media > Media Item > Edit page.
Kiran
-
AuthorPosts