30 days free. No credit card. Full access from the moment you connect your site.

Start free trial

Update a JetEngine Options Page Field

Changing a site-wide value in JetEngine usually means finding the right options page and the right field in wp-admin.

content/update-jet-engine-options-page-field writes one field value directly into the options page your templates read from.

At a glance

Abilitycontent/update-jet-engine-options-page-field
ToolsetContent — toolset/content
GroupJetEngine › Options Pages
RequiresJetEngine, active on the site
Capabilitymanage_options
SafetyWrites data
RepeatableIdempotent — running it twice leaves the same result
Ships inAcrossAI Abilities Manager 0.1.0 and later

How it works

Pass the options page slug, the field name and the new value.

The value can be a string, number, boolean, array or object — pass the shape the field expects, such as an array for a repeater.

Only the named field changes; the rest of the page’s values stay as they are.

Input

NameTypeRequiredWhat it is
slugstringYesThe options page slug.
fieldstringYesThe field name to write.
valueanyNoThe new value.

What comes back

NameTypeWhat it is
slugstringThe options page that was updated.
fieldstringThe field that was written.
successbooleanWhether the call completed.
messagestringA one-line summary of what happened, suitable for showing a human.
error_codestringPresent only on failure — a stable machine-readable reason, such as a missing field, a wrong field type or an unmet confirmation.

Example

Ask your assistant:

Change the support phone number on the Contact Details page to +91 22 4000 1234.

It resolves to one call:

{
  "ability": "content/update-jet-engine-options-page-field",
  "parameters": {
    "slug": "contact-details",
    "field": "support_phone",
    "value": "+91 22 4000 1234"
  }
}

Worth knowing

  • Writing the same value again leaves the same result, so it is idempotent.
  • Read the page first to confirm the field name and the current value.
  • Cached pages keep showing the old value until your page cache is purged.

Related abilities


Get the plugins:
AcrossAI Abilities Manager · AcrossAI MCP Manager

Browse the rest: Every ability, by category


Keep reading