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

    In which file can I change the <h1 class=”main-title entry-title”> to <strong class=”main-title entry-title”>?

    best wishes
    marlene

    #698784

    Hey hannerinc!

    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)
    {
        $args['heading'] = 'strong';
        return $args;
    }

    Cheers!
    Yigit

    #698844

    thanks :)

    #698861

    Hi,

    Glad we could help!
    We really appreciate it if you rate our theme on themeforest https://themeforest.net/downloads
    To know more about enfold features please check – http://kriesi.at/documentation/enfold/
    Thank you for using Enfold :)

    Best regards,
    Vinay

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Change h1 main-title to strong’ is closed to new replies.