Is it possible to use two different browse_unit.html files to display the Sounds Block & Sounds Homepage differently?
I'd like to have the Sound's Block on my index page have a different layout than the Sounds Homepage.
This is what the sounds block php looks like:
require_once(BX_DIRECTORY_PATH_MODULES . 'boonex/sounds/classes/BxSoundsSearch.php');
$oMedia = new BxSoundsSearch();
$aVisible[] = BX_DOL_PG_ALL;
if ($this->iMemberID > 0)
$aVisible[] = BX_DOL_PG_MEMBERS;
$aCode = $oMedia->getBrowseBlock(array('allow_view'=>$aVisible), array('menu_top'=>true, 'sorting' => getParam('bx_sounds_mode_index'), 'per_page'=>(int)getParam('bx_sounds_number_index')));
return array($aCode['code'], $aCode['menu_top'], $aCode['menu_bottom'], $aCode['wrapper']);
I looked in boonex/sounds/classes/BxSoundsSearch.php & couldn't determine where it was pointing to browse_unit.html.
Anyone? Thanks..