Tagged: site title
-
AuthorPosts
-
March 30, 2016 at 1:55 am #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
March 30, 2016 at 7:19 am #604996Hi Elsa!
if u switch the site to the default theme, does they change?
Regards,
BasilisMarch 30, 2016 at 7:51 pm #605411Hi Basilis,
The answer to your question is: No :(
The issue is not related to Enfold theme but with the WPML plugin.Thank you anyway.
March 30, 2016 at 11:02 pm #605531Hi!
You can try using a plugin such as this one – https://wordpress.org/plugins/wordpress-seo/ to have more control over titles
Regards,
YigitApril 1, 2016 at 1:26 am #606409Hi,
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
April 1, 2016 at 1:28 am #606410I need your help to display title and description on browser tab! :)
April 1, 2016 at 2:07 am #606426Hi!
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!
YigitApril 1, 2016 at 8:02 pm #606842Hi 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
April 1, 2016 at 8:08 pm #606843…any of the default themes (Twenty Fourteen, Fifteen, Sixteen) display the title and description on browser tab!
April 4, 2016 at 8:15 am #607436Hey!
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,
IsmaelApril 5, 2016 at 1:10 am #607976Hi 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
April 6, 2016 at 11:49 am #608858Hey!
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,
VinayApril 6, 2016 at 4:21 pm #609039Hi 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
April 9, 2016 at 2:21 pm #610593Hey!
– 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.
April 9, 2016 at 11:05 pm #610684Hi Ismael,
Thanks for your support.
Now it’s fine! :)Have a nice weekend!
April 10, 2016 at 3:02 pm #610792 -
AuthorPosts
- The topic ‘Unable to modify site sitle and tag line’ is closed to new replies.