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.

Pedro M Regular

@pmoreno · Joined 6 years ago · 412 posts · 108 topics · 102 reputation

Badges

✏️ First Post 💬 Conversation Starter ❤️ Well Liked

Recent posts

  • .JS File into our Homepage - doesnt work · 2 years ago

    We'll try to fix your problem, although the answers you've provided in the post are not very clear. 1 Copy your snowflakes.js file to the user/themes/quark/js folder. In the /user/themes/quark/templa

  • .JS File into our Homepage - doesnt work · 2 years ago

    Sorry, I’m on my phone and I can’t view the image correctly. I will see it at weekend

  • .JS File into our Homepage - doesnt work · 2 years ago

    I can't see the code in your image well. Can you copy that code here, wrapped in a block with triple quotes like this ``` (opening and closing). Before posting the comment, make sure in the preview th

  • .JS File into our Homepage - doesnt work · 2 years ago

    You can do this by adding the following in the base.html.twig script block: {% block javascripts %} //Here are the rest of the javascript assets // {% do assets.addJs('theme://js/site.js', { group: '

  • Any plugin like sharer? · 2 years ago

    Hi. Take a look at the Mundana theme, in the partials/blog-item.html.twig load another partial/blog/share.html.twig, which includes the library https://www.addtoany.com/. Maybe you can get something t

  • Hot to disable forgot password · 2 years ago

    I just uploaded a PR to the login plugin repository to add the option to enable or disable the Forgot button, but the login plugin is different, as I said, from the admin plugin's login form. For the

  • Hot to disable forgot password · 2 years ago

    I just realized that you might be referring to the admin panel login. Is that correct? The answer above is for the login form for registered users of your website, not for users who can access the adm

  • Hot to disable forgot password · 2 years ago

    I think you can do this by making a simple modification to your theme. Copy the partials/login.html.twig file from the email plugin to the partials folder of your theme. In this file you have some lin

  • Getting item from List with specific title · 2 years ago

    You could use something like this: {% for item in page.header.contentblocks %} {% if item.title == 'YouTube' %} <strong>{{ item.title|raw }}</strong> < p>{{ item.content

  • Getting item from List with specific title · 2 years ago

    Can you post the code for the .md file of the page that contains the list of contentblocks?