Tagged: 

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

    Wasn’t real sure how to ask this question. Below is a link to a blog post on my site:

    http://rboa.com/8-best-practices-for-running-a-retargeting-campaign/

    At the top of the blog in the “Title container” it says Blog – Latest News, but rather than linking to a category or archive URL it links to the primary URL: http://rboa.com/

    Is it possible to change it to something like: http://rboa.com/blog/

    Thanks

    #431494

    Hey MICHAELWINN!

    Please add following code to Functions.php file in Appearance > Editor

    add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
        if ( $args['title'] == 'Blog - Latest News' )
        {
            $args['link'] = "http://rboa.com/blog/";
            $args['heading'] = 'h1';
        }
    
        return $args;
    }

    Cheers!
    Yigit

    #431498

    Thank you. That worked perfectly!

    #431505

    Hey!

    You are welcome, we are always happy to help :)
    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Best regards,
    Yigit

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