how do I remove those links like 'add video and 'add sound' from the comments? I don't really want people uploading huge videos to my site willynilly.
how do I remove those links like 'add video and 'add sound' from the comments? I don't really want people uploading huge videos to my site willynilly. |
try /modules/boonex/wall/classes/BxWallModule.php around line 377 if($this->_oDb->isModule('sounds')) $aTopMenu['wall-ptype-music'] = array('href' => 'javascript:void(0)', 'onclick' => 'javascript:' . $this->_sJsPostObject . '.changePostType(this)', 'class' => 'wall-ptype-ctl', 'icon' => 'music', 'title' => _t('_wall_add_music')); if($this->_oDb->isModule('videos')) $aTopMenu['wall-ptype-video'] = array('href' => 'javascript:void(0)', 'onclick' => 'javascript:' . $this->_sJsPostObject . '.changePostType(this)', 'class' => 'wall-ptype-ctl', 'icon' => 'film', 'title' => _t('_wall_add_video'));
this will be site wide i am guessing. https://dolphin-techs.com - Skype: Dolphin Techs |
worked wonderfully thanks |
your welcome https://dolphin-techs.com - Skype: Dolphin Techs |