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
{{ message }}
This repository was archived by the owner on Sep 2, 2021. It is now read-only.
The Advanced Translator copy post button doesn't copy the post full name if the post title is too long.
Wordpress automatically shortens the generated post name, putting dots in the middle if the title is longer than a certain number of characters.
Changing the admin.js / admin.min.js line 55, from:
Hi,
The Advanced Translator copy post button doesn't copy the post full name if the post title is too long.
Wordpress automatically shortens the generated post name, putting dots in the middle if the title is longer than a certain number of characters.
Changing the admin.js / admin.min.js line 55, from:
postSlug = $( '#editable-post-name' ).html();
to:
postSlug = $( '#editable-post-name-full' ).html();
should solve this issue.
Best regards,
Luis
The text was updated successfully, but these errors were encountered: