Author |
Message |
Patcher
New Member


Joined: Jan 03, 2005
Posts: 9
|
Posted:
Wed Mar 01, 2006 3:26 pm |
|
Hi,
First off all great job om the distro package!
Install was a piece off cake.
Iam encountering the problem that my right blocks dont show up with another skin.
Browsed the topics, cant find the solution, could some 1 help?
Sinc, P |
|
|
|
 |
kguske
Site Admin

Joined: Jun 04, 2004
Posts: 6437
|
Posted:
Wed Mar 01, 2006 3:59 pm |
|
Search for an answer on this - and check the readme. I believe there are instructions for resolving this there. |
_________________ I search, therefore I exist...
Only registered users can see links on this board! Get registered or login! |
|
|
 |
Patcher

|
Posted:
Wed Mar 01, 2006 4:01 pm |
|
kguske wrote: | Search for an answer on this - and check the readme. I believe there are instructions for resolving this there. |
Got it thx K, its documentated in the read me idd..  |
|
|
|
 |
kguske

|
Posted:
Wed Mar 01, 2006 5:20 pm |
|
No problem...glad it was an easy one! |
|
|
|
 |
Patcher

|
Posted:
Thu Mar 02, 2006 3:50 pm |
|
kguske wrote: | No problem...glad it was an easy one! |
Cant make head or tails what file to edit.. this was in de read me file :Code:1- If you want right side blocks to appear in third party add-ons change:
In Modules:
index = 1;
to:
define('INDEX_FILE', true);
In Themes:
if ($index == 1) {
to:
if (defined('INDEX_FILE')) {
2- Additional changes for third party add-ons:
if ($mainfile == 1) {
should be changed to:
if (defined('NUKE_FILE')) {
if ($module == 1) {
should be changed to:
if (defined('MODULE_FILE')) {
if ($footer == 1) {
should be changed to:
if (defined('NUKE_FOOTER')) {
if ($header == 1) {
should be changed to:
if (defined('NUKE_HEADER')) {
|
Sorry must be stupid, what files do i edit?
Tried to edit the root modules.php file, but cannot find the varibles. |
|
|
|
 |
Taz
Worker


Joined: Dec 22, 2005
Posts: 158
|
Posted:
Thu Mar 02, 2006 3:53 pm |
|
I am pretty sure you just open the theme.php file for this new theme
Find
if ($index == 1) {
and replace with
if (defined('INDEX_FILE')) {
just backup the theme.php file and if that's not right replace it, but I have done this about three times this week on my site so I am pretty sure that's right. |
|
|
|
 |
FireATST
RavenNuke(tm) Development Team

Joined: Jun 12, 2004
Posts: 654
Location: Ohio
|
Posted:
Thu Mar 02, 2006 4:01 pm |
|
Patcher, I believe you need to go into the module itself and open the index.php file and do the edits there.
Then, I believe, in each theme you have, go to the theme.php in each one and change what is stated to be changed....  |
|
|
 |
 |
Patcher

|
Posted:
Thu Mar 02, 2006 4:02 pm |
|
Thx Taz that did it!
And Thx FireATST for reply
Greetz from Holland.  |
|
|
|
 |
Taz

|
Posted:
Thu Mar 02, 2006 4:05 pm |
|
Gald to help !  |
|
|
|
 |
|