I added your plugin but I do not see underline nor justify appear on the text widget even the option to add both is selected.
]]>I uploaded the file plugin to the wp-admin alright. However, I do not see the underline feature still. I tried to find the editor settings, but they do not appear in my case under “writing”. There is no “editor style” there? I can send you my screen shot, but how?
thanks for helping, Charles
]]>Hello, is there any plan to support WP 5.8.1 for Re-add text underline and justify?
]]>hi, Re-add only by width, what does that mean?
]]>I have tried every role and only administrators can see the extended functions. I need this available to everyone.
]]>Dear admin, did you stop updating this plugin?
]]>Dear admin,
Select the Text which will be Justified, then press: SHIFT + ALT + J
SeIect the Text which wiII be underIined Press: CTRL + U
This is not working. Also the plugin is not working ,I mean no option of ‘justify or underline” in the editor though I selected the right option in writing option. Any help pls? BTW, I am using the wp latest version.
Thanks
Abu
Hi!
I’ve just noticed that the underline button disappeared. I don’t know when it happened, because i don’t use it very often.
Everything is updated, board and few plugin. All setting are as they should (Re-add underline & justify buttons, classic editor)
Any clue?
Edit: I fell very stupid. It was simply not showed. Thank you, anyway. ??
]]>Is it possible to change font of the links to make it work with google fonts?
]]>Hi.
First of all, I must be say to Thanks you for amazing plugin. Next ?? In WordPress 5 , justify Button doesn’t appear. Of Course when we edited last post, this buttons display it in toolbar, but when updated wordpress to version 5, editor default editor changed and now this buttons doesn’t appear, and also Using keyboard (Shift + Alt + J) does’t work.
]]>Hello, I’ve noticed that the underline gets removed when you do a copy and paste within the text editor – copied text in the text editor and pasted it somewhere else within the same editor.
I think this is because the underline text is applied by a span tag and WordPress seems to remove those with copy and paste.
I did notice that when copy and pasting from Word that Word uses the <u></u> tag and that is kept when copying and pasting within the text editor (TinyMce).
Thanks in advance for the help!
]]>Hello,
The plugin seems not to work with 4.8.1 anymore. Or is it just me?
Thanks,
Jonas
HI,
We are a digital presence company and responsible for maintaining hundreds of blogs. I found this plugin very useful. But the issue is that everytime i upload this to a site i need to manually enable the re-add justify button in writing settings. Considering that im uploading this to 100+ sites, manually enabling this is going to take a lot of time
im sure there are many other people like me who will be uploading this to multiple sites and would like this feature
]]>Hello guys,
I install your plugin and is awesome, however, iw as wondering if you could help me.
I would like to change the color of the underline, to not be the same as the color of the letters. Is that possible with CSS?
I’m not an expert, and i have been trying for hours!!!
https://miotaku.com/lista-top-mejores-animes-comedia-romantica-de-siempre/
As you can see the second paragraph, the letters are kinda blue, but the underline still white. I would like to change it to that blue too.
For the blue one i use this:
.blog strong { color: #19709E!important; }
.single-post strong { color: #19709E!important; }
.blog hover{ color: #19709E!important; }
.single-post hover{ color: #19709E!important; }
But for the underline i dont know :/
Thanks in advance.
]]>Hi;
After installing Re-Add, below problems occurred:
1) “Text” button which shows HTML code of the text didn’t work.
2) Yoast SEO didn’t show analysis of the text.
3) All buttons of “Visual Composer” just disappeared!
Deactivation and even uninstalling of the plugin didn’t solve above problems.
This is very serious, please help me.
Because if I want to go back to the last good state by restoring site backup, many changes will be destroyed and this is just the beginning of a disaster!
If it helps, my theme is Flatastic 1.6.0
Thanks for Your Help
]]>Hi,
I’ve successfully installed the plugin, but when I go to the Editor (for formatting text) the options are not displayed. Any assistance gratefully received.
Thanks
Susan
Hello,
Thanks for this usefull plugin.
The plugin remove the code source bouton from my ACF fields
Is there any way to prevent that ?
Thanks
]]>Hi,
I’ve checked your plugin’s source code, it’s quite fine, nothing heavy – I like that! ;-),
but there is one thing that seems a bit unreliable for future: You are recreating the buttons array by hardcoding all the button IDs to it. This has only 1 advantage and that is “performance”, I use quotes, because nowadays future-proofing this would be a better way.
So may I suggest a better solution? In filter callback, create new array and go through the current array, if you hit the button you’re looking for, act accordingly, optionaly, you can store a boolean whether or not you’ve found the proper place and if not – put it e.g. at the end of the re-created array.
The point of this is mainly that if WordPress (or actually anybody else e.g. other plugin) adds some new button before your filter is applied – the button would be removed with your current solution.
Let me share the code that demonstrates such button handling:
Probably more readable code link: https://ideone.com/pf3osE
add_filter( 'mce_buttons', function( $originalButtonsInFirstRow ){
$buttonsToAdd = [
//'new_button_ID_to_add' => 'put_it_after_button_ID',
'alignjustify' => 'alignright', //add justify after align right
'underline' => 'italic', //add underline after italic
];
$newButtonsInFirstRow = [];
foreach( $originalButtonsInFirstRow as $buttonID ){
$newButtonsInFirstRow[] = $buttonID; //re-push originals to keep them intact
foreach( $buttonsToAdd as $newButtonID => $putItAfterButtonID ){
//Firstly, chack whether the button was already added by us or not! (...!==true)
if( ($putItAfterButtonID !== true) && ($buttonID == $putItAfterButtonID) ){
$newButtonsInFirstRow[] = $newButtonID;
$buttonsToAdd[$newButtonID] = true; //make a note that button was added
}
}
}
//Now check, if all buttons where actually added (in case "put_it_after_button_ID" was missing...)
foreach( $buttonsToAdd as $newButtonID => $putItAfterButtonID ){
// check if the button was added (note the type check !== (negated ===))
//if the button wasn't added, put it at the and of the buttons array
if( $putItAfterButtonID !== true )
$newButtonsInFirstRow[] = $newButtonID;
}
return $newButtonsInFirstRow;
}, 5 );
Thank you for considering this approach and making WordPress great ! ??
]]>I downloaded the plugin and saw all the guides and screenshots but in the Writtign Settings I still cannot find the Editor Style with the options!
Thanks in advance
]]>Hi there,
I installed and activated your plugin but I couldn’t find any setting and the text editor didn’t change.
Would you please be so kind as to telle me what’s wrong?
Many thanks for your answer,
Regards
]]>I thought it would be useful to share the reasoning behind this change with those considering installing this plugin. Informed decisions!
From the post announcing this change:
The underline and justify buttons have been removed from the bottom row. Underlining is a bad practice as readers can confuse it with links (bad accessibility), and it does not insert a semantic element. Justifying has uneven browser implementation, and in many cases is bad for readability.
Keyboard shortcuts for both will continue to work and can be found by clicking the Help icon (?) in the editor toolbar.
See also: WP Tavern Article “WordPress 4.7 Removes the Underline and Justify Buttons From the Editor”
]]>