Forum Replies Created
-
AuthorPosts
-
Tom
ParticipantYup I plan on that as well though, it makes more sense doing it from your end. This way support is built in for this feature for ALL page builders instead of each page builder having to implement some custom code.
Tom
ParticipantYes but as I said in the original post, I can't use PHP directly (it's not supported in Etch yet) so I can't wrap the value I retrieve from the query in the function and return the label. All I get is the json for the query which only includes the value and not the label.
June 3, 2026 at 9:51 PM in reply to: Best way to setup CPT and with when large amount of fields and search facets #50024Tom
ParticipantSorry I missed that. I got it to work with your instructions. Thanks!
BTW a tooltip by that setting for the taxonomy field would be helpful or changing the label to something like
Remove default meta box from classic editor
June 2, 2026 at 11:46 PM in reply to: Best way to setup CPT and with when large amount of fields and search facets #50019Tom
ParticipantThanks for the info. I actually did decide to follow your point 1 and point 2
So just to review in case anyone is interested or has other recommendations.
Everything is being done using 1 CPT and 1 custom table with 35 field groups and no sub-groups. Conditional logic is on the field groups only.
I also made the listing type a taxonomy instead of a custom field. It is my understanding this will be easier for the search facets.
One thing I notice Peter is that I am using the taxonomy custom field to control the taxonomy as every listing needs just one. I have the switch "Remove default meta box" enabled for the field but the Gutenberg Editor still displays the Taxonomy in the side bar. It did not remove it. I am assuming this is a bug...
I can hide it myself manually by using the following code so I am not sure why the switch doesn;t work for the MB taxonomy custom field.
add_filter( 'register_taxonomy_args', 'wp_hide_taxonomy_in_gutenberg', 10, 3 ); function wp_hide_taxonomy_in_gutenberg( $args, $taxonomy, $object_type ) { if ( 'listing-type' === $taxonomy && in_array( 'listing', $object_type ) ) { $args['show_in_rest'] = false; } return $args; }Tom
ParticipantBoth websites use Metabox 3.3.5. Each website is on its own server.
I just tested the import again and I notice when doing a quick edit that the date was off by 5 hours. So instead of being published at 9am this morning that date read 2pm. Changing the time to now allowed me to publish the custom field and enable it (obviously). Not sure why the time gets bumped here when importing.
Both the server and the website are set to the same time and zone. Could MetaBox be using the Universal time here instead of Local? (as Univeral is 5 hours ahead)
Universal time is 2026-01-05 14:12:25.
Local time is 2026-01-05 09:12:25.I've tried 3 different custom fields group import files.
Here is the json of one of them.
{ "$schema": "https://schemas.metabox.io/field-group.json", "fields": [ { "name": "Image Position", "id": "image_position", "type": "select", "desc": "Image position. Inline (Left to Right) first and then Block (Top to Bottom)", "options": { "Left Top": "Left Top", "Left High-Center": "Left High-Center", "Left Center": "Left Center", "Left Low-Center": "Left Low-Center", "Left Bottom": "Left Bottom", "Center Top": "Center Top", "Center High-Center": "Center High-Center", "Center Center": "Center Center", "Center Low-Center": "Center Low-Center", "Center Bottom": "Center Bottom", "Right Top": "Right Top", "Right High-Center": "Right High-Center", "Right Center": "Right Center", "Right Low-Center": "Right Low-Center", "Right Bottom": "Right Bottom" }, "std": "Center Center", "select_all_none": false } ], "id": "hero-image-controls", "modified": 1764170240, "post_types": [ "page", "news" ], "title": "Hero Image Controls" }December 13, 2025 at 10:26 PM in reply to: ✅What's the Easiest Way to add Custom Field Data within a Gutenberg Post? #49532Tom
ParticipantThanks. I had tried short codes earlier but for some reason it did not work. I just tried it again and it works so great!
November 28, 2025 at 8:39 PM in reply to: Unable to save due to email field is set to required #49433Tom
Participant@Peter, Interesting I just tried it again this morning (so I could create you a admin account as well) and it worked fine... I am not sure what changed... I am on a development server with no server side caching enabled and I had cleared my browser cache several times. Anyways I tried 2 different sites under development with a range of added fields and no problems.
November 26, 2025 at 9:36 PM in reply to: Unable to save due to email field is set to required #49415Tom
ParticipantI just updated to the latest version of Metabox 3.3.4 and this issue is still happening. I have cleared the cache and it still does not work.
November 1, 2025 at 8:26 PM in reply to: Can't Save Field Groups that have Fields marked Required #49266Tom
ParticipantThanks for the info. I had done a quick search but missed the report which surprised me since it was so easy to reproduce.
I had waited a few weeks after the major version (3.2) was released to update and I had assumed no show stopping bug (which this one kind of is even though work around is easy once you know it). Teaches me... Always wait for the .1 after a major release.
Anyways I had tried that workaround when I first discovered the bug but couldn't enter any data in the field but rereading your info I see you have to wait until the request happens and then the field becomes editable.
Thanks again
Tom
ParticipantActual I take my last comment back. On another website I had it also not working for a CPT.
I am sending in a support request.
Tom
ParticipantOkay I will. Can you just check this before I do...
I should of mentioned this is Custom Fields Group assigned to a Settings Page. I just checked a different field group for a custom post type and when I assigned a max value everything worked fine.
Tom
ParticipantI have this issue as well and came to this support forum to report it.
"Clone Empty Start" doesn't work (ie the add more button doesn't show up) if you have a value in "Max number of clones" even if "min number of clones" is set to 0.
It shows all the sub fields of the group and not the "add more" button if any value is in the "max number of clones".
Tom
Participant+1 for this feature request.
We shouldn't have to enable edit_posts capability so a user role can add categories to a different custom post type. It should work with the capability designated for the CPT.
Tom
ParticipantShould have thought of that trick, thanks seaj1one
October 1, 2024 at 7:37 PM in reply to: ✅Changelog for Metabox AIO hasn't been updated since 1.27.0 #46580Tom
ParticipantThis issue is still happening for every version of Metabox. It happens on Slim SEO as well. For example there is a new version of Slim SEO Schema out and it only shows the change log up to 2.6.4 from Sept 20.
Over the last few days I have checked the change log and it hasn't been updated.
I've cleared the cache rebooted my PC, checked it on my phone etc.
It's not me either. I ran the change log through Google Page Speed and it sees only up to version 2.6.4 as well.
Also can you include a link to your change logs for your paid products within the WordPress plugins UI. It would save a few clicks.
Thanks
-
AuthorPosts