I'm just wondering how to remove the customer need (LeadType) on the opportunity mini-page. The problem is that this customer need field is getting dynamically set with a method on a third-party module. With that being said I can not edit the module and take out the code where it is being set. It is part of the CoreLeadOpportunity package. It is getting set in this code.
			addQueryColumns: function(insertQuery) {
				this.addLookupQueryColumn(insertQuery, {
					columnName: "Account",
					entityColumnName: "QualifiedAccount"
				});
				this.addLookupQueryColumn(insertQuery, {
					columnName: "Contact",
					entityColumnName: "QualifiedContact"
				});
				this.addLookupQueryColumn(insertQuery, {
					columnName: "LeadType",
					entityColumnName: "LeadType"
				});
Any help would be appreciated. Thanks!