Alex Rollin
Forum Replies Created
-
AuthorPosts
-
November 28, 2019 at 9:14 pm in reply to: Create Directory of "People Listing" in ~20K Companies #519079This reply has been marked as private.November 28, 2019 at 9:14 pm in reply to: Create Directory of "People Listing" in ~20K Companies #519077This reply has been marked as private.
I am unable to login with those credentials. Please validate them and repost so we can take a look.
A general guideline is 60 fields, but you can contact your host and ask them about increasing the max size of your db tables.
If you are unable to create any fields, please share all your connection information here in a private reply so we can check that out, but also ping your host about your db settings.
WordPress Credentials
WP Admin Login URL:
WP Admin Username:
WP Admin Password:FTP Credentials
FTP Host:
FTP Port:
FTP User:
FTP Password:DB Credentials
DB PHPMyAdmin URL:
DB Name:
DB User:
DB Password:If you don’t have DB credentials please share CPanel login.
Make sure to click private reply
Have you network activated GD or addons? If so, activate them only on the subsite.
If we need to check the settings please write back with WP Admin credentials and login url in a private reply.
GD with the Location Manager has the Near Me button, which will load the Location page centered on a lat lon with a radius search applied to show listings using the location page template. There is not a way to change that to make it happen on a different page.
I checked your site but I don’t see a search page. Please share a link to where you see the issue, and wp admin credentials if we need to check the settings.
Try deleting the plugin and reinstalling from the extensions panel.
We have some changes planned, but for now the extensions panel is not retroactive, meaning, it will work with a membership key for addons installed with that key from the panel.
Please try removing the key from the other plugin. GD will serve other plugins with the key if necessary (and the plugin is using WP best practices for loading Google maps).
If we need to check, please share a link to the page of the other plugin where you add the key.
Hello,
Can you say more about where you are seeing the error?
Did you already check our docs about setup of the geocoding key?
https://wpgeodirectory.com/docs-v2/integrations/google/#key-2
If we need to check the site to see the google api error please share wp admin credentials and login URL in a private reply.
Excellent, thanks for letting us know.
The Location page should not be set as the Front page, it will not function correctly.
Here’s a post about that:
https://wpgeodirectory.com/support/topic/i-need-to-exclude-gd-scripts-for-non-gd-pages/#post-517644Let us know how it goes
Hello,
thanks for reporting that. Please share WP Admin credentials so we can see the issue on your site and fix that up.
I will ask the developers to take a look at your question
November 28, 2019 at 5:57 am in reply to: Create Directory of "People Listing" in ~20K Companies #518986Are you using WP All import?
You cannot update listings if you do not include the post ID in your import sheet. To get the post ID you would need to export the listings using the GD Export functionality.You can use the screen options to set paging on Places -> All to 200 and delete 200 at a time.
Or you can use an action like this:
function delete_all_posts_from_custom_post_type($cpt ){ if($cpt){ global $wpdb; $posts = $wpdb->get_results($wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_type = %s",$cpt)); if(!empty($posts)){ foreach($posts as $post){ wp_delete_post($post->ID,true); } }else{ echo "done"; } } } delete_all_posts_from_custom_post_type('gd_place'); -
AuthorPosts