Skip Navigation

[Waiting for user feedback] Possibility to have global information stored in a field group?

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

This topic contains 1 reply, has 1 voice.

Last updated by Christopher Amirian 1 week, 1 day ago.

Assisted by: Christopher Amirian.

Author
Posts
#2845902

Tell us what you are trying to do? In ACF Pro, there is the possibility to have an "option page", meaning, I can have a fieldgroup in a place, where can have general informations, like contact info etc.

Does Toolset also have this?

Is there any documentation that you are following? Nope, at least not what I found yet.

I tried in chatGPT, but I am afraid, that this doesen't provided me with correct information:

Creating a Custom Toolset Options Page

If you want something like:

“Standort Einstellungen”
“Global Contact Data”
“Footer Settings”

How

Toolset → Settings → Custom Code

Enable Toolset Options Pages

Go to:

Toolset → Settings → Options Pages

Create a new page:

Slug: global_contact

Menu title: “Global Contact”

Now assign your Options Field Group to this page.

Is there a similar example that we can see?

What is the link to your site?

#2845934

Christopher Amirian
Supporter

Languages: English (English )

Hi,

Welcome to Toolset support. Toolset doesn’t have an “Options Page” screen exactly like ACF’s Options Page, but Toolset supporters commonly handle “global settings” by storing them in one dedicated post (a single “settings” post) and then outputting that post’s custom fields wherever needed.

1) Create a “Global Settings” container (a CPT with 1 post)

- In Toolset → Post Types, create a new post type (example):
. Name: Site Settings (or Global Settings)
. Make it not public (so it won’t show on the front-end archives/search).
- In Toolset → Custom Fields, create a Field Group (example: “Global Contact Data”).
- Assign that Field Group to your new Site Settings post type.
- Add fields you need (phone, email, address, socials, etc.).

2) Create the single Settings post (the one source of truth)

- Go to Site Settings → Add New
- Create one post (example title: “Global Settings”)
- Fill in those fields and publish.

This is the “single post that holds the settings” approach supporters recommend for global info.

3) Display those global fields anywhere (via a View)

- Go to Toolset → Views → Add New (or use a view block if you do not prefer the legacy mode)
- Create a View that lists Site Settings
- In the View’s Query settings, ensure it returns only that one Settings post (e.g. filter by that post ID / specific post).
- In the View output, print the fields, for example:
. Phone: [wpv-post-field name="wpcf-phone"]
. Email: [wpv-post-field name="wpcf-email"]

4) Insert it where you need it
Put the View in templates/footers/pages wherever you need the global info using:
[wpv-view name="your-view-slug"]

Thanks.