What I love and miss most about SugarPRO v11 -> SugarENT v14 and how do I get around what I miss?

After falling way behind (Beware!) and a challenging year of upgrades (OS, MySQL, PHP, Sugar...) we are finally caught up and went from Sugar Professional v11 to Sugar Enterprise v14 on site.

Two things I LOVE the most compared to v11:

  • Sidecar Users module
  • Progress bar on QRR

Two things I REALLY MISS about v11:

  • The ability to set a local PWD to impersonate my users (our users use LDAP)
  • The ability to set obnoxious colors for the toolbar to color-code my envs and REALLY know if I'm in PRD or TST or DEV.
    The Watermark just doesn't do it for me and some admin pages don't show it anyways.

Anyone have any suggestions for customizations I can make to make these last two work?

Parents
  • I managed to color code our Dev environment and add a logo and watermark.... if I get confused now it's not the interface's fault! Joy

    Logo
    I simply created a new logo and uploaded it in the Admin panel for both light and dark mode.

    Watermark

    The text is defined in config_override.php

    $sugar_config['additional_js_config']['watermark'] = 'DEV';

    and then in:

    custom/clients/base/layouts/base/base.js

    I copied the Base Layout and added the watermark to the content in the $('head') content line.

    '    content: "' + app.config.watermark + '"; /* your site name */\n' +

    Navabar color

    copied

    clients/base/layouts/header-nav/header-nav.hbs
    to custom/
    clients/base/layouts/header-nav/header-nav.hbs

    and changed the 

    Fullscreen
    1
    <div class="navbar-inner bg-[--navbar-background] p-0 m-0 h-10">
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    to 

    Fullscreen
    1
    <div class="navbar-inner bg-green-400 p-0 m-0 h-10">
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Reply
  • I managed to color code our Dev environment and add a logo and watermark.... if I get confused now it's not the interface's fault! Joy

    Logo
    I simply created a new logo and uploaded it in the Admin panel for both light and dark mode.

    Watermark

    The text is defined in config_override.php

    $sugar_config['additional_js_config']['watermark'] = 'DEV';

    and then in:

    custom/clients/base/layouts/base/base.js

    I copied the Base Layout and added the watermark to the content in the $('head') content line.

    '    content: "' + app.config.watermark + '"; /* your site name */\n' +

    Navabar color

    copied

    clients/base/layouts/header-nav/header-nav.hbs
    to custom/
    clients/base/layouts/header-nav/header-nav.hbs

    and changed the 

    Fullscreen
    1
    <div class="navbar-inner bg-[--navbar-background] p-0 m-0 h-10">
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    to 

    Fullscreen
    1
    <div class="navbar-inner bg-green-400 p-0 m-0 h-10">
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Children
No Data