Quote:
Originally posted by 350Chevy
alkatraz,
I would imagine you would just change this
Code:
// Custom Boxes
$custom1='';
$custom2='';
if ($showcustom1) {
$getbgrow=getrowcolor();
eval("\$custom1 .= \"".gettemplate('index_custom1')."\";");
}
if ($showcustom2) {
$getbgrow=getrowcolor();
eval("\$custom2 .= \"".gettemplate('index_custom2')."\";");
}
to something like this...
Code:
// Custom Boxes
$custom1='';
$custom2='';
$custom3='';
$custom4='';
$custom5='';
if ($showcustom1) {
$getbgrow=getrowcolor();
eval("\$custom1 .= \"".gettemplate('index_custom1')."\";");
}
if ($showcustom2) {
$getbgrow=getrowcolor();
eval("\$custom2 .= \"".gettemplate('index_custom2')."\";");
}
if ($showcustom3) {
$getbgrow=getrowcolor();
eval("\$custom3 .= \"".gettemplate('index_custom3')."\";");
}
if ($showcustom4) {
$getbgrow=getrowcolor();
eval("\$custom4 .= \"".gettemplate('index_custom4')."\";");
}
if ($showcustom5) {
$getbgrow=getrowcolor();
eval("\$custom5 .= \"".gettemplate('index_custom5')."\";");
}
And create templates for each.
Then edit the 'index' template located under mYvBindex Templates and add $custom3, $custom4, $custom5 where ever you want the templates to be displayed.
|
Did that exact thing and the box doesnt show up ? i made the template .. ??