Skip to content
Grav 2.0 is officially stable. Read the announcement →

Community guidelines

Please keep discussions civil and on-topic. Repeated violations may lead to a temporary ban.

Paul Massendari Regular

Grav Forum Moderators

@paul · Joined 9 years ago · 143 posts · 0 topics · 53 reputation

Badges

ModSquad Team Member ✏️ First Post ❤️ Well Liked

Recent posts

  • Questions of a beginner · 8 years ago

    My “Listing page” is not working. Is that on another page? because on your website, it looks like to work. If it is for an other page, you can set your collection in your listing page, by adding some

  • Page Blueprint Issues | Fields/Tabs not showing up · 8 years ago

    You just had an extra fields: This shoud work: title: Disclosures '@extends': type: default context: blueprints://pages form: fields: tabs: type: tabs active: 1 fields

  • Social Share Duplicated Web Address · 8 years ago

    Where does this {{ page_url }} comes from? Grav variable is usually {{ page.url }}. Maybe you could try switching to this variable? Edit: When building an url, you might also want to use sometime the

  • Issues with eMail processing on modular forms · 8 years ago

    can you post your form definition? also, make sure everything is correct with your email setting by typing this command: bin/plugin email test-email -t [email protected]

  • Questions of a beginner · 8 years ago

    Hi, 1: If you want to display a submenu, you have to go in your theme settings, and enable dropdown: true 2: You can change this setting in the pagination plugin, from admin, go to Plugins -> click

  • Social media sites refuse to scrape any metadata · 8 years ago

    Hi, I just took a quick look, but it seems like your website lacks a proper <html> tag. It has one, but it is wrapped inside if, and is only displayed on IE8. Fixing this could help you troubles

  • Page Blueprint Issues | Fields/Tabs not showing up · 8 years ago

    I was about to replyu too, but looks like @apotropaic got it right, except for the line 4 that should be plural iirc. So: form: fields: tabs: type: tabs active: 1 fields:

  • Displaying All Taxonomies that are set · 8 years ago

    Does this produce the output you want ? <ul> {% set taxlist = taxonomylist.get() %} {% for tax,value in taxlist %} {% if tax is not empty %} <li>

  • How to get an array / list on my front-page · 8 years ago

    You mean you want to pass the value to the order?

  • How to get an array / list on my front-page · 8 years ago

    Here is what I would do: In your blueprint: header.size_available: type: selectize label: size available default: 116 Then in your template: <select> {% for size in page.header.size_availa