Links on public groups block not working

If you click one of the links at the top of the block, it will work, but only ONCE. If you click another link on the block, ie, top, recent, etc.. It doesn't do anything. The loading image will popup, but nothing happens. If you mouse over the arrows at the bottom of the block, you get a Javascript:void(); that shows in the status bar on  your browser, unlike the arrows on the other blocks, ie, blogs, photos, videos, etc.... Click the arrow, same thing, nothing happens. What could be causing this. I can send the url in PM, I don't like posting my site url. Thanks

 

screen.jpg · 154.6K · 169 views
Quote · 12 Jul 2011

I got same problem. Can somebody else confirm that ?

Quote · 12 Jul 2011

Anyone else having this problem? Or a solution as to what it could be?

Quote · 1 Aug 2011

I'm also getting this error.  I notice that clicking does work, however it's loosing the bx_groups_filter setting, and defaulting to "top" no matter which I click.

Quote · 3 Aug 2011

I'm also getting the javascrip

Quote · 26 Aug 2011

I've upgraded to 7.07 and STILL get have the same problem.

Quote · 26 Aug 2011

No solution, but a new issue that I've noticed. On the public groups on our home page it has a link that says:

"View All (10)"

However, when you click it it shows 11 groups. Then if you head over to the Groups main page it says in the (I'm assuming) same public box a totally different assortment of groups and has a link that says:

"View All (17)"

However when you click that link it shows 24 groups.

 

People are complaining that their groups are missing in action when they are, in fact, active and public. But the Public Group boxes are behaving totally randomly.

 

It's as though Groups is calling random functions & information and failing to call any at all in the case of dead links on the blocks. Surely this can't be the way it's supposed to be?

Quote · 30 Aug 2011

Came looking for help on this and find that issues with this mod weren't resolved, here on forum at least,

I have the public groups block appearing on front page, but clicking on link to 'featured' or 'top' causes the index.html to merge with the index.php and do some stuff that would actually be kinda cool if I wanted it to happen  - any suggestions will be welcome http://hallspublishing.net/index.php

Quote · 29 Mar 2012

This is typically seen on sites with a splash page. The URL by default will invoke the splash page so you must append the index.php to the url to invoke the index page. See fix below for Groups module. You will need to follow similar procedure for other modules (such as events). The bold text is what have been added to the function.

 

 

In modules\boonex\groups\classes\BxGroupsModule.php

 

Find the function serviceHomepageBlock () and replace with :

 

    function serviceHomepageBlock () {

        if (!$this->_oDb->isAnyPublicContent())
            return '';
       
        bx_import ('PageMain', $this->_aModule);
        $o = new BxGroupsPageMain ($this);
        $o->sUrlStart = BX_DOL_URL_ROOT . 'index.php?';

        $sDefaultHomepageTab = $this->_oDb->getParam('bx_groups_homepage_default_tab');
        $sBrowseMode = $sDefaultHomepageTab;
        switch ($_GET['bx_groups_filter']) {           
            case 'featured':
            case 'recent':
            case 'top':
            case 'popular':
            case $sDefaultHomepageTab:           
                $sBrowseMode = $_GET['bx_groups_filter'];
                break;
        }

        return $o->ajaxBrowse(
            $sBrowseMode,
            $this->_oDb->getParam('bx_groups_perpage_homepage'),
            array(
                _t('_bx_groups_tab_featured') => array('href' => BX_DOL_URL_ROOT . 'index.php?bx_groups_filter=featured', 'active' => 'featured' == $sBrowseMode, 'dynamic' => true),
                _t('_bx_groups_tab_recent') => array('href' => BX_DOL_URL_ROOT . 'index.php?bx_groups_filter=recent', 'active' => 'recent' == $sBrowseMode, 'dynamic' => true),
                _t('_bx_groups_tab_top') => array('href' => BX_DOL_URL_ROOT . 'index.php?bx_groups_filter=top', 'active' => 'top' == $sBrowseMode, 'dynamic' => true),
                _t('_bx_groups_tab_popular') => array('href' => BX_DOL_URL_ROOT . 'index.php?bx_groups_filter=popular', 'active' => 'popular' == $sBrowseMode, 'dynamic' => true),
            )
        );
    }

 

 

 

Came looking for help on this and find that issues with this mod weren't resolved, here on forum at least,

I have the public groups block appearing on front page, but clicking on link to 'featured' or 'top' causes the index.html to merge with the index.php and do some stuff that would actually be kinda cool if I wanted it to happen  - any suggestions will be welcome http://hallspublishing.net/index.php

 

Paypal email is jeromemingo@gmail.com - http://www.boonex.com/market/posts/modzzz
Quote · 31 Mar 2012

thank you

Quote · 31 Mar 2012
 
 
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.