Quote:
Originally Posted by Vtec44
I did it on mine and it worked. It's basically switching the value for the drop down box in the XML prior to importing it to your forum. If it's not sticking, then you either didn't save the file, import the wrong file, or didn't set it to "Allow Overwrite" the existing product.
|
Thanks for help me ...
I thinks it's not enough to change the value only it's working after i also change the below values & change the place of Default Type...
1.
Code:
<select name="ttype" tabindex="1">
<option value="1">Postbit Legacy</option>
<option value="2">Postbit Article</option>
<option value="3">Postbit Flipped</option>
<option value="4">Postbit Normal</option>
</select>
2.
Code:
case 1:
$this->templatename = 'postbit_legacy';
break;
case 2:
$this->templatename = 'postbit_articles';
break;
case 3:
$this->templatename = 'postbit_flipped';
break;
case 4:
$this->templatename = 'postbit';
break;
default:
$this->templatename = 'postbit';
break;