Now it looks like this:
Index: Index - name of the gallery
Thumbnails: name of the category - name of the gallery
Displayimage: image name - name of the gallery
I would like to like this:
Index: Name of the Gallery
Thumbnails: name of the category
Displayimage: image name
How to do it? THANKS!!
Could you please post links with each question, it just adds extra work for us having to find them.
From your previous thread -
Url: http://gta5pc.pl/galeria/displayimage.php?album=4&pid=8#top_display_media
Thanks! :)
But any idea for my problem? :)
Copy the function theme_page_title from themes/sample/theme.php to your theme's theme.php file, if it doesn't exist. Then, find
$return = strip_tags(bb_decode($section)) . ' - ' . $CONFIG['gallery_name'];
and replace with
global $CPG_PHP_SELF;
switch ($CPG_PHP_SELF) {
case 'index.php':
$return = $CONFIG['gallery_name'];
break;
case 'thumbnails.php':
case 'displayimage.php':
$return = strip_tags(bb_decode($section));
break;
default:
$return = strip_tags(bb_decode($section)) . ' - ' . $CONFIG['gallery_name'];
break;
}
Sorry, but I don't understand :( In my theme.php I can't find this code:
$return = strip_tags(bb_decode($section)) . ' - ' . $CONFIG['gallery_name'];
Please re-read the above post from Andre. Not all theme-able elements have the code included in the theme.php file to make it light and easily readable. So if you need to adjust a particular function (as per above) you simply get the code from the sample theme and copy it into yours. So in your cast open the sample theme.php and find "theme_page_title" and you will see the block is clearly highlighted with the start and end of the function, just copy that block into your theme.php and make your modifications.
Thank you very much Andre and Phill. Topic solved :)