diff --git a/docs/configuration/api.md b/docs/configuration/api.md index 39c7fcfb..fe831f2b 100644 --- a/docs/configuration/api.md +++ b/docs/configuration/api.md @@ -176,7 +176,6 @@ td:first-child { white-space: nowrap; } |Redux::remove_field( $opt_name, $id )|Removes an option panel field.| |Redux::remove_section( $opt_name, $id, $fields )|Remove option panel by ID.| |Redux::set_args( $opt_name, $args )|Sets option panel global arguments.| -|Redux::set_developer( $opt_name, $arg )|Set's developer key for premium services.| |Redux::set_extensions( $opt_name, $path, $force )|Sets all extensions in path.| |Redux::set_field( $opt_name, $section_id, $field )|Creates an option panel field and adds to a section.| |Redux::set_fields( $opt_name, $section_id, $fields )|Create multiple fields of the option panel and apply to a section.| diff --git a/docs/configuration/objects/field.md b/docs/configuration/objects/field.md index 6f559721..e26fc995 100644 --- a/docs/configuration/objects/field.md +++ b/docs/configuration/objects/field.md @@ -15,7 +15,7 @@ default arguments. ## Default Arguments |Name|Type|Required| Description. | |--- |--- |--- |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -|id|string|`true`| The unique identifier of a field. MUST be unique to the [opt_name](../global_arguments.md#opt-name) except when used by the [metaboxes API](../premium/metaboxes.md). | +|id|string|`true`| The unique identifier of a field. MUST be unique to the [opt_name](../global_arguments.md#opt-name) except when used by the [metaboxes API](../core-extensions/metaboxes.md). | |type|string|`true`| Denotes the [field type](../../core-fields/). If the field type does not exist a warning will be displayed. | |title|string| | The title of the field that will be displayed. | |subtitle|string| | Subtitle of the option placed beneath the title. | diff --git a/docs/core-extensions/README.md b/docs/core-extensions/README.md index 513cd17c..a4d1530c 100644 --- a/docs/core-extensions/README.md +++ b/docs/core-extensions/README.md @@ -4,6 +4,5 @@ There are a number of free default extentions embedded within the Redux Core. Th ::: tip SEE ALSO - [Using & Creating Extensions](../guides/basics/using-extensions.md) -- [Pro / Premium Offerings](../premium) ::: diff --git a/docs/core-extensions/user-metaboxes.md b/docs/core-extensions/user-metaboxes.md index 52f92a28..0320c311 100644 --- a/docs/core-extensions/user-metaboxes.md +++ b/docs/core-extensions/user-metaboxes.md @@ -1,4 +1,4 @@ -# USer Metaboxes +# User Metaboxes If you are used the ReduxFramework declaration arrays, you know Redux User Metaboxes. They're one and the same! The only difference is a parent array. We'll go through a few examples to get you up and running. Please know, you MUST have a Redux global options page for user metaboxes taxonomy to work. They're interconnected. You can, however, make a fake options panel, and hide it from the admin menu. diff --git a/docs/core-fields/README.md b/docs/core-fields/README.md index b9a61982..86fdef72 100644 --- a/docs/core-fields/README.md +++ b/docs/core-fields/README.md @@ -9,6 +9,5 @@ exist in the Core as well as how to configure these fields. ::: tip SEE ALSO - [Using & Creating Extensions](../guides/basics/using-extensions.md) -- [Pro / Premium Offerings](../premium) :::