header.html file
Code:
<title><%$title%></title>
<meta http-equiv="content-type" content="text/html; charset=<%$charset%>" />
<meta name="keywords" content="<%$meta_keywords%>" />
<meta name="description" content="<%$meta_description%>" />
browse.html file
Code:
<%if $header%>
<%$header%>
<%else%>
<%capture name="pg_title"%><%t a=$page_title b=$current_page%>Browse by category: %1 - Page %2<%/t%><%/capture%>
<%include file="header.html"
title=$smarty.capture.pg_title
meta_keywords="$meta_keywords"
meta_description="$meta_description"
%>
<%/if%>
both of them are default ones actually.
what I understand is the key is code in browse.html file.
but I just wonder that the "Page Title" function should work by default something like that.
If I don't fill that box, ok title on browser will show category's name.
But if I fill that box, title on browser will show as I filled.
But it seem not working like that.