Some translations don’t seem to work

Solved7.50K viewsCoretranslation
0

Hi Rahul,

I’ve noticed that some translations do not work. For example, using Loco Translate, I am changing string “Edited Answer” to “Edited Response”. Despite saving the string, this is not reflected in what is already posted. I expect that the values are being written to the database instead. Can you confirm ?

Thanks

Question is closed for new answers.
selected answer
0

SOLVED: Well – sort of.

I ended up installing the Code Snippets plugin, and adding this as a snippet, which works

function my_ap_activity_actions( $actions ) {
$actions[’new_a’][’verb’] = ‘Responded to discussion’;
$actions[’edit_a’][’verb’] = ‘Edited response’;
return $actions;
}
add_filter( ‘ap_activity_actions’, ‘my_ap_activity_actions’ );

My question here is why does this not work within the child theme functions.php file ? Or within the themes/anspress directory ?

commented on answer

May be you are adding codes in wrong place. You can ping me on slack with your code snippet.

You are viewing 1 out of 9 answers, click here to view all answers.