Kyle Phillips
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Locator] Possible to search distance between posts & user?Couple things… may not be the best plugin in your case.
1. If you’re using the ACF Google Map field, it stores the latitude & longitude in a single field as an array. Simple Locator isn’t compatible with that specific field type for that reason.
2. Currently only post types are supported, not custom user meta.
I’ve been looking for a way to add support for the ACF Google Map field, just haven’t found it due to the way it stores its data.
Forum: Plugins
In reply to: [Nested Pages] Quick Edit Menu Not AppearingAre there any Javascript errors in the console?
Are there any different plugins on the live site vs your local/test site? (I’m aware of an issue with modals on WP Engine hosting, but the quick edits aren’t effected)
Forum: Plugins
In reply to: [Simple Locator] Location posts on result pageRE: loading ajax posts below the map:
That’s a little outside the scope of the plugin, but you can pull that in yourself.
In v1.1.4, I’ve added the post ID to the marker click callback function:
wpsl_click_marker(marker, i, active_form, post_id)So, you could trigger an ajax load inside that function and pass the post_id parameter to specify which post to grab.
RE: flush rewrites:
Rewrites were being flushed, but not when updating the ‘locations’ type/label. That’s been added in v1.1.4Forum: Plugins
In reply to: [Nested Pages] Page order changingThis could possibly be related to this issue:
https://github.com/kylephillips/wp-nested-pages/issues/97
If so, that particular issue will be fixed in the next update. If not, any additional details you have would be helpful.
Forum: Plugins
In reply to: [Simple Locator] DistanceIf you take out the returns, it should work correctly (I know there are returns on the documentation site, but it’s more for illustration – I’ll make a note of that).
[wp_simple_locator distances="5,10" mapheight="450" mapcontainer="#fullpage-map" buttontext="icon-search" addresslabel="U.S. Zip Code or City" mapcontrols="show" resultscontainer="#mapresults" mapcontrolsposition="RIGHT_BOTTOM"]Forum: Plugins
In reply to: [Simple Locator] DistanceIf you’re using the shortcode, include a distance parameter:
[wp_simple_locator distances="5,10"]If you’re using the widget, there’s a field for distance options when adding the widget.
@tacoverdo. That worked – update is now installing/activating without errors. Thx!
If it helps, this is the error I get when attempting to update to 1.7.3.3 on WP 4.1.1:
Fatal error: Class 'WPSEO_Options' not found in (file path) wp-seo-main.php on line 134Forum: Plugins
In reply to: [Nested Pages] An empty page acting as a folderIt sounds like there may be a Javascript and/or style conflict with another plugin. This has happened before, but it’s been isolated and I’ve had difficulty in getting details on what may be causing it.
Would you mind sending me the following info (support@nestedpages.com)?:
- A list of installed plugins (including any host-added plugins like WP Engine)
- Operating System/Browser you’re using
If you’re familiar with the browser Javascript console, would you mind checking it for errors?
Forum: Plugins
In reply to: [Nested Pages] Menu not displayedI had multiple complaints about the menu being enabled by default, so it is now disabled by default on fresh installs.
Forum: Plugins
In reply to: [Nested Pages] An empty page acting as a folderYou can get the same functionality by adding a link in the Nested Pages interface (select the “Add Link” button at the top of the page or click the link icon under a row item). Just use a hash as the link. You’ll then be able to drag pages underneath that item.
Forum: Plugins
In reply to: [Nested Pages] Woocommerce pages — check out, my account, etcChanging page structure shouldn’t effect woocommerce functionality.
The main thing to keep in mind before changing your page structure is broken links. If you have an established site, and you change your url/page structure from “site.com/myaccount” to “site.com/shop/myaccount”, any existing links outside your site or hardcoded in will be broken (unless you put 301 redirects in place).
If you want to use the nested view but “lock down” the page structure, you can disable page nested under settings > nested pages > post types.
Forum: Plugins
In reply to: [Nested Pages] Alphabetical sortingThere is alphabetical sorting available for enabled non-hierarchical post types, but not hierarchical types.
The reason primarily has to do with nesting and menu synchronization. If various sorting options were enabled for pages, it would be really easy to inadvertently reorder your entire menu with one click… I could see that being very confusing for users.
If you need to sort alphabetically, I would recommend selecting the “default pages” link (provided it’s not disabled under the nested pages settings), to sort using the default interface.
Forum: Plugins
In reply to: [Nested Pages] An empty page acting as a folderI may not be understanding the question, but there isn’t really a concept of a “folder”… only parent/child relationships between pages/posts.
So, if you were to create an empty page to act as a parent for other pages, that page will be published and available.
When it comes to hierarchical pages and nesting, It’s no different than the built-in parent/child relationships, just provides a different interface for interacting with it (and a generated nav menu to match).
Hope that answers your question…
Forum: Plugins
In reply to: [Nested Pages] Menus being changed?Thanks for bringing that error to my attention. I’ve just released a patch update to resolve it.