Closed DBonbon closed 2 years ago
Can you try version 1.2.1?
@DBonbon - It'll be the link_page
field in the orderable as per issue #573 fixed by v 1.2.1
You can also use
override_translatable_fields = [
SynchronizedField("link_page", overridable=False),
]
to make the link_page
non-translatable (you'd reference it by something like link_page.localized
in your code to get the translated page).
Will close based on @enzedonline's confirmation
Thanks for getting back. Enzo's suggestion worked for me! (I actually read his 'clusterable post' before, though as he suggested it might be resolved shortly, I didn't apply it). If that is of interest for you.. any new migrations forced me to reset the DB and the virtualenv (I did try --Fake and deleted pyc). As upon clicking the menu snippet admin showed an error:"column cms_menu.translation_key does not exist" in the file.../.virtualenvs/bup/lib/python3.9/site-packages/django/db/backends/utils.py, line 89, in _execute
Working with wagtail-localize 1.2, wagtail 3, I try to apply a menu snippets. When I try to translate the menu (i.e. after migrations and creating the English menu), I get the following
error:AttributeError at /admin/snippets/cms/menu/edit/8/ 'NoneType' object has no attribute 'get_form_options'
Reading the previous issues, it seems that InlinePanal is still an open issue...Though I'm not sure. Can you kindly advise if currently this is possible? If yes, what am I doing wrong?my code is: