Page 1 of 1

Keywords and SEO

Posted: 01 Sep 2008, 23:20
by imsam
Hi,

Are there any keywords/SEO features in V2? It's possible to put all that stuff in the PHP page but I was wondering if there was a way to add keywords to the site for search engines to index.

Posted: 03 Sep 2008, 02:59
by Nick
You see, the problem is - thats easy with php gallery just edit templates/layout.phtml and add keywords or whatever, but flash gallery always stays on the same page really. I'm not quite sure what you want to do, just add meta keywords or make every page indexed?

SEO

Posted: 03 Sep 2008, 09:16
by imsam
Hi,

A full blown SEO functionality should allow each image to be indexed based on images description and keywords.

Obviously, editing PHP templates will give me the basic function but this might be a feature to consider.

Thank you for your response.

Posted: 03 Sep 2008, 10:31
by mjau-mjau
Thats one of the reasons why we have the HTML gallery -
https://www.photo.gallery/soda/?p=html&path= ... r%20Duper/

Google will be able to search through the HTML gallery, indexing each page. Individual pages then have links back to the SWF gallery.

Unfortunately, the Imagevue SWF simply can't be indexed since it is a single page(and google can't read the text content in SWF anyway).

Posted: 03 Sep 2008, 13:36
by Nick
I think you can add some redirection from html page to the same page in swf. You can see the url you need in layout.phtml:
Code
<a href="?p=gallery#/<?php echo $swfAPath;?>" title="Flash Gallery">Flash version &raquo;</a> 
Something like:
Code
<meta http-equiv="refresh" content="0;url=?p=gallery#/<?php echo $swfAPath;?>"/>
Should do the trick, those pages will be indexes as html by search engines (if they don't parse meta ofcourse, not sure about that) but visitors will be redirected to the correspoding Flash gallery pages

Posted: 03 Sep 2008, 15:59
by tfluegge
Hey guys,

Is there any plan to include an option to display EXIF data on the HTML pages? This would make things a lot easier for SEO as then there would be no need to duplicate the EXIF caption in the Imagevue description field.

Your thoughts? I would like to add this as a request if possible.

Posted: 03 Sep 2008, 23:06
by mjau-mjau
tfluegge wrote:Is there any plan to include an option to display EXIF data on the HTML pages? This would make things a lot easier for SEO as then there would be no need to duplicate the EXIF caption in the Imagevue description field.
You can already do this ...

Open imagevue/css/htmlstyle.css and locate the class:
Code
.exifData { visibility: hidden; }
... simply set:
Code
.exifData { }
EXIF data will now display although I think we need to add improved formatting and styling to the layout.

Posted: 03 Sep 2008, 23:51
by tfluegge
Karl, this is great news! Some styling would be a nice improvement too!

Where would I put my keywords?

Posted: 11 Sep 2008, 19:48
by imsam
Hi,

I want to use the gallery in Flash mode. In version 1, I had simply put some meta tags in the PHP page -- basic description and keywords stuff.

Which page would I put them into in version 2? I looked at index.php but seems like that only includes an "include".

Re: Where would I put my keywords?

Posted: 12 Sep 2008, 01:14
by mjau-mjau
imsam wrote:I want to use the gallery in Flash mode. In version 1, I had simply put some meta tags in the PHP page -- basic description and keywords stuff.

Which page would I put them into in version 2? I looked at index.php but seems like that only includes an "include".
You can add them to the file templates/index_gallery.phtml

Posted: 20 Sep 2008, 06:06
by spyker
can you also put the google analytic code in there as well?

Posted: 02 Oct 2008, 14:21
by tfluegge
spyker wrote:can you also put the google analytic code in there as well?
place your google analytic code just prior to the </body> tag in index_gallery.phtml