OK, I found the “at” parameter which was controlled by the bbpress style pack plugin.
Still investigating for the “by”
you can always us this in your function file
//This function changes the text wherever it is quoted
function change_translate_text( $translated_text ) {
if ( $translated_text == 'old text' ) {
$translated_text = 'new text';
}
return $translated_text;
}
add_filter( 'gettext', 'change_translate_text', 20 );
so you would have
//This function changes the text wherever it is quoted
function change_translate_text( $translated_text ) {
if ( $translated_text == 'by' ) {
$translated_text = 'par';
}
return $translated_text;
}
add_filter( 'gettext', 'change_translate_text', 20 );
Thanks for the workaround 😉
In which file should I add this (so I don’t break anything) ?
put it in your theme’s functions file
wp-content/themes/[your theme name]/functions.php
Sadly it does not seem to affect anything : I paste the function, and flush the dache (just to make sure, I still have the “by”
can you post an example of the exact text that it is appearing in
Solved by my template provider (with a custom css)
.bbp-topic-freshness-author:before {
content: ‘par ‘ !important;
}