Tagged: 

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

    I have a request to add a subtitle to my main blog page. I installed the subtitle plugin from Professional Themes as it claimed no coding required. I didn’t want to change .php files. However, it doesn’t display the subtitle. Do you Enfold folks have a recommended plugin that works in the Enfold theme or other suggestions for displaying subtitles.

    Thanks.

    • This topic was modified 8 years, 1 month ago by logixlab.
    #706611

    Hey Richard,

    I’m not sure I understand what you mean by subtitles? Please try to explain a bit further and post a link to the site in question and we’ll have a closer look.

    Best regards,
    Rikard

    #706789

    Subtitles should appear beneath the title on the page. We are using a plugin “Subtitles’ that does not require coding. We are using the subtitle idea to improve our SEO, with the understanding that it improves SEO significantly over using just the Title field. Our main blog page ‘So many words, so little time…vocabulary building strategies’ has the subtitle ‘Building word knowledge to help close the achievement gap in reading’ in the ‘edit page’ page. We changed the Title Bar settings to ‘Display only title’ from ‘Default Layout -> Set in Enfold…’. We did this because we only want the subtitle on the main blog page, not on every page. I expected to see the subtitle text beneath the title text but it does not appear.

    Thanks for your quick response. Let me know if you need more information.

    • This reply was modified 8 years, 1 month ago by logixlab.
    #707259

    Hi,

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

    add_filter('avf_title_args', 'avia_blog_title', 10, 2);
    function avia_blog_title($args,$id)
    {
        if (is_page(1101))
        {
            $args['title'] = 'So many words, so little time…vocabulary building strategies <br> Building word knowledge to help close the achievement gap in reading';
        }
        return $args;
    }

    Best regards,
    Yigit

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