You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it would be helpful to add a "Uncheck All" on the choose file type settings page. Since there's 323 of them. Maybe add a <button> under the show all toggle, and then simply use:
This text "Links to YouTube, Facebook, Twitter and other services inserted in the comment text will be automatically embedded." I think it would be nicer to have as an option that is editable by end users, or at least filterable vs having to use gettext hook to update.
I'd be happy to contribute if you'd like.
The text was updated successfully, but these errors were encountered:
Hello @DuckDivers
I'm sorry to be late with the reply.
I think it would be helpful to add a "Uncheck All" on the choose file type settings page
At the moment, you can Check All/Uncheck All by clicking on the type title.
But, apparently, this is not enough user friendly, since such a question has appeared :)
About the button. Perhaps it makes sense to add a checkbox to the type name? Like it is implemented, for example, on the screen for editing posts list.
at least filterable vs having to use gettext hook to update.
Code:
function filter_gettext( $translation, $text, $domain ) {
if ( $text === 'Links to YouTube, Facebook, Twitter and other services inserted in the comment text will be automatically embedded.' && $domain === 'dco-comment-attachment' ) {
$translation = 'My text.';
}
return $translation;
}
add_filter( 'gettext', 'filter_gettext', 10, 3 );
Result:
I think it would be nicer to have as an option that is editable by end users,
I have an issue #22 about it. I plan to place these settings in the customizer in future releases. Feel free to comment 🙌.
Hi.
Nice work on this plugin.
I think it would be helpful to add a "Uncheck All" on the choose file type settings page. Since there's 323 of them. Maybe add a
<button>
under theshow all
toggle, and then simply use:jQuery('#column_name input[type="checkbox"]').prop('checked', false);
Additionally,
This text "Links to YouTube, Facebook, Twitter and other services inserted in the comment text will be automatically embedded." I think it would be nicer to have as an option that is editable by end users, or at least filterable vs having to use
gettext
hook to update.I'd be happy to contribute if you'd like.
The text was updated successfully, but these errors were encountered: