Anyway, does someone know where I might find a third party template system thats easy to integrate and install? It also needs to be flexible, and most importantly free. I would appreciate any help!
Installable Template System
Moderator: General Moderators
-
Majoraslayer
- Forum Commoner
- Posts: 64
- Joined: Thu Jun 30, 2005 11:50 am
- Location: In Your Mind...
- Contact:
Installable Template System
I'm getting a headache trying to learn everything in PHP, so I'm going to cut a few corners in my site overhaul. One big thing I was wanting to do is add a template system in which registered users can customize the style of the site to their liking, much like a forum such as phpBB (if anyone hasn't heard of phpBB, I had trouble finding an example
). Anyway, I tried smarty and as with most third-party PHP applications I've tried to install, the installation instructions were badly written and setup didn't go so well.
Anyway, does someone know where I might find a third party template system thats easy to integrate and install? It also needs to be flexible, and most importantly free. I would appreciate any help!
Anyway, does someone know where I might find a third party template system thats easy to integrate and install? It also needs to be flexible, and most importantly free. I would appreciate any help!
Re: Installable Template System
Thats possible using a template system, but thats probably a bit much for what you want.Majoraslayer wrote:I'm getting a headache trying to learn everything in PHP, so I'm going to cut a few corners in my site overhaul. One big thing I was wanting to do is add a template system in which registered users can customize the style of the site to their liking
Really, for a user to change the look of a site, it would be much easier to simply use CSS, and then offer them a javascript style switcher. If you code your site properly with html and CSS, there is no limit to how different the site can look. Take a gander at the possibilities at the INSANELY great CSS Zen Garden.
We're on a phpbb board.Majoraslayer wrote:much like a forum such as phpBB (if anyone hasn't heard of phpBB, I had trouble finding an example)
If you need help with getting smarty setup, ask here or at the smarty forums. Both are EXTREMELY smarty-friendly, and I assure you, will do our best to help you get setup. I visit both forums, and I'm happy to help. Smarty is a great template engine, and I use it in *every* project I can now.Majoraslayer wrote:Anyway, I tried smarty and as with most third-party PHP applications I've tried to install, the installation instructions were badly written and setup didn't go so well.
Thats really a very short list in php.. FastTemplate, Smarty, SmartyLite, and a few others..Majoraslayer wrote: Anyway, does someone know where I might find a third party template system thats easy to integrate and install? It also needs to be flexible, and most importantly free. I would appreciate any help!
Smarty is used on portions of Yahoo - its extremely well designed. Take another stab at it, and ask for help where you get stuck. Thats what the forums are for!
-
Majoraslayer
- Forum Commoner
- Posts: 64
- Joined: Thu Jun 30, 2005 11:50 am
- Location: In Your Mind...
- Contact:
Re: Installable Template System
We're on a phpbb board.Majoraslayer wrote:much like a forum such as phpBB (if anyone hasn't heard of phpBB, I had trouble finding an example)
I know, I was just kidding about that. Noobs can make jokes about themselves, too! Anyway, I appreciate the offered help with Smarty. I will try it again, because it sounds like it has what I need. Not to get off topic, but would it be possible to modify Smarty so that users can choose their own template so that each user can use their own preference?
Re: Installable Template System
Its your topic - take it where you need it.Majoraslayer wrote:Not to get off topic, but would it be possible to modify Smarty so that users can choose their own template so that each user can use their own preference?
yes, you could, but no, you shouldn't. The library (thats what it is!) shouldn't be modified. Treat it as a library that provides functionality, and then expand and expose that functionality in your code.
In other words, you can make a script that offers users that option, USING smarty.