Help - Format Browse Group By Category

I recently upgraded to 7.0.5 (from 7.0.2)

My groups are now pushed to the right.  When I look in the 'Inspect Element' section of Google Chrome, it says the following

 

<div class="boxFirstHeader">

<div class="boxContent">

<div id="id12988133661300246481" style="padding-left: 255.5px; "> (This appears to be the problem)

<div class="result_block">

<div class="sys_file_search_unit bx_groups_unit">

 

Where can I find id12989... and remove it?

 

Thanks

Groups padding-left.png · 129.6K · 60 views
Quote · 27 Feb 2011

It's auto centered content function in groups! If you want remove it follow these steps:

1. Open the modules\boonex\groups\classes\BxGroupsSearchResult.php

2. Find this code line :

return $oFunctions->centerContent ($s, '.bx_groups_unit');

and replace with :

return $s;

PS: If possible do not write me personally, please try to ask on the forum first
Quote · 28 Feb 2011

Thanks.  Is it possible to have the results in alphabetical order?

Quote · 1 Mar 2011

 

Thanks.  Is it possible to have the results in alphabetical order?

Ok open the  modules\boonex\groups\classes\BxGroupsSearchResult.php

find this code line :

'sorting' => 'last',


and replace with

'sorting' => 'alpha',

Than find these code lines:


} elseif ($this->aCurrent['sorting'] == 'popular') {
$aSql = array();
$aSql['order'] = " ORDER BY `bx_groups_main`.`views` DESC";
return $aSql;
}


and add these code lines after that:

elseif ($this->aCurrent['sorting'] == 'alpha') {
$aSql = array();
$aSql['order'] = " ORDER BY `bx_groups_main`.`title`";
return $aSql;
}

PS: If possible do not write me personally, please try to ask on the forum first
Quote · 3 Mar 2011

It worked. Thank you very much!

Quote · 3 Mar 2011
 
 
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.