Erick Hitter
Forum Replies Created
-
Forum: Plugins
In reply to: [ETH Redirect to Latest Post] Possible to limit to certain category?That can be done using the
eth_redirect_to_latest_post_query_argsfilter to add one of the category parameters described at https://developer.ww.wp.xz.cn/reference/classes/wp_query/#category-parameters.Forum: Plugins
In reply to: [Taxonomy Dropdown Widget] Adjust font sizeThe title has the class
widget-titlethat you can use for this.Forum: Plugins
In reply to: [Taxonomy Dropdown Widget] Sort by tag slugThe widget options don’t support this, but using the
taxonomy_dropdown_widget_optionsfilter, you can setorderbytoslug.Forum: Plugins
In reply to: [WP Print Friendly] Raven.context() call failsDespite the similar naming, that script is not part of this plugin.
Forum: Plugins
In reply to: [WP Revisions Control] dont workThis plugin purges excess revisions when posts are saved. Adjusting the settings under Settings > Writing will only purge revisions from posts that are updated after the settings are changed.
Forum: Plugins
In reply to: [WP Revisions Control] What does ‘Custom CSS’ refer to? ‘Additional CSS’?A plugin that you’ve installed created a post type called Custom CSS, and that post type enables revisions. Jetpack is one possibility.
Forum: Plugins
In reply to: [WP Revisions Control] WPML Compatibility?I believe this will work with WPML as I’m not aware of any specific incompatibility.
You can remove existing revisions through the Bulk Actions dropdown in the post list table. It includes options to purge only excess revisions, or to remove all revisions from selected posts.
Forum: Plugins
In reply to: [Taxonomy List Widget] Styling current tagThat’s not currently possible, but I’ll make a note of this feature request.
Forum: Plugins
In reply to: [Taxonomy Dropdown Widget] Use as Author Dropdown?That is not possible. This plugin only supports taxonomies, and authors generally are not stored in a taxonomy.
Forum: Plugins
In reply to: [WP Revisions Control] Text-Domain IssueThis is an unfortunate situation. I have to decide between maintaining the existing translations and breaking those for the sake of new translations. I need to think about this before I commit to any updates.
Forum: Plugins
In reply to: [WP Revisions Control] Text-Domain IssueThanks for noting this!
I’m disinclined to make this change only because the plugin already has translations that would be invalidated by doing so. I may consider it if I can find a volunteer to redo the translations, which may be necessary as part of an unrelated effort to add native Gutenberg controls.
There is nothing in WP Revisions Control that would remove its settings when migrating between environments. If this is a bug, I do not believe it is in my plugin.
Forum: Plugins
In reply to: [External Permalinks Redux] External Permalinks – Open in new tabThat is not a feature of this plugin, though there are plugins that exist for this purpose, or you may need to change your theme’s markup to accomplish this.
Forum: Plugins
In reply to: [Taxonomy List Widget] CSS Style to Darken List FontThe plugin inherits its styles from the theme it’s used with, but doesn’t itself apply any styles. There are various classes in the markup that you can use to adjust the list’s appearance.
Forum: Plugins
In reply to: [Taxonomy List Widget] Limit results to specific categoryThis is possible in WordPress, but is not a feature of this plugin. Using either query strings or custom rewrite rules, you can create a query that limits by both category and tag. The filter in
get_term_link()allows you to change the URLs in the list widget.