Add custom Brand
Title
Plain Text
| # test
AppGiniHelper.getCommon().setTitle("Plain Text Title");
|
HTML Text
| AppGiniHelper.getCommon().setTitle("<b>HTML Formatted</b> Title");
|
Set Icon
| AppGiniHelper.getCommon().setIcon("icon");
|
"icon" parameter:
Icon name without prefix, for example "cog".
See here
Remove Navbar Icon
The unsetIcon function removes the default icon from navigation bar.
| // file: hooks/header-extras.php
new AppGiniCommon().unsetIcon();
|
Set Image
| AppGiniHelper.getCommon().setImage("https://…/image.png");
|
Valid URL required!
See Also