Hi, the plugin emits some Deprecated notices on PHP 8:
PHP Deprecated: Creation of dynamic property VG_Required_Taxonomies::$args is deprecated in /var/www/html/public/content/plugins/required-taxonomies/index.php on line 154
PHP Deprecated: Creation of dynamic property VG_Required_Taxonomies::$vg_plugin_sdk is deprecated in /var/www/html/public/content/plugins/required-taxonomies/index.php on line 154
Can you fix this?
Thank you
]]>Hi!
If you use “Classic Editor” plugin, WP Required Taxonomies don’t work and return a js error in the console.
In lines 33-34 of wp-content/plugins/required-taxonomies/assets/js/admin.js file:
// Is gutenberg?
if (jQuery('.components-panel__body-toggle').length)
This if return true with “classic editor” plugin, but Gutenberg is not active, so next lines fails.
It’s possible to fix it?
Thanks!
]]>Hello,
The plugin works well with Gutenberg but does not work with the Classic Editor.
Thanks for your help
Strangely, this plugin only works when the ‘Post’ settings sidebar is displayed on the right. If the ‘Block’ settings sidebar is displayed or the settings sidebar is hidden, the user is able to publish a post despite even when untagged.
In the plugin settings I choose ‘Posts’ and ‘Tags’.
]]>Hi,
I am wondering if your plugin can support, or already supports the ability to have a list of “Mandatory” terms. Alternatively a WP filter where I could add “Mandatory” terms.
For example
A site has 100k+ tags, in those tags resides ‘news’, ‘opinion’, ‘article’.
I would like to force the required taxonomy(this example post_tag) to always include one of these mandatory, regardless of any other tag selected.
This would require either;
A) an extra field for each taxonomy that’s selected as “required”. Within that field would have to be a search-based multiselect that leverages Ajax, some sites I work on have over 100k+ tags.
B) A WP Filter, where you can filter the “Mandatory” terms programmatically.
Thanks
Anthony
]]>Hello ,
I wonder if it is possible to add an option to prevent the client to add choices by mistake.
for example in the “city” taxonomy
he can add two or more cities when only 1 city is required
a kind of min and max number of choices allowed by each taxonomies
I tested PublishPress Checklists but it’s so buggy and doesn’t work well especially forcing the “required” I already prefer this plugin it’s simpler and lighter
I hope this option is not difficult to set up
]]>hello ,
I did a clean install of wordpress 6.0.
I installed your plugin
I went to create my pages
home
contact
about
etc…
each time I click on “Add New” (pages) an error appears and disappears and I can continue to create my page..
and so on
in console php_errors.log i captured the errors
I hope it’s nothing serious like a flaw or something else it’s scary I hope an update will fix it
[24-Jun-2022 12:21:26 UTC] PHP Warning: in_array() expects parameter 2 to be array, null given in C:\laragon\www\beta\wp-content\plugins\required-taxonomies\index.php on line 100
[24-Jun-2022 12:21:44 UTC] PHP Warning: in_array() expects parameter 2 to be array, null given in C:\laragon\www\beta\wp-content\plugins\required-taxonomies\index.php on line 100
[24-Jun-2022 12:21:50 UTC] PHP Warning: in_array() expects parameter 2 to be array, null given in C:\laragon\www\beta\wp-content\plugins\required-taxonomies\index.php on line 100
[24-Jun-2022 12:22:02 UTC] PHP Warning: in_array() expects parameter 2 to be array, null given in C:\laragon\www\beta\wp-content\plugins\required-taxonomies\index.php on line 100
[24-Jun-2022 12:22:06 UTC] PHP Warning: in_array() expects parameter 2 to be array, null given in C:\laragon\www\beta\wp-content\plugins\required-taxonomies\index.php on line 100
[24-Jun-2022 12:22:18 UTC] PHP Warning: in_array() expects parameter 2 to be array, null given in C:\laragon\www\beta\wp-content\plugins\required-taxonomies\index.php on line 100
]]>
Hi, I found your plugin and I tried with my demo site. I’m using the motor themes and it has some taxonomies that I want to make them required. I choose the taxonomies that I want but nothing is happening.
The site is about selling cars. I check the fields and I try to make a new ad for car but nothing is happening.
]]>Hi there!
My security scan reported the vulnerability of your plugin.
https://wpscan.com/plugin/required-taxonomies
Can you please fix that?
There are other plugins that were affected and already fixed the issue. you can check them here https://wpscan.com/vulnerability/6dae6dca-7474-4008-9fe5-4c62b9f12d0a
Thanks!
]]>At wp-content/plugins/required-taxonomies/inc/freemius/templates/debug.php 726 line action : 'fs_get_debug_log'
, used known Vulnerability Unauthorised AJAX Calls via Freemius and should be fixed, Thanks in advance!
Hi there, is this plugin still monitored?
Would you kindly label it as compatible with the latest version of wordpress? My firewall plugin is flagging it as an issue that it’s not been updated in a year
Hope you can help ??
I found a small bug in backend, when selecting the taxonomies to make mandatory.
If I have a taxonomy shared between multiple post types the slug is used in the id=”” attribute of the checkbox and for=”” of the label, making the labels non-functional and forcing you to click on the checkbox.
It would be perfect to combine the taxonomy slug with the post type slug or a sequential number to make those ids unique.
Thank you,
Simone
We will have three different custom post types. Each will be have two or three associated custom taxonomies. Would it be possible to enhance this plugin to do this?
]]>Hello, i want to get the Pro version of your plugin, i need to make mandatory some extra woocommerce taxonomies, and your plugin says that with Pro version those taxonomies can be activated, but when i click on Premium link im redirected to main plugin page.
Where can i buy the Premium version?
Thanks
Hi, is it possible to set the taxonomy request (category and tags) when creating a draft (even when a preview of the post is created)?
Thanks for your work.
Hi,
Thanks for the plugin, I would like to use it on one of custom post type for a custom taxonomy which is in fact a custom post type (I use the plugin CPT-onomies which allows you to use your custom post type in the same manner as a taxonomy, using your post titles as the terms. This is what we call a ‘CPT-onomy’.”(https://www.ads-software.com/plugins/cpt-onomies/), but that taxonomy does not appear in the list of taxonomies in the settings of the plugin and I can not figure out how to make it work… Would you have any idea and could you help me out please?
Thanks!
Hello
with 5.5 I get this warning
/plugins/required-taxonomies/assets/js/admin.js: jQuery.fn.load() is deprecated
(Had to install Jquery migrate)
]]>Hi Team
I am making the category mandatory. But this is not working while Publising in WP 5.4.1 version. But if you try to schedule, it is working fine. Please check and let me know.
]]>Hi all, I got this plugin to work with my custom taxonomy in Gutenberg with a relatively simple fix. Not sure if this is a bug or I’m overlooking something but in admin.js line 38-
var hasValues = typeof postData[rest_base] !== 'undefined' ? postData[rest_base].length : false;
should be changed to
var hasValues = typeof postData[tx] !== 'undefined' ? postData[tx].length : false;
The rest_base
url in my case was null. Also it should be noted that my taxonomy terms are checkboxes, not comma separated values. I didn’t test this with any other configuration so YMMV
Plugin not working with radio buttons, as well with custom taxonomies (without radio buttons). Nice idea, but ….
]]>I also have “Radio Buttons for Taxonomies” Plugin installed and Active, but then when that plugin is active then “WP Required Taxonomies” plugin does work. It would be nice if you also updated the plugin to work with the Radio plugin.
Thanks
]]>This is working in the classic editor, but not in the new Gutenberg editor.
]]>Notice: Undefined property: VG_Required_Taxonomies::$textname in
/vagrant/public/wp-content/plugins/required-taxonomies/index.php on line 147
Got this PHP notice first time after plugin activation in new WP install @ the welcome page /wp-admin/options-general.php?page=wprtt_welcome_page
]]>Will this support the product post type?
]]>