Missing Add to Target List

Hello,

It seems that “Add to Target List” is missing from Leads and Contacts search list view. Since advanced searching is limited from “Select” in the Target List, users are unable to add Leads, or Contacts, to a Target List based on parameters such as City, Modified Date, etc.

See attached files for screen shots.

Any suggestions?

Thanks

Seems OK on mine … what version are you running?

Version 7.1.5

Sugar Version 6.5.20 (Build 1001)

try upgrading to 7.1.6 or 7.2.1

I knew I would regret this. Lost the main menu, have to re-built my custom forms, and still no Add to Target List.

Well, everything is back working, but there seems to be no way to add this to the drop down.

Any other suggestions?

Thanks

Fixed: for those suffering the same problem, here you go!

In file include/ListView/ListViewSmarty.php set var $targetList = true; (mine was false)

For some reason, the following code in custom/modules/Leads/LeadsListViewSmarty.php does not change $targetList from false to true.

class LeadsListViewSmarty extends ListViewSmarty {

        function LeadsListViewSmarty(){

                parent::ListViewSmarty();
                $this->targetList = true;

        }

Cheers