GetSimple Support Forum

Full Version: Admin themes doesn't work?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I tried to make admin theme, but it seems that it doesn't change any colors what so ever.

I use version 3.0 stable, so it's not because of version either.

It's also placed at right directory in 'themes'

I used 'default admin theme' file.

I put my "test file" as attachement, but I don't see what is wrong. Bug maybe?
you were right. it was referencing GSTHEMESPATH which wasnt defined because i never included the /inc/common.php file. This has been fixed for 3.1
ccagle8 Wrote:you were right. it was referencing GSTHEMESPATH which wasnt defined because i never included the /inc/common.php file. This has been fixed for 3.1
Okey. Thanks!
ccagle8 Wrote:you were right. it was referencing GSTHEMESPATH which wasnt defined because i never included the /inc/common.php file. This has been fixed for 3.1

Chris, your black and white admin theme is available in the EXTEND, but as said here already, the changes are not working.

Do you have some tipps for us to get it working with a 3.0 stable version?

Cheers, Connie
Connie Wrote:Do you have some tips for us to get it working with a 3.0 stable version?
The problems are with /admin/template/style.php not working properly. You could try to exchange the whole file with the newest style.php from the development version.

If you want to play it safe and stick to the stable release you can try the following two search and replaces:

Search: (line 15)
Code:
simplexml_load_string($xml, 'SimpleXMLExtended', LIBXML_NOCDATA)
Replace with:
Code:
simplexml_load_string($xml)
Search: (line 19 and 21)
Code:
GSTHEMESPATH.'
Replace with:
Code:
'../../theme/
thanks, I will throw a coin which way I will take ;=)
Thanks guys for clearing this out here, but please someone mention it also on the extend page. I spent half a day trying to sort it out.
Ampersand Wrote:Thanks guys for clearing this out here, but please someone mention it also on the extend page. I spent half a day trying to sort it out.

I did update it, sorry for so late info there
thanks for the tips!