cancel
Showing results for 
Search instead for 
Did you mean: 

remove session context widget from customer support backoffice

abhinavsingh11
Participant
0 Kudos

Hi,

We want to remove session context widget from customer support backoffice.

How can we do this change?

Accepted Solutions (1)

Accepted Solutions (1)

former_member638520
Contributor
0 Kudos

Hi,

You have to create your own extension and within YOUREXTENSION-backoffice-widgets.xml you can remove the sessionContextWidget.

Example:

 <widget-extension widgetId="collapsibleContainer">
      <remove widgetId="editorArea"/>
 </widget-extension>


More details: https://help.hybris.com/6.1.0/hcd/8bd76a7f866910149ae8a66ccdd4dc72.html

Regards,

Łukasz

0 Kudos

Hi Lukasz,

Im using this config in v1808 where it doesn't work:

   <widget-extension widgetId="cs-leftBottomSlotContainer" >
           <remove widgetId="csSessionContext" />
       <widget id="csSessionContext" widgetDefinitionId="com.hybris.cockpitng.widgets.xyz.sessionContext" slotId="centerSlot" template="false" title="Session Context" >
  </widget-extension>

I have used the same approach as in the example mentioned in version 6.3 where it worked.

Could you help with this issue?

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi, the session context is in the widget with id =cs-leftBottomSlotContainer. This is how you can remove it from customer support backoffice:

    <widget-extension widgetId="cs-leftBottomSlotContainer">
         <remove widgetId="csSessionContext" />
     </widget-extension>