• Resolved ptaxi

    (@ptaxi)


    Hello,

    All of my wordpress pages have “at” in the page title, and I wanted to remove this. Any ideas?

    Thanks.

Viewing 6 replies - 1 through 6 (of 6 total)
  • link to your site?

    was that always so?

    does this also happen with post titles?

    what is if you deactivate all plugins?

    Thread Starter ptaxi

    (@ptaxi)

    My site:
    https://www.cellwand.com

    It was always so. It does not happen with Post titles- only Pages. Deactivating all plug-ins does nothing.

    edit page.php of your theme;

    search for:

    <h1><span class="redpound"># </span><?php the_title(); ?></h1>

    if you can find it, remove this:

    <span class="redpound"># </span>


    alternatively, edit style.css; find:

    .redpound{
    	color:red;
    	font-size:20px;
    	text-decoration:none !important;
    	font-weight:bold;
    
    	}

    add display:none; to it.

    so it should look like:

    .redpound{
    	color:red;
    	font-size:20px;
    	text-decoration:none !important;
    	font-weight:bold;
        display: none;
    	}

    Thread Starter ptaxi

    (@ptaxi)

    Hi,

    I think that you misunderstand me.

    The problem is not the “#” symbol in my H1 headers. The problem is the word “at” in the page titles.

    ahhhh – in the browser title – you could have said so.

    look into header.php and search for <title>

    then post the code that is in there up to the </title>

    Thread Starter ptaxi

    (@ptaxi)

    I believe I have solved this issue:

    I edited the header.php file and removed the word “at” from the title tag.

    Thanks for your help!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How to get rid of "at" in page title’ is closed to new replies.