Alex Rollin
Forum Replies Created
-
AuthorPosts
-
June 3, 2019 at 7:20 am in reply to: Feature request: Associate Listing with Address on a 1 to N, not 1 to 1. #490540
You have received several responses in the other topic. There is no need to double post.
June 3, 2019 at 7:19 am in reply to: Names and configuration of the widgets that make GD Tabs. #490539That is using the default configuration, without any custom shortcodes added to the tabs. If you make a new CPT and visit the Tabs for that CPT, that is how it is setup
https://wpgeodirectory.com/docs-v2/places/tabs/The Details template for that page is the default. If you visit the Pages settings and click on Details -> Default content you will see the settings. The only item used in the archive page to show the tabs is gd_single_tabs
GD Post Meta can be used to display the entire description.
GD Post Content is fr an excerpt. It is more useful on Archive Item templates than Detail Page templates because of the Read More link.GD Single Taxonomy is a separate element that is not part of the tabs, is used to show tags and categories, and is part of the Details template. GD Post Meta can be used to show cats or tags instead of both.
There is not a shortcode for reviews.
Please continue the conversation here:
https://wpgeodirectory.com/support/topic/issues-saving-listings/#post-490536Please share WP Admin and FTP credentials so we can debug the issue.
“WordPress Administrator Account Credentials
WP Admin Login URL:
Username:
Password:SFTP / FTP Credentials
Host URL:
Port:
Username:
Password: “Usually you will use the GD Output Location widget in the sidebar of the Details page to display all the fields that are set individually for “SHow in what locations -> Details page sidebar”
To show them individually use GD Post Meta and select the field in the element settings.
For that situation we recommend a two-prong solution
Use the Franchise manager to allow your visitors to add listings in each market they serve
Translate the plugin so that the TEXT of the street address field makes it clear that, once they set the address on the map, they can change the street to any value, even the name of the city.
To help your users be discovered, also make sure to use the GD Locations widget to show links to each location so their listing will be shown.
Location pages are special and can display multiple CPTs, if that is the way you want to go. But, in your case, it seems like dividing them by category on the location page would work better?
AffiliateWP integration has been moved to Invoicing
https://wpinvoicing.com/downloads/category/addons/It does not come with AffiliateWP, that must be purchased separately.
Yes, slugs are global
The default map marker can be set at GD – Settings – General – Show advanced – Default marker icon
There is not a per CPT marker image at this time, but your request has been noted.
June 3, 2019 at 7:02 am in reply to: Listing with multiple locations and optional address fields. #490529We have tried to make Geodirectory work for a wide variety of use cases and for addresses to work, at this time, it requires all parts of the address. In the future we may be able to find a way to make “Region” or “Country” specific directories, but this is the way it works at this time.
As Guust has mentioned the Street part of the address is used to lookup values but, once a value is set, the street value can be set to any value so obscure a specific streetaddress.
The Franchise manager is our go-to solution for listing in multiple locations. Some well known sites follow a similar approach, saying that each market is actually independant. We tried to go one better than that by linking franchise listings together to make them easy to add and edit.
If featured are at the top, not featured are at the bottom.
You can set a sub sort by date.
Featured should be descending.
https://wpgeodirectory.com/docs-v2/places/sorting/This reply has been marked as private.when it comes to editing/renewing does the user still use the generic add-listing page?
Yes, I will flag your topic for the developers to consider whether it might be possible to filter edit links per-CPT.
GDV2 does ‘random’ a bit differently. A random sort order is applied for 24 hours, then resorted again. You can change the 24 hour interval to something different with this code snippet.
add_filter('geodir_rand_seed','_my_geodir_rand_seed'); function _my_geodir_rand_seed($rand_seed){ $rand_seed = get_transient( 'geodir_rand_seed_custom' ); // if we don't have a transient then set a new one if(!$rand_seed){ $rand_seed = time(); set_transient( 'geodir_rand_seed_custom', $rand_seed, 4 * HOUR_IN_SECONDS ); } // validate $rand_seed = absint($rand_seed); return $rand_seed; }How to use code snippets: https://wpgeodirectory.com/docs-v2/faq/customizing/#custom-code
This reply has been marked as private. -
AuthorPosts