If you are referring to the words "Product Model" found on the table heading at Admin > Catalog > Ultimate Crodss Sell > List All... Change line 29 on
YOUR_ADMIN\includes\languages\extra_definitions\ultimate_cross_sell_definitions.php
http://farm6.static.flickr.com/5004/5360629399_7ed50b556f.jpg
[PHP]define('CATALOG_TEXT_CROSS_SELL_MODEL', 'Product Model');[/PHP]
If however, you are referring to the word "Model" on Admin > Configuration > Ultimate Cross Sell Settings where it is displayed 6 times as in "Cross Sell - Display Model Number?" you'll need to uninstall, make changes to
YOUR_ADMIN\includes\functions\extra_functions\ultimate_cross_sell.php on lines 309 and 324.
http://farm6.static.flickr.com/5244/5360655649_553b686a9b.jpg
[PHP] $db->Execute("INSERT INTO " . TABLE_CONFIGURATION . " (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function)
VALUES ('', '" . $mxs_selected_table . " - Display Model Number?', 'CROSS_SELL" . $num_cross_sell . "_DISPLAY_MODEL', 'true', 'Do you want to display the model number too?<br />Default: true', @t4, $offset+270, now(), now(), NULL, 'zen_cfg_select_option(array(\'true\',\'false\'),')");[/PHP]
[PHP] $db->Execute("INSERT INTO " . TABLE_CONFIGURATION . " (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function)
VALUES ('', '" . $mxs_selected_table . " - Sidebox Display Model Number?', 'CROSS_SELL" . $num_cross_sell . "_SIDEBOX_DISPLAY_MODEL', 'true', 'Do you want to display the model number too?<br />Default: true', @t4, $offset+303, now(), now(), NULL, 'zen_cfg_select_option(array(\'true\',\'false\'),')");[/PHP]
Once done with any changes reinstall. Again, your database should not experience any changes but it is always a good idea to
back up your database prior to any changes.