- Posts: 20
- Thank you received: 0
Left and Inset not showing
-
arielb
Inactive member -
Topic Author
- Member
-
Less
More
13 years 4 months ago #11776
by arielb
Replied by arielb on topic Re: Left and Inset not showing
I installed version 1.5. It was regular template installation
Please Log in to join the conversation.
-
milos
Support Staff -
- Moderator
-
Less
More
- Posts: 6784
- Thank you received: 720
13 years 4 months ago #11777
by milos
Replied by milos on topic Re: Left and Inset not showing
Ok, edit this part of file /templates/hot_cosmetics/index.php:
and change it to:
Let us know if it works after that.
Code:
<div class="main_bg">
<div class="main_area">
<?php
if($columnLayout=="mlr") {
require(dirname(__FILE__).DS.'/inc/col_main.php');
require(dirname(__FILE__).DS.'/inc/col_left.php');
require(dirname(__FILE__).DS.'/inc/col_right.php');
} else if($columnLayout=="lrm") {
require(dirname(__FILE__).DS.'/inc/col_left.php');
require(dirname(__FILE__).DS.'/inc/col_right.php');
require(dirname(__FILE__).DS.'/inc/col_main.php');
} else {
require(dirname(__FILE__).DS.'/inc/col_left.php');
require(dirname(__FILE__).DS.'/inc/col_main.php');
require(dirname(__FILE__).DS.'/inc/col_right.php');
}
?>
<div class="clr"></div>
</div>
</div>
and change it to:
Code:
<div class="main_bg">
<div class="main_area">
<?php
if($columnLayout=="mlr") {
require(dirname(__FILE__).DS.'inc/col_main.php');
require(dirname(__FILE__).DS.'inc/col_left.php');
require(dirname(__FILE__).DS.'inc/col_right.php');
} else if($columnLayout=="lrm") {
require(dirname(__FILE__).DS.'inc/col_left.php');
require(dirname(__FILE__).DS.'inc/col_right.php');
require(dirname(__FILE__).DS.'inc/col_main.php');
} else {
require(dirname(__FILE__).DS.'inc/col_left.php');
require(dirname(__FILE__).DS.'inc/col_main.php');
require(dirname(__FILE__).DS.'inc/col_right.php');
}
?>
<div class="clr"></div>
</div>
</div>
Let us know if it works after that.
Please Log in to join the conversation.
-
arielb
Inactive member -
Topic Author
- Member
-
Less
More
- Posts: 20
- Thank you received: 0
13 years 4 months ago #11778
by arielb
Replied by arielb on topic Re: Left and Inset not showing
Didn't work:
jazzeando.com.ar/otros/jardin/index.php?...=blog&id=2&Itemid=11
I think the problem is that there's no inc folder. In the Hot Start there's an inc folder, but the regular installation there isn't.
jazzeando.com.ar/otros/jardin/index.php?...=blog&id=2&Itemid=11
I think the problem is that there's no inc folder. In the Hot Start there's an inc folder, but the regular installation there isn't.
Please Log in to join the conversation.
Time to create page: 0.136 seconds