Pere Picornell

Results 14 comments of Pere Picornell

Thanks, after updating packages it just started crashing, this fix worked for me. If that's fixed in a future release I will appreciate a lot if someone can let us...

I'm using the official wagtail approach to i18n, and for the menus to work I followed these steps: https://wagtailmenus.readthedocs.io/en/stable/advanced_topics/custom_menu_classes.html#replacing-both-the-mainmenu-and-mainmenuitem-models And for the new classes I put: ```python # I don't...

That's a very good point, I didn't verify it but saving a menu in admin will override the pages to the one of the language you are using. I agree...

Hi! I'm sorry I don't fully understand the issue, but it's working like a charm for me. If it helps, I'm only using the locale codes so far, so the...

Hi again! [The trick](https://github.com/rkhleics/wagtailmenus/issues/242?_pjax=%23js-repo-pjax-container#issuecomment-769194066) of extending AbstactMainMenuItem to change its self.link_page to self.link_page.localized introduces a bug that prevents menu items with subpages to be displayed. Say you save a menu...

Thanks @noparamos ! Damn, I put this line just to jump to the reference easily in PyCharm and I forgot to remove it before copying :sweat_smile: fixed!

@churcht, @nutjob4life if you find a solution please let us know, I'm facing exactly the same issue when applying the workaround, whern upgraded to Django 4.1.1 and Wagtail 4.0.1. Many...

Hi George, I believe I'm trying to do the same as you. Would yo share the version you made? Thank you!

Just stumbled upon the same... do you remember what was the solution?

Thanks a lot! But it didn't work. What worked was extending also TaggedManager in my custom manager, from this: ```python class CCUserManager(UserManager): ``` to this: ```python from tagulous.models import TaggedManager...