Hi jtadesig,
JA Content Popup only supports joomla article at this moment. With k2, I will pass this to developer team as a consider for improvement. You can check the status here :
http://pm.joomlart.com/browse/JAMODPOPUP-23
<blockquote>Anyqay, the items are sorted by order of creation it seems. How can I make the items sorted alphabetically?</blockquote>
Open file “modules/mod_jacontentpopup/helpers/adapter/content.php” find code :
[PHP]
if ($params->get(‘ordering’, ‘created’) == “ordering”) {
$model->setState(‘list.ordering’, ‘a.ordering’);
$model->setState(‘list.direction’, $params->get(‘sort_order’, ‘DESC’));
} else if ($params->get(‘ordering’, ‘created’) == “rand”) {
$model->setState(‘list.ordering’, ‘RAND()’);
} else {
$model->setState(‘list.ordering’, $params->get(‘ordering’, ‘created’));
$model->setState(‘list.direction’, $params->get(‘sort_order’, ‘DESC’));
}
[/PHP]
and replace with :
[PHP]
$model->setState(‘list.ordering’,’a.title’);
$model->setState(‘list.direction’, ‘ASC’);
[/PHP]
Regards