Michael Beckwith
Michael Beckwith
This review covers a "low" end that focused on tab/keyboard navigation and label associations. It used example-functions.php as is, without edits. **Label issues:** 1. "Multiple files" field does not toggle...
It's saving fine when editing an existing term, but not when creating the new term. Possibly an AJAX issue in some way? ``` $args = [ 'id' => 'some-id', 'object_types'...
Do some searches for "best post type plugins" and similar, and check out the cons that these sites list, or any grievances they provide, and see what we can do...
https://wpml.org/wpml-hook/wpml_register_single_string/ Requires: "WPML String Translation" module Example: ``` $value = 'Movie'; do_action( 'wpml_register_single_string', 'my-text-domain', 'Singular Label', $value ); ``` Can we fetch our registered settings, iterate over and push that...
Anything we can do to make it easier? https://wordpress.org/support/topic/translate-cpt-and-taxonomy-labels-with-polylang?replies=4
Source: https://wordpress.org/support/topic/replacing-plugin-with-cptui_register_my_cpts-doesnt-work/#post-12424251 Basically the user had some older post types that didn't have all the indexes for the version at the time. Because of that, get code functionality was missing...
Despite what I said in: https://github.com/WebDevStudios/custom-post-type-ui/issues/381#issuecomment-266074940 I think there's room to work here and whatnot. We would definitely want to exit early if there's no local spot involved, so that...
Coupling with https://docs.pluginize.com/article/84-save-cptui-settings-data-to-file Integrate UI and functionality to sync/read from found files that update the options in the plugin. Very very much like ACF offers. Take the doc code we...
Reject outright with a message? Import and leave a note afterwards?
> 'template' (array) Array of blocks to use as the default initial state for an editor session. Each item should be an array containing block name and optional attributes. 'template_lock'...