I need to play with the order of the "Featured, Recent, Top" selectors in the Public Groups Block on the homepage.
Can someone tell me where I can find the code for this?
Thanks,
Paul
I need to play with the order of the "Featured, Recent, Top" selectors in the Public Groups Block on the homepage. Can someone tell me where I can find the code for this? Thanks, Paul |
backup then open modules/boonex/groups/classes/BxGroupsModule.php replace: _t('_bx_groups_tab_featured') => array('href' => BX_DOL_URL_ROOT . '?bx_groups_filter=featured', 'active' => 'featured' == $sBrowseMode, 'dynamic' => true), with: _t('_bx_groups_tab_recent') => array('href' => BX_DOL_URL_ROOT . '?bx_groups_filter=recent', 'active' => 'recent' == $sBrowseMode, 'dynamic' => true), login to admin,clear cache, or delete cache folder contents except htaccess & go to front and when you refresh ...the recent will be first... I have video tutorials to help you mrpowless.com |