There are three files that I had to change to allow the functionality.
* Classes/CMS.php
* admin/tabs/AdminCMS.php
* modules/blockinfos/blockinfos.php
No core functionality change to the CMS, just allowing Groups to be used exactly like they are in Categories.
I've heard a few mutters about this one, and then when I needed it myself, I thought I'd give it a shot. Let me know if there are any issues, I've tested it on my own system and all seems to be working.
Instructions
----------------------------------------------------------------------
Download the zip file
1) Backup your database and all files
2) Rename the above mentioned files to .bak or something (just in case)
3) Upload the contents of the archive to your site (rename the admin directory to whatever you've called it)
4) You'll need to add the following table into your database (replace ps12 with your prefix)
CREATE TABLE `sitefx_store`.`ps12__cms_group` (
`id_category` int( 10 ) unsigned NOT NULL ,
`id_group` int( 10 ) unsigned NOT NULL ,
KEY `category_group_index` ( `id_category` , `id_group` )
)
5) Done.. go into the CMS and assign the default group to all of your entries.




Back to top










