I am not finding “Field Tips” anywhere there. If you wanted to remove the “Recommended Links” part of the plugin when clicking the extend-link button then do the following:
– Use FTP
– Access your folder structure of your WordPress website
– go to /wp-content/plugins/extend-link/js/extend-link-tinymce.js
– in that JS file do the following:
Lines 145 to 177, remove the same coding you see just below here,
{
type: 'label',
text: 'Recommended Links:',
style:"color:#56a639 !important; font-weight:bold !important;"
},
{
type: 'button',
text: 'Divi Theme',
tooltip: 'The Ultimate WordPress Theme & Visual Page Builder. Try it, a 30-Day Money Back Guarantee!',
maxWidth: 100,
onclick: function( e ) {
window.open('http:wp-plugins.in/ElegantThemes_ExtendLinkTinyMCE_Divi');
}
},
{
type: 'button',
text: 'Bluehost',
tooltip: 'The Best Web and WordPress Hosting. Try it, a 30-Day Money Back Guarantee!',
maxWidth: 100,
onclick: function( e ) {
window.open('http:wp-plugins.in/Bluehost_ExtendLink');
}
},
{
type: 'label',
style: "font-size:12px !important;color:#888 !important; text-decoration:underline !important;",
text: 'Why do you see "Recommended Links" in this plugin?',
tooltip: "We offer you free professional plugins for free, so you'll see Recommended Links, which is the only support source.",
maxWidth: 315
}
On line 178, you see these characters; [,
– do not remove it. That is needed to end the JS function.
– save the JS file and upload.
– deactivate the link, since the JS file was already loaded.
– reload the browser page showing the editor page, the extend-link button in the editor should be gone.
– reactivate the link
– reload the editor page and extend-link button is returned.
– test it, it should now work as before without the “Recommended links”.
Note:
I use Notepad++, since Windows standard Notepad will not show the needed line numbers. Notepad++ is free and found here: https://notepad-plus-plus.org/
Hope that helped.
-
This reply was modified 6 years, 1 month ago by mwarbinek.