Kyle Phillips
Forum Replies Created
-
Forum: Plugins
In reply to: [Favorites] Favorite userIt is not currently possible to favorite users… only post types.
Forum: Plugins
In reply to: [Favorites] How to change star icon to heart icon?I’m going to mark this as resolved, since the newer versions have a built-in option of changing the button display.
Forum: Plugins
In reply to: [Favorites] Favorite post using REST APINot yet, although my goal is to implement this in a “pro” version, in planning now.
Forum: Reviews
In reply to: [Nested Pages] A must-haveWPML support is coming… it is being tested by their team now.
Polylang should follow, although I haven’t dug deep into it yet.
See this topic… there are a couple features that are unfortunately not possible to support, but the core functionality will be there:
https://wordpress.org/support/topic/wpml-looking-for-testers/I’m a little perplexed as to why the code above would be producing the error. It looks like all it is doing is using the built-in audio shortcode and adding a CSS class to it.
I’ve tried reproducing the error locally, but have been unable to.
Forum: Plugins
In reply to: [Favorites] Shortcodes in modal boxShortcodes have been enabled in the latest release, 2.1.6.
It also includes and option of redirecting to a post/page by ID.
Forum: Plugins
In reply to: [Favorites] Not working after last updateBlair,
I know it has been a while, but is your website by any chance hosted on WP Engine?Forum: Plugins
In reply to: [Favorites] Go to favorites page when button is clickedYou could do this using Javascript.
There is an event that is triggered when a favorite has been saved. Something like this should work.
Forum: Plugins
In reply to: [Favorites] Add category post and date of publicationBy using the
favorites/list/listing/htmlfilter, you can add any content you’d like to the listings.The filter and available parameters are listed on the plugin website. Scroll to the header ‘Customize the Favorites Listing HTML’.
Forum: Plugins
In reply to: [Favorites] Favorites button not workingIt sounds like the form nonce is not verifying correctly.
Try updating to the latest version 2.1.4.
Forum: Plugins
In reply to: [Favorites] Favorite list show future postsI’ve added a filter parameter for status in the latest version, 2.1.4.
Once you install that, you can pass it in to your get_user_favorites function:
$filters = array(
‘status’ => array(‘publish’,’future’)
);
$favorites = get_user_favorites(null, null, $filters);Forum: Plugins
In reply to: [Favorites] Customize Fonts in Plugin?There are a couple of ways to do this. You can either choose the “custom markup” option for the button and use your own css classes & elements, or you can use one of the many filters available.
All are documented on the plugin website.
Forum: Plugins
In reply to: [Favorites] Favorite post list doesn’t work after the latest update.The update just released, 2.1.3, should fix this
It sounds like there is either a javascript conflict, or a plugin conflict affecting the back end response.
Try updating to the latest release, v2.1.2.
If the issue remains, check the developer console for any javascript errors that may be occurring.
The latest release also includes a “development mode” that when enabled, will log ajax responses in the console. That may help in figuring out what is going on.
Forum: Plugins
In reply to: [Favorites] Updating to version 2Update, as of 2.1.2, the default behavior has been restored to include all post types in lists.