How can I never track path information?

We’ve got an Angular single page application and just want to track (specific) user actions, not content. The path of the URL and the title have to be empty (or a fixed value), since those are details (like http://www.example.com/secret_user/special_information) we don’t want to track ever.

If we add
_paq.push([‘setCustomUrl’,‘http://www.foobar.com’]);
_paq.push([‘setDocumentTitle’, ‘foobar’]);
before
_paq.push([‘trackPageView’]);

then these changes don’t apply to all tracked events. How do we remove this information properly?