Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorLB
    • CommentTimeOct 14th 2006
     
    http://www.wordofsouth.com/photos/index.php?level=picture&id=463

    I don't like how the filename is displayed at the top like this

    Collections » Events » TJsDJs/Ozone Awards » tjsdjsozoneawards0806102.jpg

    Is there a way that I can change it to the name of the picture or have nothing at all?
    •  
      CommentAuthorkimparsell
    • CommentTimeOct 15th 2006
     
    In gallery.php, search for the following line (approximately line 757):

    $breadcrumbs = ' <a href="'.$_SERVER["PHP_SELF"].'">Collections</a> &raquo; ' . $collection_link . ' &raquo; ' . $album_link . ' &raquo; ' . '<span id="image_name"><b>'.$picture_name.'</b></span>';

    And change it to this:

    $breadcrumbs = ' <a href="'.$_SERVER["PHP_SELF"].'">Collections</a> &raquo; ' . $collection_link . ' &raquo; ' . $album_link . ';

    That will remove the filename from the navigation.
    • CommentAuthorLB
    • CommentTimeOct 15th 2006
     
    Thank you!
    •  
      CommentAuthorkimparsell
    • CommentTimeOct 19th 2006
     
    I'm sorry - I made a typo in my original post. The code should be:

    $breadcrumbs = ' <a href="'.$_SERVER["PHP_SELF"].'">Collections</a> &raquo; ' . $collection_link . ' &raquo; ' . $album_link . '';

    Hope this fixes your problem.