TJ Miller
TJ Miller
I've got most of this implementation done, will PR soon 🤙🏻!
I'll be needing something like this shortly. I can try and put something together over the next two weeks. I like @tnguyen14 's thoughts. Are there more opinions on how...
Maybe like this for individual repeating field(s) ``` $tests->add_meta_box( array( 'id' => 'test-box', 'context' => 'normal', 'fields' => array( 'test-field-one' => array('type'=>'text', 'repeat' => true) ) ) ); ``` And...
I have a working prototype that I've used in several production sites. It only handles single level repeating groups and the ui needs to be refined. I'm going to get...
I made one a few days ago, I will be submitting a pull request shortly!
I just submitted the pull request. You can view the details here: https://github.com/mboynes/super-cpt/pull/30
@mboynes no worries! so far I've found it super flexible, we have used it on ~8 sites at our firm!
This would be really nice to have. I've done more searching and I found an existing discussion around support for this in a PR https://github.com/junegunn/fzf/pull/1115.
@sunny04 @davegaeddert I just updated the following code in the super-cpt.php ``` php if ( !defined( 'SCPT_PLUGIN_URL' ) ) define( 'SCPT_PLUGIN_URL', get_template_directory_uri() . '/includes/super-cpt/' ); ``` I keep mine in...