There is a tut on page two that tells you how to switch that off. It involves editing the XML file.
Quote:
No tracking
Search in XML File:
PHP Code:
<plugin active="1"> <title>save and track</title> <hookname>private_insertpm_process</hookname> <phpcode><![CDATA[$pmdm->set_info('savecopy', 1); $pmdm->set_info('receipt', 1);]]></phpcode> </plugin>
and replace with:
PHP Code:
<plugin active="1"> <title>save and track</title> <hookname>private_insertpm_process</hookname> <phpcode><![CDATA[$pmdm->set_info('savecopy', 1);]]></phpcode> </plugin>
|