cancel
Showing results for 
Search instead for 
Did you mean: 

How to remove the `i` icon from the dashboard widgets completely?

gayatrishahane
8 - Cloud Apps
8 - Cloud Apps

How to remove the `i` icon from the dashboard completely?

 

I am currently using the following script, but it only makes it invisible. When you hover over that location you can still see the hover state of the `i` icon.

dashboard.on('refreshstart', function() {

$(document.getElementsByClassName('btn__icon app-icon app-icon--general-info-circle')).hide()

})

 

gayatrishahane_0-1665348029036.png

 

1 ACCEPTED SOLUTION

gayatrishahane
8 - Cloud Apps
8 - Cloud Apps

I found 

 $(document.getElementsByClassName('widget-toolbar-btn btn btn--icon btn--dark btn--no-background')).hide()

that the above script  removed the `i` completely

View solution in original post

2 REPLIES 2

Harry
9 - Travel Pro
9 - Travel Pro

Hello @gayatrishahane ,

Hope below script will work for you

dashboard.on('refreshstart', function() {

  $(document.getElementsByClassName('btn__icon app-icon app-icon--general-info-circle')).closest('.widget-toolbar-btn').hide()

})

 

Always here to help,
Harry from QBeeQ
[email protected]
www.qbeeq.pl

gayatrishahane
8 - Cloud Apps
8 - Cloud Apps

I found 

 $(document.getElementsByClassName('widget-toolbar-btn btn btn--icon btn--dark btn--no-background')).hide()

that the above script  removed the `i` completely