This is a forum to suggest new features for mojoPortal.
best thanks.
I did this because they don't fit the normal module space. that newsticker on the top for example is to extend the whole page length under menu, it's not to sit in any of the three columns.
you could add up to 2 additional content regions then you could put the 2 extra sections wherever you want in layout.master and use one of them for your news
Hope that helps,
Joe
if (Page is NonCmsBasePage) return;
did the work.
I must remember to inherit from this class instead of mojobasepage in my custom admin and edit pages.
unfortunately I needed more than 4 extra content panes for modules, those 2 were not enough.
thankyou.
oh unfortunately BlogView inherits from mojobasepage, not NonCmsBasePage, also BlogEdit.
It is safer to use if(!(Page is CmsPage)) { return;} for this very reason that maybe not all non cms pages inherit from NonCmsBasePage.
oh! yes that's right.