Hi,
The problem with the confidential information function of the forum is that if there is a bug in the forum in the futur (we're using Kunena), it could potentially display the information inside the confidential tags of all the posts to anyone. That's why, when we ask someone to provide credentials, we usually ask them to do so via our contact form, even it's not stated in any "forum rules" area as we don't have such area.
But anyways, we don't need your backend credentials to answer you.
The code handling the "order" column is indeed in the file "listing" of the view "product". You can edit this file in the menu Display>Views for your backend template.
However, you probably won't find the code there, because when I look at your screenshot, it looks like the column has been removed.
In the default view file, this column is handled by the code:
<th class="title titleorder"><?php
if($this->doOrdering) {
if ($this->order->ordering)
echo JHTML::_('grid.order', $this->rows);
echo JHTML::_('grid.sort', JText::_( 'HIKA_ORDER' ), 'a.ordering',$this->pageInfo->filter->order->dir, $this->pageInfo->filter->order->value );
} else {
?><a href="#" title="<?php echo JText::_('CHANGE_SUB_ELEMENT_FILTER_TO_REORDER_ELEMENTS'); ?>"><?php echo JText::_( 'HIKA_ORDER' ); ?></a><?php
}
?></th>
and the code:
<td class="order"><?php
if($this->doOrdering){
if($this->manage){ ?>
<span><?php echo $this->pagination->orderUpIcon( $i, $this->order->reverse XOR ( $row->ordering >= @$this->rows[$i-1]->ordering ), $this->order->orderUp, 'Move Up',$this->order->ordering ); ?></span>
<span><?php echo $this->pagination->orderDownIcon( $i, $a, $this->order->reverse XOR ( $row->ordering <= @$this->rows[$i+1]->ordering ), $this->order->orderDown, 'Move Down' ,$this->order->ordering); ?></span>
<input type="text" name="order[]" size="5" <?php if(!$this->order->ordering) echo 'disabled="disabled"'?> value="<?php echo $row->ordering; ?>" class="text_area" style="text-align: center" />
<?php }else{ echo $row->ordering; }
} else {
?><a href="#" title="<?php echo JText::_('CHANGE_SUB_ELEMENT_FILTER_TO_REORDER_ELEMENTS'); ?>"><img src="<?php echo HIKASHOP_IMAGES; ?>delete2.png" alt="<?php echo JText::_('HIKA_DELETE'); ?>"></a><?php
}
?></td>
You can find the original code of your version of HikaShop for that file in administrator/components/com_hikashop/views/product/tmpl/listing.php
Note however that even if you add back that code, or remove your view override to use your original version of that file, you still won't be able to edit the order of the products in the "all products" category because it doesn't normally make much sense to do that. That's because the products are probably not linked to that category but to sub categories of that category, and thus the ordering of the products is configurable in each category where you have the products directly linked. That's because on the frontend, you normally display a listing of the categories, and when you click on a category, you see the products of that category. And thus, the ordering of the products are for that category and not the main category. If we allowed you to change the ordering of the products among several sub categories, you would end up with several products with the order "1" (one for each sub category), several with the order "2", etc and that would be more confusing than anything.
So if you want to change the ordering of the products, you need to go into each individual category.