[ad_1]
Is there a way to allow all users with the capability edit_posts to access the translator?
I have de developer license and I have enabled the User Accounts extension, but it’s a bit annoying to have to give each individual user permission (I’m managing a large multisite network). I tried with this code:
add_filter('trp_translating_capability', function() { return 'edit_posts'; } );This shows the Translate button in the backend, so that’s cool. But When I click it, I’m still being blocked.
Is there another hook I can use to make this work?
