AdminCP ==> vBCMS-Veraltung ==> vBCMS-Module ==> CMS - Modul ==> PHP Datei des Moduls ändern.
unter:
Code:
if ($this->registry->vbcmsactiveareas['vbcmsarea_content'])
{
folgendes einfügen.
Code:
if($_REQUEST['do'] == 'morenews')
{
$this->registry->vbcmsoptions['cmsmodul_how'] = 20;
}
Um dann in der Mitte nur noch das CMS Modul auzugeben benötigst du ein Plugin auf den Hook
load_vbcms_output_process_start wo du alle Module außer dem CMS-Modul aus dem $this->registry->vbcmsportal Array rausfilterst.
Code:
if($_REQUEST['do'] == 'morenews')
{
foreach($this->registry->vbcmsportal AS $key => $module_row)
{
if($module_row['colum'] == 0 AND $module_row['modulname'] != 'vbcmsmodul_content')
{
unset($this->registry->vbcmsportal[$key]);
}
}
}