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

Muut Archive Legend

@Muut · Joined 9 years ago · 18337 posts · 3878 topics · 137 reputation

Badges

✏️ First Post 💬 Conversation Starter ❤️ Well Liked

Recent posts

  • Email plugin and contact form, reply-to (reply_to) should be visitor · 9 years ago

    The setup would be something like this -``` reply_to: '{{ form.value.email }}' However that would mean the user would email themselves if they replied to the email. If you wanted the user to receive

  • Email plugin and contact form, reply-to (reply_to) should be visitor · 9 years ago

    We're using the Grav email plugin on our site but the contact form is not placing the user's email address as the reply-to in the email. How can we configure it so that the person that filled out the

  • Blueprint function call · 9 years ago

    Thanks so much for your answer. In the end I found the problem was the fact that the function returning the data options was not static.

  • Blueprint function call · 9 years ago

    If I remember correctly, Grav now uses @data-options instead of data-options@, but I think both still works. Also, maybe you can try to wrap it inside single quotation mark like this: '@data-options':

  • Blueprint function call · 9 years ago

    Hi, I have a problem with inserting options into field in plugin blueprint like it is suggested in Documentation My field definition looks like this: bucket: type: select l

  • Creating a Page in the Plugin · 9 years ago

    @bleutzinn: I actually got it to work earlier this morning. I chose to do it this way since both Login and Simple Search operate using this method. --- php if (!$page) { // Only add page if it hasn't

  • Creating a Page in the Plugin · 9 years ago

    While realising I'm on thin ice here, I doubt this will work. Why don't you insert the pastebin data as page content using the Page Inject Plugin ?

  • Creating a Page in the Plugin · 9 years ago

    When I dump the $page variable, it does show the title and content found in __DIR__ . pages/paste.md. So it's just not displaying properly for some reason.

  • Creating a Page in the Plugin · 9 years ago

    I'm trying to write a pastebin plugin for Grav. My ideal structure is as follows: All paste data is stored under data/pastebin/*.json. Easy enough. The pastebin is located at /pastebin. Going to this

  • Plugin: Login · 9 years ago

    Messages is an object set on the Grav object, and then fetch is a method to get the messages from the object if they exist.