Nuxy
  • Nuxy
  • Installation
  • Adding Page Options
  • Adding Post Options
  • Adding Taxonomy Options
  • Adding Frontend Options
  • Getting Fields
  • Adding to admin bar
  • Tabs
    • General tab parameters
    • Add submenu
  • Field parameters
  • Registering field
  • Fields dependency
  • Fields group
  • Field types
    • General field parameters
    • 1. Text
    • 2. Number
    • 3. Textarea
    • 4. Checkbox
    • 5. Select
    • 6. Radio
    • 7. Color
    • 8. Image
    • 9. Editor
    • 10. Autocomplete
    • 11. Datepicker
    • 12. Datepicker range
    • 13. Time
    • 14. Sortable
    • 15. Sortable multi input
    • 16. Gallery
    • 17. Repeater
    • 18. Range slider
    • 19. Image Select
    • 20. Button group
    • 21. Icon picker
    • 22. Ace Editor
    • 23. Spacings
    • 24. Link color
    • 25. Multi checkbox
    • 26. Color Gradient
    • 27. Textarea with hints
    • 28. Typography
    • 29. Multiselect
    • 30. Notification Message
    • 31. Button List
    • 32. Group Title with Preview && Icon
  • Download Nuxy
Powered by GitBook
On this page
  • Preview setting (as image):
  • Groups
  1. Field types

General field parameters

Add label, hint, description or start group of fields

Preview setting (as image):

'preview' => get_template_directory_uri() . 'some_url.jpg',

Radio button can have several previews:

'field' => array(
    'type' => 'radio',
    'label' => esc_html__('Radio Button', 'my-domain'),
    'submenu' => esc_html__('General fields', 'my-domain'),
    'options' => array(
        1 => 'One',
        2 => 'Two',
        3 => 'Three',
        4 => 'Four',
    ),
    'previews' => array(
        1 => get_template_directory_uri() . 'some_url_1.jpg',
        2 => get_template_directory_uri() . 'some_url_2.jpg',
        3 => get_template_directory_uri() . 'some_url_3.jpg',
        4 => get_template_directory_uri() . 'some_url_4.jpg',
    ),
    'description' => esc_html__('Manage create listing page section titles front-end and admin', 'my-domain'),
),

Groups

You can start group from single field:

'group' => 'started'

And end group in another field. All fields between them will be grouped:

'group' => 'ended'

Group may have title:

'group_title' => esc_html__('Group title', 'my-domain')
PreviousFields groupNext1. Text

Last updated 4 years ago