Questions tagged [wagtail-pageurl]
15 questions
2
votes
1 answer
How to create an invisible dummy page in Wagtail?
How can I create an invisible dummy page in Wagtail?
I need a "virtual" page object within Wagtail to build a menu for non Wagtail based pages and also external resources. (See my entry post here)
class MenuDummyPage(Page):
menu_description …

Philipp S.
- 827
- 17
- 41
2
votes
0 answers
How can I use Django's translation strings with Wagtailtrans (Add-on for supporting multi language Wagtail sites)
So I have a website which is using the Wagtailtrans extension for Wagtail. I basically enables multi language by duplicating the page tree. So the url gets fixed with the language-code at the start.
I can translate all my content which I define…

Raf Rasenberg
- 534
- 2
- 14
- 27
1
vote
2 answers
How do I use Wagtail App Pages to create dynamic pages from django model?
I have a django model of data for several locations that I need to generate pages from in wagtail. Like a blog, I need a listing page and detail pages.
I followed this documentation:…

JSum
- 597
- 9
- 20
1
vote
2 answers
Wagtail RichTextBlock extend to pick color
I am trying to implement a color-chooser option in wagtail RichTextBlock so that I can select any color for my selected text.
This is my wagtail_hooks.py file:
@hooks.register("register_rich_text_features")
def register_colortext_feature(features):
…
user12551055
1
vote
0 answers
Wagtail Page Reverse Error when trying to edit a page
I'm getting the following error:
Reverse for 'wagtail_serve' not found. 'wagtail_serve' is not a valid view function or pattern name.
This is a new install and I'm trying to edit the default landing page. I've never had this error…

Dave Merwin
- 1,382
- 2
- 22
- 44
1
vote
1 answer
Wagtail PageQuerySet Querying
I have an NewsIndexPage and a NewsPage , on the Wagtail Admin using NewsIndexPage i have created a tree node where i have
NewsIndexPage-->Corporate(this is NewsIndexPage) and i have Travel (NewsInndexPage)
like this
Corporate-->Travel--> News…

danielmwai
- 305
- 1
- 6
- 24
1
vote
1 answer
wagtail breadcrumb with multi-language support
I'm trying to set up a breadcrumb section in wagtail. Fortunately, there is a great example provided by Bake Demo which is simply a template tag which returns the list of ancestors of the current…

kaveh raife
- 83
- 7
0
votes
2 answers
Get page URL for scheduled publishing
My editors want to know the end page url for publishing in social media.
Is there any way to get the page URL as when it will be published before actually publishing it (scheduled publishing)?

Vlax
- 1,447
- 1
- 18
- 24
0
votes
1 answer
General approach to making a Wagtail site based on an existing database
Please offer guidance in setting up a Wagtail site from an existing, fairly large database.
At its core, the site will be very conventional, consisting of two basic page types: an 'index' page type that lists multiple items in the database, and a…

Joan Eliot
- 267
- 1
- 8
0
votes
2 answers
Wagtail internal link urls arent working properly
in my rich body text fields, when an internal page is used for a link, the url that gets attached to the a tag is "https//example.com/example", ie it's missing the colon and the link doesnt work. I get the error "https's server ip address could not…

b00n.
- 35
- 1
- 4
0
votes
1 answer
Getting the page url within a block in Wagtail
Using Wagtail 2.9, I am trying to create a block that allows to share its text content to Twitter. The block itself is straightforward:
class QuotableShare(StructBlock):
text = TextBlock(required=True)
class Meta:
icon =…

Aquiles Carattino
- 910
- 1
- 10
- 23
0
votes
2 answers
Create custom url wagtail
I have a site that I've structured like so:
Top Page: Animals
Subpage: Cat
Subpage: Dog
Top Page: Cat
Subpage: Food
Top Page: Dog
Subpage: Food
That way, a user can go to site/animals or site/cat. Animals is high-level info, Cat and Dog are more…

JustBlossom
- 1,259
- 3
- 24
- 53
0
votes
2 answers
Does Wagtail Cms support Google login and user login add session to
Is there is any way to add user login/google login and session in wagtail cms?
tried adding projects during. how to implement security for wagtail.

Nithish Albin
- 23
- 1
- 5
0
votes
1 answer
Get absolute or relative url of wagtail page
I have to following code snippet which should return a correct url (relative or absolute)
class LinkFields(models.Model):
link_external = models.URLField("External link", blank=True)
link_page = models.ForeignKey('wagtailcore.Page',…

Philipp S.
- 827
- 17
- 41
0
votes
1 answer
What is the difference between slugurl and pageurl in wagtil
I have two major query related to slugurl and pageurl:
What is the exact difference between slugurl and pageurl?
Why slugurl returning None ?

Prakash Kumar
- 2,554
- 2
- 18
- 28