Re: Topic SEO
Posted: 21 May 2010, 14:24
You can also do it like this:
In my opinion it looks better
[hsimg]http://i45.tinypic.com/250tfgm.png[/hsimg]
In me is the increased length of the field from 45 to 120 so you can see the difference
And one more thing, is there any chance that the description of the topic was shown in viewforum
Just as in this modification: http://www.phpbb.com/community/viewtopi ... 0&t=810455
Code: Select all
#
#----------[ OPEN ]----------
#
styles/prosilver/template/posting_editor.html
#
#----------[ FIND ]----------
#
<!-- IF not S_PRIVMSGS and S_NEW_MESSAGE --><!-- IF U_TOPIC_SEO_DESC -->
<dl style="clear: left;">
<dt><label for="seo_desc">{L_TOPIC_SEO_DESCRIPTION}:</label></dt>
<dd><textarea name="seo_desc" id="seo_desc" rows="3" cols="30" class="inputbox">{SEO_DESC}</textarea></dd>
</dl><!-- ENDIF --><!-- IF U_TOPIC_SEO_KEY -->
<dl style="clear: left;">
<dt><label for="seo_key">{L_TOPIC_SEO_KEYWORDS}:</label><br />{L_TOPIC_SEO_KEY_EXPLAIN}</dt>
<dd><input type="text" name="seo_key" id="seo_key" size="80" value="{SEO_KEY}" maxlength="255" class="inputbox autowidth" /></dd>
</dl>
<!-- ENDIF --><!-- ENDIF -->
#
#----------[ REPLACE WITH ]----------
#
<!-- IF not S_PRIVMSGS and S_NEW_MESSAGE --><!-- IF U_TOPIC_SEO_DESC -->
<dl style="clear: left;">
<dt><label for="seo_desc">{L_TOPIC_SEO_DESCRIPTION}:</label></dt>
<dd><input type="text" name="seo_desc" id="seo_desc" size="45" value="{SEO_DESC}" maxlength="255" class="inputbox autowidth" /></dd>
</dl><!-- ENDIF --><!-- IF U_TOPIC_SEO_KEY -->
<dl style="clear: left;">
<dt><label for="seo_key">{L_TOPIC_SEO_KEYWORDS}:</label></dt>
<dd><input type="text" name="seo_key" id="seo_key" size="45" value="{SEO_KEY}" maxlength="255" class="inputbox autowidth" /></dd>
</dl>
<!-- ENDIF --><!-- ENDIF -->
[hsimg]http://i45.tinypic.com/250tfgm.png[/hsimg]
In me is the increased length of the field from 45 to 120 so you can see the difference
And one more thing, is there any chance that the description of the topic was shown in viewforum
Just as in this modification: http://www.phpbb.com/community/viewtopi ... 0&t=810455