I tried adding the following to index.php:
Code: Select all
if ( !( preg_match(PAT_PERMALINK_CATEGORIES, $uri)
|| (isset($serendipity['POST']['isMultiCat']) && is_array($serendipity['POST']['multiCat'])))
) {
$serendipity['POST']['multiCat'] = array(1);
$serendipity['POST']['isMultiCat'] = true;
}I then restored index.php and created an event plugin : default_category with a hook to frontend_configure with this code:
Code: Select all
if (! preg_match(PAT_PERMALINK_CATEGORIES, $_SERVER['REQUEST_URI'])) {
$serendipity['POST']['multiCat'] = array(1);
$serendipity['POST']['isMultiCat'] = true;
}
Any ideas? I've searched this forum and have been fooling with it for hours. Hopefully is just something simple?
Thanks