Editable Regions and Page Title

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Using FP2003, I setup a Dynamic Web Template (DWT) with one editable region named "Body" . When I created a new page based on the DWT I can update the Body region, but, I can't change the page title

Does anyone know how to make non page elements, such as the page title, an editable region?
 
In the DWT, code view, set up an editable region for the meta tags you want to be editable by users
<!-- #BeginEditable "doctitle" -->
<title>....</title>
<!-- #EndEditable -->
<!-- #BeginEditable "keywords" -->
<meta name="keywords" content="....">
<!-- #EndEditable -->
<!-- #BeginEditable "description" -->
<meta name="description" content="...">
<!-- #EndEditable -->

--




| Using FP2003, I setup a Dynamic Web Template (DWT) with one editable region named "Body" . When I created a new page based on the
DWT I can update the Body region, but, I can't change the page title.
|
| Does anyone know how to make non page elements, such as the page title, an editable region?
 
Back
Top