Thanks Michael...
It hadn't occured to me to look in the language_en.php file to edit the text on the overview page. Thanks!
I've now managed to find the config line for removing the view count. Thanks again.
As for disabling the breadcrumbs I spent some time trying to see if I could do this myself by commenting out certain bits of code.
These are my findings which seem to be effective (my understanding of php is very limited):
The thumbnail page was showing this: Galleries > Pottery > 22 Images
By commenting out line 169 of inc/topnavigation.inc.php ....
Quote:
echo $nr_images . " " . (($nr_images == 1) ? $lang_picture : $lang_pictures);
the words "22 Images" were removed.
The main gallery page showed this: Galleries > Pottery > Images 3/22
By commenting out line 31 of inc/navpath.inc.php ....
Quote:
$printRoot = true;
the first part of the breadcrumb: "Galleries >" was removed.
Then by commenting out line 89 in inc/navpath.inc.php ....
Quote:
echo $fullpath;
the gallery folder "Pottery" is removed
This left a ">" and I found and removed this in line 166 of topnavigation.inc.php ....
Quote:
echo " > ";
This leaves me with the words "Image 3/22" which I do not know how to remove... except to colour the text the same colour as the background.
Is this a more difficult thing to do? If there is a way that is not too complex I would be interested to know.
I have been including twg as part of a cms website template for some students. I really am impressed with all of your hard work in creating this script. I will definitely be registering my copy.
Stephen