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

    Hi Kriesi,

    i have a SEO Google Problem and I need different Titles for the Archiv Blog Pages to solve that.

    I have different Permalinks:
    https://tombeck-zauberer.de/blog/page/2/
    https://tombeck-zauberer.de/blog/page/3/
    https://tombeck-zauberer.de/blog/page/4/
    https://tombeck-zauberer.de/blog/page/5/


    but every Page Title is the same:
    NEUIGKEITEN AUS DER MAGISCHEN WELT VON ZAUBERKÜNSTLER TOMBECK

    It would be way better if its like that:
    NEUIGKEITEN AUS DER MAGISCHEN WELT VON ZAUBERKÜNSTLER TOMBECK – PAGE 2
    NEUIGKEITEN AUS DER MAGISCHEN WELT VON ZAUBERKÜNSTLER TOMBECK – PAGE 3
    NEUIGKEITEN AUS DER MAGISCHEN WELT VON ZAUBERKÜNSTLER TOMBECK – PAGE 4
    NEUIGKEITEN AUS DER MAGISCHEN WELT VON ZAUBERKÜNSTLER TOMBECK – PAGE 5

    can u help me or fix this general SEO Google Problem?
    Thank You!

    #1010704

    Hi ak-muc!

    Please add this code to your child theme to fix this issue:

    
    add_filter( 'wpseo_title', 'avia_yoast_paged_title', 10, 1 );
    function avia_yoast_paged_title($title)
    {
    	global $paged;
    	if(!empty($paged)) $title .= ' – PAGE '.$paged;
    	return $title;
    }
    
    

    Best regards,
    Peter

    #1010709

    Hi Dude,

    Hoffe Dir gehts gut … i hope youre doing fine.
    You mean Child Theme Functions.php?

    Thx for the fast response … much appreciated.
    should be fixed in the next update, cause many seo tools found this issue in the enfold theme.

    many greetings
    Alex

    #1010710

    Thx its working!

    #1010751

    Hi,

    Great, glad I could help you :)

    Best regards,
    Peter

    #1010754

    Thank you!

    Why this Issue is still persistent and not fixed within the theme?
    Maybe this will help a lot of people who optimize their enfold site for SEO & google.

    • This reply was modified 6 years, 2 months ago by ak-muc.
    #1010804

    Hi ak-muc,

    Well, it can be easily adjusted and the solution now is available.

    If you need further assistance please let us know.
    Best regards,
    Victoria

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.