For starters lets delete the options you don't want:
in the mod you downloaded find the following file:
\includes\modules\YOUR_TEMPLATE_NAME\product_listing_alpha_sorter.php
In that file find the lines:
$letters_list[] = array('id' => '1', 'text' => 'Most Popular');
$letters_list[] = array('id' => '2', 'text' => 'Price: Low to High');
$letters_list[] = array('id' => '3', 'text' => 'Price: High to Low');
$letters_list[] = array('id' => '4', 'text' => 'Title');
$letters_list[] = array('id' => '5', 'text' => 'Manufacturer');
$letters_list[] = array('id' => '6', 'text' => 'Newest');
$letters_list[] = array('id' => '7', 'text' => 'Oldest');
Rename
$letters_list[] = array('id' => '4', 'text' => 'Title');
to
$letters_list[] = array('id' => '4', 'text' => 'Products Name');
&
Delete
$letters_list[] = array('id' => '1', 'text' => 'Most Popular');
$letters_list[] = array('id' => '5', 'text' => 'Manufacturer');
$letters_list[] = array('id' => '6', 'text' => 'Newest');
$letters_list[] = array('id' => '7', 'text' => 'Oldest');
Part 1