View Single Post
  #5 (permalink)  
Old 08-28-2008, 09:11 AM
kyphasic kyphasic is offline
New Pligger
 
Join Date: Aug 2008
Posts: 7
Thanks: 2
Thanked 0 Times in 0 Posts
Help needed

Quote:
Originally Posted by cmstheme View Post
Or another option if the above will not work. Open pligg.tpl and find:
PHP Code:
<link rel="stylesheet" type="text/css" href="{$my_pligg_base}/templates/{$the_template}/style.css" media="screen" />
<
link rel="stylesheet" type="text/css" href="{$my_pligg_base}/templates/{$the_template}/includes/css/articles.css" media="screen" />
<
link rel="stylesheet" type="text/css" href="{$my_pligg_base}/templates/{$the_template}/includes/css/comments.css" media="screen" />
<
link rel="stylesheet" type="text/css" href="{$my_pligg_base}/templates/{$the_template}/includes/css/reset.css" media="screen" />
<
link rel="stylesheet" type="text/css" href="{$my_pligg_base}/templates/{$the_template}/includes/css/typography.css" media="screen" /> 
replace with:
PHP Code:
<link rel="stylesheet" type="text/css" href="http://www.socialwtf.com/templates/{$the_template}/style.css" media="screen" />
<
link rel="stylesheet" type="text/css" href="http://www.socialwtf.com/templates/{$the_template}/includes/css/articles.css" media="screen" />
<
link rel="stylesheet" type="text/css" href="http://www.socialwtf.com/templates/{$the_template}/includes/css/comments.css" media="screen" />
<
link rel="stylesheet" type="text/css" href="http://www.socialwtf.com/templates/{$the_template}/includes/css/reset.css" media="screen" />
<
link rel="stylesheet" type="text/css" href="http://www.socialwtf.com/templates/{$the_template}/includes/css/typography.css" media="screen" /> 
I just hard-coded the complete URL of your site because we don't know the value of your {$my_pligg_base}
Your second idea did work for the homepage and it looks ok but I still cant click on any of the links or log in. Basically I can't even get into the site right now.

Is there a way to change to website back to the default templete of yget without going online to do it. What I mean is, can I change it back within the tpl or php files and basically go back to how it was before I put the new template into action.

I really appreciate your help on this...
Reply With Quote