At line 99 of file templates/squick/html/com_sellacious/products/default.php
I found this code:
-----
<?php
$order = $this->state->get('list.custom_ordering');
$sortOptions = array(
'order_max' => JText::_('COM_SELLACIOUS_PRODUCTS_ORDERING_ORDER_COUNT'),
'rating_max' => JText::_('COM_SELLACIOUS_PRODUCTS_ORDERING_RATING'),
'price_min' => JText::_('COM_SELLACIOUS_PRODUCTS_ORDERING_PRICE_ASC'),
'price_max' => JText::_('COM_SELLACIOUS_PRODUCTS_ORDERING_PRICE_DESC'),
); ?>
<div class="sortingbar">
<label for="custom_ordering"><?php echo JText::_('COM_SELLACIOUS_SORT_BY') ?></label>
<?php echo JHtml::_('select.genericlist', $sortOptions, 'custom_ordering', 'onchange="Joomla.submitform();"', 'value', 'text', $order) ?>
</div>
-----
I am able to change the text in this area but I also noticed that it doesn't seem to sort anything. Nothing gets sorted regardless of the choices made. I tried with the code as above and with the changed text, neither changed the sorting. Perhaps where I have the price in my admin side is in the wrong place for the sorting by price? I have the price in Cost Price and Calculated Price. Perhaps the price needs to be in List Price or Fixed Price in order for the price sorting to function? For the time being I have simply removed the above code to remove the sorter completely from the site but I 'd like to know which area I need to have the price (if any) in order for the price sorter to function.
Thanks very much!