Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #397888

    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

    #398092

    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

    #399210
    This reply has been marked as private.
    #399467

    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

    #400976

    Hello Ismael,
    Sorry that’s not helping.
    I tried it for 1 post but the title is not changing.
    Thanks in advance

    Greetings

    #401406

    Hey!

    Do you mind creating a temporary admin login and posting it here privately so we can look into it?

    Cheers!
    Yigit

    #410087

    Hello, you can close this topic. I solved it, probably my own fault with the PO files ;)

    Greetings,

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Translate the word "articles" into something different’ is closed to new replies.