Guust
Forum Replies Created
-
AuthorPosts
-
Hi Al, on ipad and mobile, you type in a few letters in the search box and then you will get 5 suggestions that change.
For example, open the menu, and “search city” for LO, and you will get 5 cities with LO in the name.Hi Mark, this will be added to the next update of the Franchise addon.
If you cannot wait until then, here is what you can do:
1. Open /wp-content/plugins/geodir_franchise/includes/gdfranchise_functions.php
2. Go to line 1280:
<h5><?php _e( 'Manage Franchise', 'geodir-franchise' );?></h5>3. Replace with:
<h5><?php echo apply_filters( 'geodir_franchise_add_listing_header', __( 'Manage Franchise', 'geodir-franchise' ), $post_type, $post );?></h5>4. You can then add a filter per CPT, see example:
function geodirectory_franchise_add_listing_header( $title, $post_type, $post ) { if ( $post_type == 'gd_place' ) { $title = __( 'Manage Place Franchise', 'geodir-franchise' ); } else if ( $post_type == 'gd_event' ) { $title = __( 'Manage Event Franchise', 'geodir-franchise' ); } else if ( $post_type == 'gd_custom' ) { $title = __( 'Manage Custom Franchise', 'geodir-franchise' ); } return $title; } add_filter( 'geodir_franchise_add_listing_header', 'geodirectory_franchise_add_listing_header', 10, 3 );Keep on scrolling 🙂
Or search …This reply has been marked as private.You have to scroll down, or search.
I note that you need to clean your locations a little bit, you have used different spellings for the same region, which creates different regions in the database.
https://wpgeodirectory.com/docs/manage-location/#editIt works in my test site. You are putting it in the right CPT?
We need URL WP admin to check it.Please give us one of the sites to check that does not work, I am not going to look through all of them.
I tried one, but that gave an error because W3 Total Cache is installed, please review https://wpgeodirectory.com/docs/faqs/what-caching-plugin-can-i-use/Is this on a different site? Can we have URL and WP admin please?
3. Up the top of the Places screen in the backend, click on “screen options” and change from 20 to 200 or 500. That will make it a lot faster.
4. You can sort all Places in the backend and the CSV by Title alphabetically? Then you can compare?
You should not change the order of the columns: https://wpgeodirectory.com/docs/core-export/#important
To add a default image: GD > Design > Listings tab > Upload listing no image
You seem to have pasted some records from other programs, for example Schr�der Guesthouse
I suggest you export whatever you have been able to import, so you can work out the ones that did not import. Then you might get a better idea what the error is.is_featured should be left empty or 1 for yes
post_date should be in this format or left empty: 2016-03-10 13:39:31
All columns with image references should have IMAGE in the header column
Always the best idea to add a few listings manually and then export them, then you can see the correct formatting required.
You’re welcome 🙂
I suggest you create a fieldset with all your separate file upload fields below it, but use an empty title for the fields themselves.
That page is indeed a WP page and not a GD page. this is the GD page : http://rmcc.bwwtest.com/physicians/?sort_by=post_title_asc
You need to set the sort as a default if you want it to automatically sort alphabetical.Thanks
Go to GD > Places settings and remove all options from the Advanced Search tab.
Alternatively, you can deactivate the Advanced Search addon itself. -
AuthorPosts