diff --git a/entries/forms.py b/entries/forms.py
index 2ea7818da1bbd89c08df09513dbb94d5c8d420bf..93afe86805a0619f6967fed0902853d474eef81d 100644
--- a/entries/forms.py
+++ b/entries/forms.py
@@ -638,10 +638,11 @@ class ArgumentFormFactory(FormFactory):
             ),
             lambda n, cls: and_or_form_creator(_('Preferencja selekcyjna'), 'add-preference-{}'.format(n), field=cls.make_field(FormFactory.unique_name('preference_type', n)))
         ),
-        (
-            None, None,
-            lambda n, cls: and_or_form_creator(_('Pozycja'), 'add-position-{}'.format(n), data_add='position'),
-        ),
+        # removing until we discuss whether this field is needed & how it should work
+        #(
+        #    None, None,
+        #    lambda n, cls: and_or_form_creator(_('Pozycja'), 'add-position-{}'.format(n), data_add='position'),
+        #),
         (
             'phrase_type',
             lambda: PhraseTypeFilter(help_text=_('Typ frazy, przez którą może być realizowany argument.')),