wagtail-personalisation
wagtail-personalisation copied to clipboard
Rule-based personalisation for Wagtail CMS
This PR builds on https://github.com/wagtail/wagtail-personalisation/pull/239 to add support for Wagtail v3+ It replaces https://github.com/wagtail/wagtail-personalisation/pull/236
Hello, I have submitted a PR https://github.com/wagtail/wagtail-personalisation/pull/240 for Wagtail 3.0 support for this package. Please can it be reviewed by someone. Thank you
The wagtail userbar that renders on pages is very handy for jumping to edit views. But with all the personalization segments we’ve added it becomes very tall. We could override...
This PR fixes issues when installing with more recent versions of Wagtail and Django. My plan is to make the package work with Wagtail 3.0+ The v3 work is now...
Am just moving a Wagtail project to 2.11.x from 2.10.x and hit this after upgrading: ``` File "/REDACTED/lib/python3.6/site-packages/wagtail_personalisation/wagtail_hooks.py", line 14, in from wagtail.admin.views.pages import get_valid_next_url_from_request ImportError: cannot import name 'get_valid_next_url_from_request'...
I'm still digging into understanding the source code overall, and I've been wondering how possible it would be to add a personalised element to non-Streamfields? Is there a smart way...
It's possible, especially for personalized stream blocks, that a user may be wanting to preview a page where more than one segment id would apply. But from my testing, it...
hi there, request = context['request'] TypeError: 'NoneType' object is not subscriptable above is the error while visitors browsing the page that uses PersonalisedStructBlock searched everywhere couldn't find the solution..! I...
I found a workaround solution, so hopefully this can help other people that are trying to make a logged-out segment (by not checking the logged-in rule. ### Reproduce steps: 1....
https://github.com/wagtail/wagtail-personalisation/blob/a81c5b35604ec6bfdab7a36474f9f4687a14f2e7/src/wagtail_personalisation/models.py#L273 Wagtail page model has `exclude_fields_in_copy`, but when personalisation create varient page, it does'n use this. We use hit count as GenericRelation model, This through type error. Our team use...