1/3 tabs on my setting page are blank
Support › MB Settings Page › 1/3 tabs on my setting page are blankResolved
- This topic has 5 replies, 2 voices, and was last updated 1 day, 18 hours ago by
[email protected].
-
AuthorPosts
-
October 24, 2025 at 3:24 AM #49207
[email protected]
ParticipantHi,
the first two tabs are populated with content fine. however, my third tab is blank. I have assigned fields the same way to all three tabs, but the last one doesnt seem to show. What am I missing ?
(It is probably something very dumb 😂)
https://share.cleanshot.com/kXmz2Vdh
Above are the fields that don't work. Below are the fields that do !
https://share.cleanshot.com/DCkZNqCXOctober 27, 2025 at 5:31 PM #49220Peter
ModeratorHello,
Thanks for reaching out.
Can you please export the not-working field group to a JSON file and share it with me? Following the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--import
Also, do you see any JavaScript errors in the Console tab of the browser inspect tool?
October 27, 2025 at 10:49 PM #49226[email protected]
Participant{ "$schema": "https://schemas.metabox.io/field-group.json", "autosave": false, "context": "after_title", "default_hidden": false, "fields": [ { "name": "Menu Group", "id": "menu_group", "type": "group", "clone": true, "sort_clone": true, "min_clone": 0, "max_clone": 0, "fields": [ { "name": "Category Label", "id": "category_label", "type": "text", "limit_type": "character" }, { "name": "Item Group", "id": "item_group", "type": "group", "clone": true, "sort_clone": true, "min_clone": 0, "max_clone": 0, "fields": [ { "name": "Product Name", "id": "product_name", "type": "text", "limit_type": "character" }, { "name": "Product Description", "id": "product_description", "type": "textarea", "desc": "NO EMOJIS", "limit_type": "character" }, { "name": "Price", "id": "price", "type": "number", "step": "any" } ] } ] } ], "id": "digital-menu", "modified": 1761143138, "priority": "high", "settings_pages": [ "global-assets" ], "style": "default", "tab": "Digital Menu", "title": "Digital Menu" }Zero errors in the console.
October 27, 2025 at 10:57 PM #49228[email protected]
ParticipantI saw an error with the min/max clones, so i made some edits. Now it flashes before it disappears (still no console errors)
{ "$schema": "https://schemas.metabox.io/field-group.json", "autosave": false, "context": "after_title", "default_hidden": false, "fields": [ { "name": "Menu Group", "id": "menu_group", "type": "group", "clone": true, "sort_clone": true, "min_clone": 1, "max_clone": 10, "default_state": "collapsed", "save_state": true, "collapsible": true, "fields": [ { "name": "Category Label", "id": "category_label", "type": "text", "limit_type": "character" }, { "name": "Item Group", "id": "item_group", "type": "group", "clone": true, "sort_clone": true, "min_clone": 1, "max_clone": 10, "default_state": "collapsed", "save_state": true, "collapsible": true, "fields": [ { "name": "Product Name", "id": "product_name", "type": "text", "limit_type": "character" }, { "name": "Product Description", "id": "product_description", "type": "textarea", "desc": "NO EMOJIS", "limit_type": "character" }, { "name": "Price", "id": "price", "type": "number", "step": "any" } ] } ] } ], "id": "digital-menu", "modified": 1761580589, "priority": "high", "settings_pages": [ "global-assets" ], "style": "default", "tab": "Digital Menu", "title": "Digital Menu" }October 28, 2025 at 2:59 PM #49233Peter
ModeratorHello,
I got it. It happens because the field group setting
contextis set toafter_title. To fix the issue, please follow steps below:
- Change the Rule to Post type
- Select Position: After content
- Save the field group
- Reload the page
- Change the Rule to Settings page and select the settings page that you want to show the field groupscreenshot https://imgur.com/dhUEvrW
Let me know how it goes.
October 28, 2025 at 9:41 PM #49241[email protected]
ParticipantOMG THANK YOU NEVER WOULD HAVE THOUGHT OF THAT ! Worked like a charm.
-
AuthorPosts
- You must be logged in to reply to this topic.