I think I've found the file that allows for entries in the original, and special price fields, and the special offer.
Is this the right file? and the code that covers the subject?
<div id="addProductAreaCategorySelect">
<select id="categoryid" name="categoryid" class="addProductAreaInputSelect" >
<option value="category">please select category</option>
<?php if (( isset($param['categoryid']) || isset($formValue['categoryid']) ) && ( @$param['categoryid'] > 0 || @$formValue['categoryid'] > 0 ) ) : ?>
<?php echo @$param['categoryid'] > 0 ? generateCategorySelectList(TRUE, @$param['categoryid']) : generateCategorySelectList(TRUE, $formValue['categoryid']); ?>
<?php endif; ?>
</select>
</div>
<?php if ($type == 'special') : ?>
<label for="originalprice" class="addProductAreaInputLabel">
Original price
<span class="addProductInLabelSpan">(only number, without dollor sign, eg. 113.5)</span></label>
<input type="text" name="originalprice" value="<?php echo my_set_value('originalprice'); ?>" class="addProductAreaInputText"
onfocus="this.className='addProductAreaInputTextFocus'" onblur="this.className='addProductAreaInputText'" />
<?php endif; ?>
<label for="nowprice" class="addProductAreaInputLabel">
<?php if ($type == 'special') : ?>
Special price
<?php else: ?>
List price
<?php endif; ?>
</label>
<input type="text" name="nowprice" value="<?php echo my_set_value('nowprice'); ?>" class="addProductAreaInputText"
onfocus="this.className='addProductAreaInputTextFocus'" onblur="this.className='addProductAreaInputText'" />
<?php if ($type == 'special') : ?>
<label for="specialoffer" class="addProductAreaInputLabel">Special offer <span class="addProductInLabelSpan">(eg. buy 2 get 1 free, get 25% off all items.)</span></label>
<input type="text" name="specialoffer" value="<?php echo my_set_value('specialoffer'); ?>" class="addProductAreaInputText"
onfocus="this.className='addProductAreaInputTextFocus'" onblur="this.className='addProductAreaInputText'" />
<label for="starttime" class="addProductAreaInputLabel">Start time</label>
<input type="text" id="starttime" name="starttime" value="<?php echo date("Y-m-d", strtotime(my_set_value('starttime'))); ?>" class="addProductAreaInputText"
onfocus="this.className='addProductAreaInputTextFocus'" onblur="this.className='addProductAreaInputText'" />
<label for="endtime" class="addProductAreaInputLabel">End time</label>
<input type="text" id="endtime" name="endtime" value="<?php echo date("Y-m-d", strtotime(my_set_value('endtime'))); ?>" class="addProductAreaInputText"
onfocus="this.className='addProductAreaInputTextFocus'" onblur="this.className='addProductAreaInputText'" />
<?php endif; ?>
<!--
<label class="addProductAreaInputLabel">Publish now <span class="addProductInLabelSpan">(If select no, this item will only dispaly in your "My <?php echo $type; ?>".)</span></label>
<div id="publishradio">
<label for="publish1" class="addProductAreaRadioLabel">Yes</label><input type="radio" id="publish1" name="publish" value="1" <?php echo my_set_radio('publish',1, TRUE); ?> />
<label for="publish2" class="addProductAreaRadioLabel">No</label><input type="radio" id="publish2" name="publish" value="2" <?php echo my_set_radio('publish',2); ?> />
</div>
-->
</div>
<div>
<button id="updateProductSubmitButton" type="button">Save</button>
</div>
</div>
<?php echo form_close(); ?>
</div>
<?php
$this->load->view('common/userpanel_right_normal_end');
$this->load->view('common/content_normal_end');
$this->load->view('common/footer_normal');
?>