Search…

X3 Photo Gallery Support Forums

Search…
 
devin
Experienced
Topic Author
Posts: 45
Joined: 16 Apr 2007, 00:15

Meta Tags..where?

15 Aug 2008, 00:37

I'm use to the old imagevue where they were in the index..where exactly are they located now?
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14007
Joined: 30 Sep 2006, 03:37

15 Aug 2008, 04:27

Try imagevue/templates/index_gallery.phtml
 
devin
Experienced
Topic Author
Posts: 45
Joined: 16 Apr 2007, 00:15

15 Aug 2008, 12:09

Thanks Karl! i'll give that a try
 
User avatar
Christopher
Experienced
Posts: 213
Joined: 30 Sep 2006, 18:58

16 Aug 2008, 03:37

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...
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14007
Joined: 30 Sep 2006, 03:37

16 Aug 2008, 07:00

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 ...
 
User avatar
Christopher
Experienced
Posts: 213
Joined: 30 Sep 2006, 18:58

16 Aug 2008, 07:48

Excellent, thanks!
 
amanuensis
Experienced
Posts: 60
Joined: 24 Oct 2006, 18:19

Code location insert

23 Aug 2008, 12:49

What line would you put the description on?
What would be the description code to enter on that line?
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14007
Joined: 30 Sep 2006, 03:37

25 Aug 2008, 11:20

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.">