What Do You Need In The Xf2 Xengallery Version? Vote for your choices here: http://www.sonnb.com/threads/what-do-you-need-in-the-xf2-xengallery-version.1539/

Suggestion Option To Disable Breadcrumbs

Discussion in 'Feature Requests' started by Russoroni, Dec 18, 2013.

  1. Russoroni

    Russoroni Member

    I would like to remove breadcrumbs while in the gallery but not affect the rest of the site.
     
  2. sonnb

    sonnb Administrator Staff Member

    I believe you should edit code yourself. I can show you where to do that.
     
  3. Russoroni

    Russoroni Member

    Ok that would be great
     
  4. sonnb

    sonnb Administrator Staff Member

    I will get back to you later.
     
    Russoroni likes this.
  5. sonnb

    sonnb Administrator Staff Member

    Here are some instructions for you:

    library\sonnb\XenGallery\Model\Content.php
    PHP:
    public function getContentBreadCrumbs(array $content, array $album)
        {
    return array();
    }
    library/sonnb/XenGallery/Model/Album.php
    PHP:
    public function getAlbumBreadCrumbs(array $album$includeSelf true)
        {
    return array();
    }
    library/sonnb/XenGallery/Model/Collection.php
    PHP:
    public function getCollectionBreadCrumb($collection null)
        {

    return array();
    }
    The same for:
    /library/sonnb/XenGallery/Model/Camera.php
    /library/sonnb/XenGallery/Model/MyPlaylist.php
    /library/sonnb/XenGallery/Model/Stream.php
     

Share This Page