MyBB Community Forums

Full Version: Alt Tag Showing instead on Title Text
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
My problem is basically at the bottom of the Forum where you have the information about Threads containing posts etc. Instead of it saying something like 'Forum Contains New Posts' it just has '{1} new posts' but that is the Alt Tag and NOT the Title Text.

My problem is I can find the fault using Inspect Element in Google Chrome, it is the following...

<img src="images/Terminal/on.png" alt="{1} new posts" title="{1} new posts" style="vertical-align: middle; padding-bottom: 4px;">

as you can see the alt and the title are the same.

I want to Edit the Title but can't locate the same code above in ANY of the HTML or PHP Pages of my Forum, I thought it is maybe in a Template or something, but I just don't know where to look, can somebody please help me find the File I need to Edit?

Here is a Screenshot:

[Image: forumpostsalttag_zpsce271d22.png]

I hope somebody can help.
Check you footer template
Could you please post your URL
(2013-11-30, 07:39 PM)marcus123 Wrote: [ -> ]Check you footer template
Could you please post your URL
http://www.cparevolution.net/
Have you checked it here:
ACP>>Templates & Style>>Templates>>YOUR TEMPLATE>>Footer Templates
footer
footer_languageselect





Ctrl + F and and search for forum_legend

P.S. Why did you remove MYBB link from the footer you can't remove that because you will be deny support!
(2013-11-30, 07:43 PM)marcus123 Wrote: [ -> ]Have you checked it here:
ACP>>Templates & Style>>Templates>>YOUR TEMPLATE>>Footer Templates
footer
footer_languageselect

Ctrl + F and and search for forum_legend

P.S. Why did you remove MYBB link from the footer you can't remove that because you will be deny support!

forum_legend is not in any of those no.
Then just search maybe for similar {1} new posts
(2013-11-30, 07:43 PM)marcus123 Wrote: [ -> ]P.S. Why did you remove MYBB link from the footer you can't remove that because you will be deny support!

I put the copyright back now.

(2013-11-30, 07:51 PM)marcus123 Wrote: [ -> ]Then just search maybe for similar {1} new posts

I tried searching a few files using that but I still can't locate it.
Hold on it can be another template

It's in the index template just under {$boardstats} sorry
(2013-11-30, 07:57 PM)marcus123 Wrote: [ -> ]Hold on it can be another template

It's in the index template just under {$boardstats} sorry

Yes but both alt and title are still the same?

<dl class="forum_legend smalltext">
	<dt><img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
	<dd>{$lang->new_posts}</dd>
You need to check you language php file
inc\languages\english find index.lang and check new_posts section
Pages: 1 2