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?

  •   

    You can still customise the colour of the navigation bar just the CSS class names would have changed when it moved to be down the left side of the page. On my playground system I have the below which works though I only bothered setting it up for light mode as I don't use dark mode so you would have to add more to make it work for both.

    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    @devRed: #DE2F1E;
    @devActive: #424D64;
    @devActiveLight: #676e7c;
    @devGreyLight: #e5e5e5;
    .sidebar-nav {
    background: @devRed;
    }
    .sidebar-nav-item-group {
    background: @devRed;
    }
    body.sugar-light-theme,
    .sugar-light-theme {
    color-scheme: light;
    --tab-background-hover-color: @devActiveLight;
    --sidebar-nav-background: @devRed;
    --sidebar-nav-background-hover: @devActive;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Alternatively I guess you could change your User profile on your dev system to be in dark mode (or whatever the inverse of your production is) which you can change in your User under the Advanced tab using the Appearance field if that suffices.

    For the password stuff if it is just your local dev system you can use the built in symphony commands in `./bin/sugarcm` to change a users password.

    I hope that helps

  • Thank you for the tips  I will certainly try!

  • Hi  ,

    We made a module specially for customising your Sugar interface. You can check it out here: https://marketplace.sugarcrm.com/addons/shape-my-sugar

    Kind regards,

    Vlad TANASOIU / Synolia

  •  

    On-premise instances can use SugarIDM which provides an Impersonate option. Alternatively, purchase Upsert® Sudo

    Have you had a chance to check out this blog, How do you know which Sugar you are using?

  • Thank you  

    I do have watermarks but they don't always appear in all Admin screens.
    And we decided to purchase Upsert® Sudo from  and team.

  • We have our bank logo image in the upper left of production.  In Sandbox we have a Sand box logo image.  It is slightly inconvenient as when we refresh sandbox we have to update the logo again, but for us it's not that often.  

    Mathew Caron

    CRM Admin

    Kennebec Savings Bank

  • 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