Go Back   Pligg CMS Forum > Pligg Development > Pligg Templates > Template Support

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 08-28-2008, 08:18 AM
New Pligger
 
Join Date: Aug 2008
Posts: 7
Thanks: 2
Thanked 0 Times in 0 Posts
Template upload problem...Please HELP me

I have installed a new template (lemon twist) to my website and now the site does not function properly and I am not sure why.

The website was working fine with the yget default template but I uploaded lemon twist and when I went to the template management it did say that the template was compatible and so I uploaded it. Now I can even get into the website. When it does show up the site looks like basic HTML and none of the links work at all.

Do I have to wait until this is uploaded properly onto my server or what? The website is Social WTF / Published News

I really need help and I am new to this pligg thing, someone please help.
Reply With Quote
  #2 (permalink)  
Old 08-28-2008, 08:34 AM
cmstheme's Avatar
Pligg Donor
Pligg Version: 9.9
Pligg Template: Squaretle
 
Join Date: Jan 2007
Posts: 248
Thanks: 28
Thanked 40 Times in 30 Posts
The problem is you did not point the correct path of the stylesheets (CSS) - and this is due to the incorrect value of {$my_pligg_base}

Try this:
  1. Go to Admin > Configure Social WTF > Location Installed
  2. Set the value of:
    Base URL: http://www.socialwtf.com
    Pligg Base Folder: Must be blank or you must see the value 'Click To Edit'
__________________
Join our Pligg Template Club now while prices are still cheap!
Reply With Quote
The Following User Says Thank You to cmstheme For This Useful Post:
  #3 (permalink)  
Old 08-28-2008, 08:38 AM
cmstheme's Avatar
Pligg Donor
Pligg Version: 9.9
Pligg Template: Squaretle
 
Join Date: Jan 2007
Posts: 248
Thanks: 28
Thanked 40 Times in 30 Posts
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}
__________________
Join our Pligg Template Club now while prices are still cheap!
Reply With Quote
The Following User Says Thank You to cmstheme For This Useful Post:
  #4 (permalink)  
Old 08-28-2008, 08:58 AM
New Pligger
 
Join Date: Aug 2008
Posts: 7
Thanks: 2
Thanked 0 Times in 0 Posts
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
  #5 (permalink)  
Old 08-28-2008, 09:11 AM
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
Reply

Thread Tools
Display Modes
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Similar Threads
Thread Thread Starter Forum Replies Last Post
MacBlue Free Pligg Template by Yankidank Yankidank Pligg Templates 13 11-10-2008 05:37 PM
Template upload problem...Please HELP me kyphasic General Help 0 08-28-2008 08:26 AM
template problem after upgrade to 9.9.5 xaiel Installation and Upgrade Help 1 08-12-2008 04:24 PM
Problem with template in IE7 xsillence General Help 2 08-29-2007 11:30 PM
problem of change template tozt Installation and Upgrade Help 1 06-02-2007 12:42 PM


Search Engine Friendly URLs by vBSEO 3.2.0