Jump to content
MakeWebGames

REDUX user change theme..


Uridium

Recommended Posts

On the REDUX its possible for admins to change game theme However users cant so this Mod will let you do that..

Open up Global/header.php right at bottom find

 

You're unable to view this code.

Viewing code within this forum requires registration, you can register here for free.

 

Overwrite with this one

 

You're unable to view this code.

Viewing code within this forum requires registration, you can register here for free.

 

Now open up Mods/preferences.php

add this is to the cases

case 'template': template(); break;

Same file add this Link to the rest of the links

<a href='".gen_url('preferences',true)."&action=template'>Change Theme template</a><br />

scroll down page to the last >> $h->endpage();

and just below it add

 

You're unable to view this code.

Viewing code within this forum requires registration, you can register here for free.

 

now goto your templates folder with the named folders inside and edit each template.php

overwriting

 

You're unable to view this code.

Viewing code within this forum requires registration, you can register here for free.

 

Updating with this one

 

You're unable to view this code.

Viewing code within this forum requires registration, you can register here for free.

 

add a new field to the users table called

game_template VARCHAR(255) NOT NULL default = "Default";

Now your users can enjoy all your themes.....

Link to comment
Share on other sites

if your like me and hate Underlined links the open up the css from your template

and change

a:visited,a:active,a:hover,a:link

{

color: #000000;

text-decoration: underline;

}

to

a:visited,a:active,a:hover,a:link

{

color: #000000;

text-decoration: none;

}

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...