Page 1 of 1

Meta Tags..where?

Posted: 15 Aug 2008, 00:37
by devin
I'm use to the old imagevue where they were in the index..where exactly are they located now?

Posted: 15 Aug 2008, 04:27
by mjau-mjau
Try imagevue/templates/index_gallery.phtml

Posted: 15 Aug 2008, 12:09
by devin
Thanks Karl! i'll give that a try

Posted: 16 Aug 2008, 03:37
by Christopher
Just to be clear, is this where I can add a 'description' tag to be
found by google for searches?

...my coding has always been a little weak...

Posted: 16 Aug 2008, 07:00
by mjau-mjau
Christopher wrote:Just to be clear, is this where I can add a 'description' tag to be
found by google for searches?

...my coding has always been a little weak...
That's right ...

Posted: 16 Aug 2008, 07:48
by Christopher
Excellent, thanks!

Code location insert

Posted: 23 Aug 2008, 12:49
by amanuensis
What line would you put the description on?
What would be the description code to enter on that line?

Posted: 25 Aug 2008, 11:20
by mjau-mjau
This is the first few lines of the file "index_gallery.phtml":
Code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><?php echo $this->siteTitle; ?></title>
<link href="<?php echo IV_PATH; ?>css/forAdmin.css" rel="stylesheet" type="text/css" />
<link href="<?php echo IV_PATH; ?>css/forImagevue.css" rel="stylesheet" type="text/css" />
<meta http-equiv="Content-Type" content="text/html" />
Simply add any meta tags after the last line there. For example, adding your description would be something like this:
Code
<META NAME="Description" CONTENT="Your description here.">