I am running into 2 problems with themes right now
1- I downloaded the themes from this site that are suppose to work with 0.7.2.3 sadly less then 5 actually worked. did I miss something ?
2- and more importantly I have found a theme I really like but it doesn't work properly. Specifically the link from the news icons try to look for a file called search.php in the PostNuke root dir and since that file doesn't exist it dies. Is that a leftover from previous versions ? if so how can I fix it ?
Any help really appreciated.
Watch
GitHub Core
Show your support for Zikula! Sign up at Github account and watch the Core project!
GitHub Modules
- craigh responded to »Using PageUtil::addVar() to load script code« 03:29 PM
- michiel responded to »password problem« 10:01 AM
- mazdev responded to »Hide "Register new account" and change template to 3 col« 07:50 AM
- mesteele101 created topic »Zikula 1.3.3 - Site Search 1.5.2 - Unable to turn off plug-ins« 07:48 AM
- mesteele101 responded to »ERR (3): E_USER_ERROR: Smarty error: [in pagesvar:pagesitem2en line XXX]…« 25. May
- mazdev responded to »Pages 2.5.0 and updating - Page not found« 25. May
- mesteele101 responded to »Zikula 1.3.3 - Selecting a category in Pages not working« 25. 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
Theme compatibility (or lack thereof)
-
**unknown user**
- Rank: Helper
- Registered: Mar 16, 2002
- Last visit: Oct 21, 2009
- Posts: 676
The Search thing is common, as there used to be a specific search file, but now it's made into a module. If you right-click the "search" link in the main menu and choose to copy link location, you'll get a link like this:
modules.php?op=modload&name=Search&file=index
If you replace the old link with that, it should work, although you'd get the search page, not a list of news stories.
Looking in the default postnuke theme, the search box use this HTML:
Code
<form action="modules.php" method="post">
<input type="hidden" name="name" value="Search" />
<input type="hidden" name="file" value="index" />
<input type="hidden" name="op" value="modload" />
<input type="hidden" name="action" value="search" />
<input type="hidden" name="overview" value="1" />
<input type="hidden" name="active_stories" value="1" />
<input type="hidden" name="bool" value="AND" />
<input type="hidden" name="stories_cat" value="" />
<input type="hidden" name="stories_topics" value="" />
<?php echo _SEARCH ?>
<input class="pn-text" name="q" type="text" value="" />
</form>
As you can see, if you read HTML, it also sets op= "modload", name="search" and file="index". You could try adding one of the values above to the link to refine it, like"&stories_topics=computers" or whatever.
I'd need to research it more myself, I gues...
Also, what's the theme, and where did you get it?
Martin :D
- Moderated by:
- Support
