Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #593069

    Hi Guys,

    I am having trouble with having the browser tab site titles matching up. My Admin side is showing it perfectly as “ps:studios”, but the front-end of the site is showing “Ps:studios”. I need the title to be all lowercase everywhere – especially on the front-end.

    I have added a CSS attribute in the <title> tag as follows, just in case:

    <title style="text-transform: lowercase !important;"><?php if(function_exists('avia_set_title_tag')) { echo avia_set_title_tag(); } ?></title>

    I have also tried clearing my browser cache, retyping the Site Title about 10 times in WP Admin Settings and tried a Javascript method:

    <?php
    function lowtitle($title) {
         $title = strtolower($title);
         return $title;
    }
    add_filter('wp_title', 'lowtitle');
    ?>

    Nothing has worked. Here’s a screenshot of the issue.

    Screenshot of the browser tab issue.

    I’ve never had this issue, but then again, I’ve never needed an all lowercase title before.

    #594040

    Hi psstudiosinc,

    I haven’t tried it myself but maybe this thread could help you out? http://wordpress.stackexchange.com/questions/39145/how-do-i-convert-a-pages-title-to-lower-case

    Regards,
    Rikard

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