Hi, I couldn't find it anywhere, sorry if I missed something but...
Where I can change order of displaying my gallery name ect. in tab?
I have: "Home>cantegory - Gallery name" or "album name - gallery name" but I would like to have "Gallery name - category - album name etc.
:-\
Please post a link to your gallery (http://forum.coppermine-gallery.net/index.php/topic,55415.msg270616.html#msg270616) as requested by board rules.
Sorry... I'm doing it right away!
http://www.streepinstyle.info/galeria (http://www.streepinstyle.info/galeria)
Copy this code to your theme's theme.php file and modify it to your needs:
/******************************************************************************
** Section <<<theme_page_title>>> - START
******************************************************************************/
// Creates the title tag for each page
// For the sake of search engine friendliness, the dynamic part $section should come first
function theme_page_title($section)
{
global $CONFIG;
$return = strip_tags(bb_decode($section)) . ' - ' . $CONFIG['gallery_name'];
return $return;
}
/******************************************************************************
** Section <<<theme_page_title>>> - END
******************************************************************************/
Thanks so much for help! I'm a beginner so could I ask for a small example of this code with modification?
Thanks again!
Just change
$return = strip_tags(bb_decode($section)) . ' - ' . $CONFIG['gallery_name'];
to
$return = $CONFIG['gallery_name'] . ' - ' . strip_tags(bb_decode($section));
Thanks so much! Everything is working great ") Thanks you Αndré ;)