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
  1. Field types

30. Notification Message

Previous29. MultiselectNext31. Button List

Last updated 3 years ago

'notification_message' => array(
    'type' => 'notification_message',
    'image' => STM_POST_TYPE_URL . 'theme-options/inc/assets/img/notice/ehf.svg',
    'description' => sprintf( '
        <h1>Elementor Header & Footer Builder</h1> 
        <p>Elementor editor gives you the flexibility to design beautiful sections. Using it you can create out of the box header and footer designs.</p>
        <p>You can customize the header and footer builders by clicking «Open Header Builder» or: <strong>Appearance -> Header Footer & Block section</strong></p>
        ' ),
    'buttons' => array (
        array(
            'url' => admin_url( "themes.php?page=tgmpa-install-plugins" ),
            'text' => 'Install & Activate',
            'class' => 'button_black'
        ),
        array (
            'url' => admin_url( "edit.php?post_type=elementor-hf" ),
            'text' => 'Open header Builder'
        )
    )
)

It is possible to download font icons

'notification_message' => array(
    'type' => 'notification_message',
    'icon' => 'fab fa-adn',
    'description' => sprintf( '
        <h1>Elementor Header & Footer Builder</h1> 
        <p>Elementor editor gives you the flexibility to design beautiful sections. Using it you can create out of the box header and footer designs.</p>
        <p>You can customize the header and footer builders by clicking «Open Header Builder» or: <strong>Appearance -> Header Footer & Block section</strong></p>
        ' ),
    'buttons' => array (
        array(
            'url' => admin_url( "themes.php?page=tgmpa-install-plugins" ),
            'text' => 'Install & Activate',
            'class' => 'button_black'
        ),
        array (
            'url' => admin_url( "edit.php?post_type=elementor-hf" ),
            'text' => 'Open header Builder'
        )
    )
)