Kyle Phillips
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Locator] importing/mapping additional_info?1) There is currently only one input available… you can label it however you’d like, but I’d recommend keeping it “Location”. There are logical issues with distance/radius search, Geocoding locations, and results that I plan on writing about on the plugin site when I get a chance.
2) Maps can’t be turned off. This would violate Google’s API terms (the maps API is used to geocode locations entered, and based on their API terms, a Google map must be displayed if you’re using their data). You could hide them via CSS, but again, you’re technically breaking Google’s Map API terms at that point. See the Google API FAQs for more information.
3) The results are listed in order of distance from the location entered in the search. Currently, there’s no way to reorder that list. If you’re just looking for an alpha list of all locations, you could setup your own loop and query the
locationpost type (or if you’ve changed the post type to your own, query that).Forum: Plugins
In reply to: [Nested Pages] Navigation Label override does not workThis should be cleared up in v1.5.3, just released.
Forum: Plugins
In reply to: [Simple Locator] address_two vs full_addressWhen importing, if you have your fields split into address_one and address_two, it’ll combine those when geocoding and save them separately as WP meta fields.
The full_address is for when you might have a large CSV file with a single column that contains the full address.
If possible, it’s better to use the split fields (address_one, address_two, city, etc…).
Forum: Plugins
In reply to: [Nested Pages] Menu Removed on User LoginI’m sorry you’re having issues. I’ve had someone else with a similar issue.
Try the following, which will “reset” the generated menu:
- Disable the sync option
- Delete the menu under Appearance > menus
- Go back to the page listing and re-enable the sync (this will regenerate the menu)
- Visit the Appearance > Menus page again and reassign the newly generated menu
Forum: Plugins
In reply to: [Nested Pages] Integrate the Duplicate Post pluginMarking this reaolved, since Nested pages now includes its own cloning feature.
Forum: Plugins
In reply to: [Favorites] How to insert favorite button into Essential Grid entriesYou should be able to use the
[favorite_button]shortcode, and not include an explicit post id. If the shortcode is called inside the loop, it defaults to the current post.Forum: Plugins
In reply to: [Favorites] How to remove admin-ajax?Calls to admin-ajax are only made after the initial page load is complete.
There is one call after page load, which updates all the button statuses and lists.
This is to get around issues inherent to cached pages. If page cache is enabled (whether through a plugin like w3 total cache or through a managed host like WP Engine), and this call isn’t made, the favorites displayed are going to be incorrect. The AJAX call fetches the correct favorites/lists and replaces the cached version, which fixes this issue.
The only other call is when a user actually favorites an item.
Forum: Plugins
In reply to: [Favorites] wich custom field is using Favorites ?Favorite counts are stored in a post meta field named
simplefavorites_count.Forum: Plugins
In reply to: [Nested Pages] add_submenu_page for CPTI know it’s been a while, but believe I have this issue fixed.
If either of you (or anyone else) is willing to test this fix before I release it here, shoot me a message with your email using the contact form on the plugin site, and I’ll send you a patched version:
Forum: Plugins
In reply to: [Nested Pages] Order pages within a categoryCategory filters have been added as of v1.5.
Forum: Plugins
In reply to: [Nested Pages] Enhancement Request: Option to Require Confirmation on DeleteThis will be included in the next release.
The confirmation will appear for link items since those are permanently deleted (not trashed).
It will not appear for normal pages/posts, since that’s the normal WP behavior for trashing posts.
Forum: Plugins
In reply to: [Nested Pages] Pages nested under a link permalink issueThis will be resolved with the next release.
Forum: Plugins
In reply to: [Favorites] New Update 1.2.3 Broke User Favorites ListIf you have page caching enabled, make sure to clear that. The update adds a data attribute to the HTML that is required by the AJAX call.
Forum: Plugins
In reply to: [Favorites] Can we add the button using any shortcode?Shortcode:
[favorite_button]Get Function:
get_favorites_button()Echo Function:
the_favorites_button()All are described on the plugin website: https://favoriteposts.com/
Forum: Plugins
In reply to: [Simple Locator] Import Functionality Not workingIs the CSV something you could share?
You can contact me via email on the plugin website (form at the bottom of the page).