Add Album

colin4unow

Joined: 2013-11-03
Posts: 1
Posted: Sun, 2013-11-03 10:17

Hi Guys. When trying to add Album to my Gallery Website Im asked for Title, Desription, Directory name and Internet Address. The Title and Desription make perfect sense but what is the Directory name and Internet Address ? and how do i remove rhem ?

Thanks In Advance

Colin

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 27300
Posted: Sun, 2013-11-03 17:21

Directory name is what directory on the file system the is used when creating an album.
Internet address is what is on the address bar of the browser when a person browses the item of album.

A couple of ways to remove if you are confortable with jquery and selectors you could hide them
or edit code in the album, movie, and photo.php files on the gallery helper.
$group->input("slug")->label(t("Internet Address"))
to
$group->hidden("slug")->label(t("Internet Address"))

Dave

_____________________________________________
Blog & G2 || floridave - Gallery Team

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 27300
Posted: Sun, 2013-11-03 20:08

This might work as well....Add to your themes css:

#g-add-album-form li:nth-child(4) {
display: none;
}

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team