- Thank you received: 0
Random Styles
-
guest
-
Topic Author
- New Member
-
Less
More
13 years 5 months ago #19292
by guest
Random Styles was created by guest
I love the templates I have no complaint at all. My question is simple: How can I get the 'styles' of the templates to load randomly each time the site is loaded. Is there a way to do that or can a module be created to load the included styles on a random basis when the page is loaded? I firmly believe that this feature would be highly useful and warmly welcomed.
Please reply to: ravbrat@hotmail.com
Thank You,
Please reply to: ravbrat@hotmail.com
Thank You,
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Offline
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 5 months ago #19293
by ivan.milic
Replied by ivan.milic on topic Re: Random Styles
in index.php of template , before this lines:
put:
$templateStyle = rand ( 1 , 5 );
note that this would be case if there are 5 styles , if less or more just change 5 to number of styles template supports.
Code:
...
if($templateStyle) {
require(YOURBASEPATH."/styles/style".$templateStyle.".php");
....
put:
$templateStyle = rand ( 1 , 5 );
note that this would be case if there are 5 styles , if less or more just change 5 to number of styles template supports.
Please Log in to join the conversation.
Time to create page: 0.305 seconds