Hi,
I want to use image gallery modul for Silverstripe like the product page, but I have small problem with URL.
In original image gallery is the patch for example /photogallery/album/my_gallery
I need to change this URL like this: /photogallery/my_gallery ... without /album/
In code is
public function Link()
{
$name = $this->Folder()->Name;
if(!$name) {
$name = $this->FolderID;
}
return $this->ImageGalleryPage()->Link('album/'.$name);
}
If I delete 'album/' ... so page not found.
Exist any solution for it?
Thanx