Kyle Phillips
Forum Replies Created
-
Forum: Plugins
In reply to: [Nested Pages] Deleted Pages?I believe this is an issue related to a couple of bugs that came up with the 4.4 update.
Version 1.5.4 of the plugins should resolve this, but you may need to regenerate the menu to get the pages back into the Nested View.
- Visit Appearance > Menus
- Select the Nested Pages Menu and Delete it
- Visit Pages and make sure the sync option is checked
- Revisit Appearance > Menus. Your Nested Pages generated menu should be back. You’ll need to reassign the menu to the appropriate theme location
Forum: Plugins
In reply to: [Nested Pages] Bug: duplicated menu items (with fix)v1.5.4, just released, includes this patch.
Forum: Plugins
In reply to: [Favorites] Email list of favoritesHere’s an example Gist to get you started if you’re using Gravity Forms:
https://gist.github.com/kylephillips/e3ff276a0355b2cb5d38
You’ll need to update the specific form ID and field entry keys to match your form, and edit the notification output for your needs.
Forum: Plugins
In reply to: [Favorites] What database table does Favorites use?simplefavorites_countIf a user is not logged in, and the plugin setting “Include in Post Favorite Count” isn’t checked, it won’t count towards/save that number.
Forum: Plugins
In reply to: [Favorites] What database table does Favorites use?I’m sorry, I probably wasn’t clear.
The actual post ID for logged-in user favorites are stored as user meta, which is in the
usermetatable, under the corresponding user. This is stored as an array, by site_id (for multisite installations). If the user is logged out, nothing is stored in the DB.The only information stored in the postmeta table is the total number of favorites a post has. If you’ve disabled anonymous users’ favorites from effecting count, those won’t be reflected here.
Forum: Plugins
In reply to: [Favorites] What database table does Favorites use?Logged in users’ favorites are stored as user meta with the key of
simplefavorites. (Stored as an array)Total number of favorites for a specific post is stored as custom post meta, with a key of
simplefavorites_count.Anonymous users’ favorites are not stored in the DB. They are stored either by session or cookie, depending on the plugin option selected.
Forum: Plugins
In reply to: [Simple Locator] Customize the content in pop up tooltip on mapIt’s not currently possible, but there will be a filter in the next release of the plugin that includes this (it was a user contribution).
Forum: Plugins
In reply to: [Nested Pages] Bug: duplicated menu items (with fix)This is ready to go for the next release.
Forum: Plugins
In reply to: [Favorites] Button in theme's masonyTo show the button, you’ll want to use the
get_favorites_button()function. If you’re inside the loop, the post id isn’t necessary.Forum: Plugins
In reply to: [Nested Pages] Multiple custom menusI’ll be adding a filter, which should make it in the next release.
Once it’s included, I’ll post an example code snippet to place in your functions.php to hook into it.
Forum: Plugins
In reply to: [Nested Pages] Nested page results in 404You’re not doing anything wrong.
For the time being, try the fix listed here:
https://wordpress.org/support/topic/153-breaks-woocommerce-bookings-product-linksForum: Plugins
In reply to: [Nested Pages] 1.5.3 breaks WooCommerce Bookings Product LinksFor now, just remove that line. It’s been problematic for some users, and I’m guessing it’s what is causing your issue.
The underlying issue will be addressed with the next release.
Forum: Plugins
In reply to: [Nested Pages] 1.5.3 breaks WooCommerce Bookings Product LinksIn the
app/NestedPages.phpfile, try removing line 18:if ( !is_admin() ) $app = new NestedPages\FrontEndBootstrap;
Forum: Plugins
In reply to: [Simple Locator] importing/mapping additional_info?There’s no built-in methods, but it’d be pretty straightforward to list locations by state using a custom WP_Query object.
If you’re using the built-in post type/fields, you could use the
wpsl_statemeta field to query against.https://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters
Forum: Plugins
In reply to: [Nested Pages] Multiple custom menus1. Currently, there is only one primary menu that can be synced.
2. There isn’t currently a way to control how deep nesting goes, although I could see adding a filter for that.