I installed and am using NetSoft-Blue Theme. In all my other themes I have tried my Admin Message Shows up fine but in this theme I is no place to be found. I checked my admin and the message is there, but it will not show.
Can anyone help with this.
Watch
GitHub Core
Show your support for Zikula! Sign up at Github account and watch the Core project!
GitHub Modules
- frw responded to »Bug in the SMTP mail transfer protocol - Port 25 - Zikula 1.2.9« 22. May
- mdee responded to »Short URL questions« 22. May
- mesteele101 responded to »Problem in Database Connection« 21. May
- Herr.Vorragend responded to »Clip Documentation and Doubt« 19. May
- mazdev responded to »zikula 1.3.3. and IE9« 19. May
- mesteele101 responded to »How to install Zikula for MSSQL ??? - Part II« 19. May
- mesteele101 created topic »File packaging« 16. May
Zikula Blog
- Anatomy of Open Source Projects on Mar 07
- Continuous Review on Mar 01
- Not Invented Here on Feb 24
- How to Contribute Your Code at Github on Jan 13
- 10 Steps to Coding-Nirvana: Tips for Successful Module Writing on Nov 12
- Submitting Bug Report Tickets That Get Results on Aug 17
- Cozi Tricks #1: Syntax Highlighting on Aug 07
Login
Admin Message Problem
-
**unknown user**
- Rank: Helper
- Registered: Mar 16, 2002
- Last visit: Oct 21, 2009
- Posts: 676
The problem is the theme is a little old. It's missing a call for the centerblocks.
In the theme.php file, where it goes
Code
."<td width=\"150\" valign=\"top\">\n";
blocks('left');
echo "</td><td width=\"100%\" align=\"center\" valign=\"top\">\n";
}
/************************************************************/
/* function themefooter() */
/* */
/* Control the footer for your site. You don't need to */
add these lines just before the closing curly brace } and line with asterisks:
Code
if ($GLOBALS['index'] == 1) {
blocks('centre');
}
so it reads
Code
."<td width=\"150\" valign=\"top\">\n";
blocks('left');
echo "</td><td width=\"100%\" align=\"center\" valign=\"top\">\n";
if ($GLOBALS['index'] == 1) {
blocks('centre');
}
}
/************************************************************/
/* function themefooter() */
/* */
/* Control the footer for your site. You don't need to */
Haven't tested it, but that should fix the problem. Your search box probably won't work, either, and there could be a few other similar niggling problems.
Martin :D
- Moderated by:
- Support
