Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #949495

    Hello guys,
    When I click on an post in my blog page (credentials above), I arrive on my post detail. I’d like to keep my Blog page header (the image and the sentence LE BLOG D’ECHO Conseil) for the post detail pages. Is there a way to do this?

    Tx for your help and have a nice day
    Marine

    #950669

    Hey newki75,

    Thank you for using Enfold.

    The following filter should work. Just add it in the functions.php file.

    add_filter('avf_title_args', 'avf_title_args_mod', 10, 2);
    function avf_title_args_mod($args,$id)
    {
         if ( is_singular('post') ) {
            $args['title'] = "LE BLOG D’ECHO";
         }
        return $args;
    }

    Best regards,
    Ismael

    #951018

    Great Tx Ismael :-)
    You can close the case
    Nice day

    #951124

    Hi,

    I’m glad you were able to get this corrected. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Customize Posts Blog detail template’ is closed to new replies.