oblique
New member
- Feb 12, 2020
- 15
- 0
- 1
I have a problem with this code highlighter plugin. The last button with an "E" on it and no tool tip sends users to the author's website. This is confusing for visitors and scares them thinking their browser got hijacked.
Here is where the plugin resides:
wordpress.org
Here is a vague instruction on how to hide the "E" button that sends users to the author's website. I can't figure out where or how to add this code to the plugin to allow it to remove the "E" button.
github.com
Here is what the author published:
// override default settings
.enlighter-default{
// hide rawcode button
.enlighter-btn-raw{
display: none;
}
// no changes to the copy button
.enlighter-btn-copy{
}
// hide window button
.enlighter-btn-window{
display: none;
}
// please keep the EnlighterJS Website Link visible!
.enlighter-btn-website{
}
}
I would assume since it is the last entry in this code, it should have a "display: none;" line entered to it.
I simply don't know what .css file needs to be modified and where. Any help appreciated.
Here is where the plugin resides:

Enlighter – Customizable Syntax Highlighter
All-in-one Syntax Highlighting solution. Full Gutenberg and Classic Editor integration. Graphical theme customizer. Based on EnlighterJS.
Here is a vague instruction on how to hide the "E" button that sends users to the author's website. I can't figure out where or how to add this code to the plugin to allow it to remove the "E" button.
documentation/Tweaks.md at master · EnlighterJS/documentation
:pencil: EnlighterJS3 Documentation including all plugins - EnlighterJS/documentation
Here is what the author published:
// override default settings
.enlighter-default{
// hide rawcode button
.enlighter-btn-raw{
display: none;
}
// no changes to the copy button
.enlighter-btn-copy{
}
// hide window button
.enlighter-btn-window{
display: none;
}
// please keep the EnlighterJS Website Link visible!
.enlighter-btn-website{
}
}
I would assume since it is the last entry in this code, it should have a "display: none;" line entered to it.
I simply don't know what .css file needs to be modified and where. Any help appreciated.