how i'm removeing the: Location...

hi

how do i removeing the Location and Description from create a new album?

Quote · 16 Jul 2010

open /modules/boonex/photos/classes/BxPhotosPageAlbumsMy.php file

1) find $aForm = $this->oTemplate->getAlbumFormAddArray(array('allow_view' => $aPrivFieldView)); around line no. 182

and then add the below lines of code

unset($aForm['inputs']['location']);
unset($aForm['inputs']['description']);


2) find this line of code $aForm = $this->oTemplate->getAlbumFormEditArray($aReInputs, $aReForm); around line no. 280

and then add the below lines of code

unset($aForm['inputs']['location']);
unset($aForm['inputs']['description']);


This modification will remove the Location and Description text fields on Photo Album Create/Edit Page


Looking for Help? http://www.boonex.com/kevinmitnick
Quote · 16 Jul 2010

 

open /modules/boonex/photos/classes/BxPhotosPageAlbumsMy.php file

1) find $aForm = $this->oTemplate->getAlbumFormAddArray(array('allow_view' => $aPrivFieldView)); around line no. 182

and then add the below lines of code

unset($aForm['inputs']['location']);
unset($aForm['inputs']['description']);


2) find this line of code $aForm = $this->oTemplate->getAlbumFormEditArray($aReInputs, $aReForm); around line no. 280

and then add the below lines of code

unset($aForm['inputs']['location']);
unset($aForm['inputs']['description']);


This modification will remove the Location and Description text fields on Photo Album Create/Edit Page

 

 

Thank you very much kevinmitnick

Quote · 16 Jul 2010
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.