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

Ole Vik Regular

Grav Core Team

Grav Forum Moderators

@OleVik · Joined 9 years ago · 313 posts · 2 topics · 106 reputation

Badges

Grav Core Team ✏️ First Post 💬 Conversation Starter ❤️ Well Liked

Recent posts

  • Tiny SEO plugin discontinued? · 6 years ago

    It is unfortunate that the author decided to delete the repository, rather than archive it. An alternative would be the SEO-plugin.

  • Hero Image not displaying for Scholar · 6 years ago

    How are you defining the image in the Page's FrontMatter? Per the Twig-template, it needs to be either image: url: filename.ext Or image: filename.ext Where filename.ext is the full name of the imag

  • Timeline plugin and Quark theme menu · 6 years ago

    As stated, the Timeline-plugin's template is not coupled to any theme, and as such will not render any particular theme's menu or other components by default. However, it doesn't take much to render a

  • Which version of GRAV runs on PHP 7.0.20? · 6 years ago

    For future reference, if installing via Composer for example, Grav will satisfy the version-constraint you have set for the environment. For PHP 7.0.20, this resolves to v1.5.10.

  • Timeline plugin and Quark theme menu · 6 years ago

    Are you expecting it to render or style differently? The timeline_header.html.twig-partial would need to include the necessary styles, as the plugin itself only registers its own styles by default. Yo

  • Really any kind of sites? · 6 years ago

    Yes to all of the above, though not out of the box. Fields, filtering, sorting, and handling many items for an eCommerce-site isn't all that difficult - you'll accomplish all that with Twig or JavaScr

  • Substitute recaptcha in form · 6 years ago

    Your theme would need to override that template referenced, or use a custom template like it, to customize what is sent. I don't think Gantry will affect that, but I don't use Gantry myself.

  • Substitute recaptcha in form · 6 years ago

    Only by customizing the template that sends the email from within your theme, or form:fields:process:body in your FrontMatter. Does the latter still look like "{{ form.value.message }}<br /><

  • Substitute recaptcha in form · 6 years ago

    Here's an example with it inserted into your form: title: "Contact Form" form: fields: name: type: text label: Name validate: required: true message: Please ent

  • Substitute recaptcha in form · 6 years ago

    Yes, see this cookbook entry on a custoom anti-spam field.