Hello,
Where can I translate the word “Articles” (at least, that’s what I think it is called in English) at the top of a blog page.
I’ve searched in different Po files but without success. Where is it pulled from?
I hope I am making any sense ;)
Greetings
Hi dypfryser!
I believe this is what you are looking for – http://kriesi.at/documentation/enfold/replace-the-default-blog-latest-news-title/
If it is not, can you please post a screenshot and show the element you would like to edit? :) (You can upload your screenshots on imgur.com or Dropbox public folder and post the links here. )
Cheers!
Yigit
Hey!
Try to replace the code with this:
add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
function fix_single_post_title($args,$id)
{
if (is_page('PAGE ID NUMBER HERE'))
{
$args['title'] = 'TRANSLATE TITLE HERE';
} elseif (is_page('PAGE ID NUMBER HERE')) {
$args['title'] = 'TRANSLATE TITLE HERE';
}
return $args;
}
Add the page id of the blog and article page.
Best regards,
Ismael
Hello Ismael,
Sorry that’s not helping.
I tried it for 1 post but the title is not changing.
Thanks in advance
Greetings
Hey!
Do you mind creating a temporary admin login and posting it here privately so we can look into it?
Cheers!
Yigit
Hello, you can close this topic. I solved it, probably my own fault with the PO files ;)
Greetings,