Guust
Forum Replies Created
-
AuthorPosts
-
You’re welcome 🙂
Just open a new ticket if you need more help.This reply has been marked as private.From https://wpgeodirectory.com/docs/layout
When you activate GD on your site, GD will create some extra pages. These are listed below.
From https://wpgeodirectory.com/docs/troubleshooting-guide/
Adding these shortcodes to any WP page will give you a good overview of what GD pages have been created and their correct URL:
[gd_advanced_search]
[gd_login_box]
[gd_cpt_categories]
[gd_location_switcher]Thanks
It is a GoDaddy issue, everyone that hosted by GoDaddy has the problem because of their settings.
Thanks
What is the problem with the Add Listing pages links?
URLs are like this
domain/add-listing/?listing_type=gd_CPTNAME&package_id=#For example
…/add-listing/?listing_type=gd_service&package_id=11
…/add-listing/?listing_type=gd_food&package_id=3
etcThis reply has been marked as private.1. A listing in one CPT can be linked to a listing in another CPT, as long the listings belong to the same user. It does not matter what category the listings are in.
2. You can create a WP page that links to all the different Add Listing pages if you like, or add links in the top of the Add Listing page, by editing the Add Listing page.
Thanks
April 18, 2018 at 10:01 am in reply to: Provide event to business linking for paid listings only #427068The simplest way would be to hide the events tab for the one package (adjust for the package ID):
.gd-package-id-1 dl.geodir-tab-head [data-tab="#link_business"]{ display:none!important; }To add the package ID as a body class for the detail page, add this PHP code to a snippet or your functions.php
// add the package id to the body add_filter( 'body_class', 'my_add_package_class',10,1 ); function my_add_package_class($class){ global $post; if (geodir_is_page('detail') && isset($post->package_id)) { $class[] = "gd-package-id-".$post->package_id; } return $class; }Thanks
Or give us cPanel credentials. Thanks
April 17, 2018 at 1:10 pm in reply to: Notifications for expiring listings if package has recurring payment option #426961Recurring packages only work if the user has agreed and entered into a contract with PayPal for money to be taken out on a regular basis. Just changing a non-recurring to a recurring cannot force people into an ongoing contract, and will only work properly for new listings created on that package.
You only need to create a recurring and non-recurring package once, there should be no administration.
1. Get the Widget logic plugin: https://wordpress.org/plugins/widget-logic/ and activate
2. In a widget that you only want to show for the gd_place CPT you would addgeodir_get_current_posttype()=='gd_place'2. In a widget that you only want to show for the gd_event CPT you would add
geodir_get_current_posttype()=='gd_event'Thanks
I am guessing you changed the WordPress Settings > Discussions settings after you imported the listings.
There are 2 options then:
GO through each listing to change the “Allow comments” box, or
export all listings, delete all of them, and re-import without post numbers [not tested, but this should work, try with a few first to check maybe].Thanks
The event plugin does not come with the possibility for users to register.
You can use the “Are you interested” widget: https://wpgeodirectory.com/docs/events-addon-widgets/#interested
Or add instructions as how to register as part of the listing.Thanks
Have you activated the plugin? Then it should allow listings anywhere.
Please post your WP admin details and URL if you want us to check your settings.Thanks
How are you adding the instagram feed? Is that not with a GD custom field? Then you can exclude/include it in a pricing package.
-
AuthorPosts