Tagged: 

Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #604873

    Hi,

    This is very strange but I can not change site title and tag line on General Settings.
    I have other wordpress sites with different themes and I never had this problem.

    I appreciate your help

    Kind Regards

    #604996

    Hi Elsa!

    if u switch the site to the default theme, does they change?

    Regards,
    Basilis

    #605411

    Hi Basilis,

    The answer to your question is: No :(
    The issue is not related to Enfold theme but with the WPML plugin.

    Thank you anyway.

    #605531

    Hi!

    You can try using a plugin such as this one – https://wordpress.org/plugins/wordpress-seo/ to have more control over titles

    Regards,
    Yigit

    #606409

    Hi,

    It was a wpml plugin issue but now it’s solved with the update.
    However the title and description do not appear on browser tab. I switched the site to a default theme, and everything is ok.

    Thanks

    #606410

    I need your help to display title and description on browser tab! :)

    #606426

    Hi!

    Have you tried using this plugin – https://wordpress.org/plugins/wordpress-seo/ as i mentioned above? :)
    Also, can you please try de-activating all active plugins and check if that helps?

    Cheers!
    Yigit

    #606842

    Hi Yigit,

    Thanks for your reply.

    Yes I tried the yoast seo plugin and deactivated all active plugins but the problem still persists. :(
    However, the theme should display title and description on browser tab without the need of adding plugins.

    So I still need your help to fix this issue.

    Kind Regards

    #606843

    …any of the default themes (Twenty Fourteen, Fifteen, Sixteen) display the title and description on browser tab!

    #607436

    Hey!

    The theme handles the page title differently so we added a filter for it. Add this in the functions.php file if you want to include the site description in the title:

    add_filter('avf_title_tag','avf_new_title');
    function avf_new_title() {
    	if( is_front_page() || is_home() ) {
    		$title = get_bloginfo('name') . ' | ' . get_bloginfo('description');
    	}
    	return $title;
    }

    Best regards,
    Ismael

    #607976

    Hi Ismael,

    I want to display on browser tab not only description but also title.
    Meanwhile I placed the code given on functions.php and I can not see title and description displayed.

    Kind Regards

    #608858

    Hey!

    This issue with the title not showing on the tab is happening on your site is not related to enfold at all it is happening because of the settings in Yoast SEO plugin. If you disable it the title will show correctly on the browser tab and elsewhere. however to resolve it now please goto the homepage and then seo settings in the homepage and add the title and description in the Yoast plugin.

    Best regards,
    Vinay

    #609039

    Hi Vinnie,

    Thanks for the reply.

    I need to use the Yoast plugin and I’m not able to see this issue solved.
    This is a great confusion to me, and at first glance it seems that there are here several answers of your support that contradict each other:

    – First, Yigit recommends to try yoast seo plugin.
    – Then Ismael says the theme handles the page title differently.
    – And finally Vinnie says the issue is related to the settings in Yoast SEO plugin.

    In fact if Yoast SEO plugin is deactivated the title and description are displaying again.
    However, any default theme shows the title and description whether the Yoast SEO plugin is enabled or not (which confirms Enfold theme handle page title differently, as Ismael said).

    Besides I have other sites (eg bemvestir.com) and the theme shows the title and description exactly with the same settings on Yoast SEO plugin.

    Appreciate your help.

    Kind Regards

    #610593

    Hey!

    – First, Yigit recommends to try yoast seo plugin.

    If you installed the plugin, you have to modify the page title in the SEO > Title & Meta panel.

    – Then Ismael says the theme handles the page title differently

    I didn’t know that you installed the plugin. If the seo plugin is installed, it will override the theme’s title filter.

    – And finally Vinnie says the issue is related to the settings in Yoast SEO plugin.

    Sorry for the confusion. You have to activate the Force re-writing of titles option in the SEO > Title & Meta panel.

    For now, we disabled the plugin’s title force rewrite so that you can use the theme’s filter:

    add_action('init', 'ava_remove_seo_title_filter', 50);
    function ava_remove_seo_title_filter() {
    	remove_filter('avf_title_tag', 'avia_wpseo_change_title_adjustment', 10, 2);
    }

    The site title and description is now included in the title.

    Cheers!
    Ismael

    • This reply was modified 8 years, 4 months ago by Ismael.
    #610684

    Hi Ismael,

    Thanks for your support.
    Now it’s fine! :)

    Have a nice weekend!

    #610792

    Hi!

    Nice! Have a great weekend! :)

    Cheers!
    Ismael

Viewing 16 posts - 1 through 16 (of 16 total)
  • The topic ‘Unable to modify site sitle and tag line’ is closed to new replies.