• Resolved adammimi

    (@adammimi)


    Hello,
    Thanks for this great plugin.

    I’m recently using Kivicare Plugin and I need to know if is possible to edit the browser tab title to another one. see screenshot, please

    https://prnt.sc/SBOUHuL1_45v

    Thanks in advance

    • This topic was modified 4 years ago by adammimi.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Iqonic Design

    (@iqonicdesign)

    Hello,

    Add the below code in the functions.php file of the active theme.

    if (isset($_REQUEST[‘page’]) && $_REQUEST[‘page’] === “dashboard”) {
    // Enqueue Admin-side assets…
    add_filter(‘admin_title’, function ($admin_title, $title)
    {
    return get_bloginfo(‘name’);
    }, 10, 2);

    }

    Thank You.

    Thread Starter adammimi

    (@adammimi)

    Hello, Thanks for your response
    I added the code and still the Tab name not changed

    Thread Starter adammimi

    (@adammimi)

    Edit: I solve the issue when using this code…

    Add the below code in the functions.php file of the active theme.

    function my_admin_title ( $admin_title, $title ) {
        return $title . ' — ' . 'SubTitle HERE';
    }
    add_filter( 'admin_title', 'my_admin_title', 10, 2 );

    Thanks

    • This reply was modified 4 years ago by adammimi.
    • This reply was modified 4 years ago by adammimi.
    • This reply was modified 4 years ago by adammimi.
    • This reply was modified 4 years ago by adammimi.
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Edit the browser Tab Title’ is closed to new replies.