So i’m running Grav v1.7.46 and trying to enable Recent Posts v1.0.0 to display on my Grav powered site. I’m using Quark 2.0.4 theme.
It seems to install OK, but I cannot manage to get anything to appear in the sidebar. Regardless of settings, categories, page filters, etc. I’ve checked the permissions on various directories, no issues. I read and tried all the examples on the GitHub page. Nothing loads into the sidebar.
Check error logs. This plugin is 8 years old. Most likely incompatible with latest versions of Grav. You could try asking dev on Github to update the plugin, but I doubt it would be updated
1 Like
cheers Karmalakas, I’ve already had a look, the errors I am getting are fairly standard. Grav has never run completely error free for me on my platform. i’m going to upgrade my server from the OS up. do a reinstall of Grav.
I doubt this would help. I’m pretty sure plugin is the issue
I agree. however I have a great deal of errors indicating I could have an issue with a dependent package and I want to get that sorted. Grav is the only manually installed package on my system. I run FreeBSD and use it’s packages system.
Hi, apologies, i have posted about this previously but I am still stuck.
Has anyone manged to get the ‘recent posts’ plugin working, or a work around? I am after a list in my sidebar of the last 6 pages published, that all. The plugin is not working for me and the github project is archived.
You don’t really need a plugin to show recent posts. Look at this article:
@xarmoda, Although plugin Recent Posts has been archived and is no longer maintained, it still works as expected.
-
Create a child (inheriting) theme based on Quark.
If you don’t create a child theme, you will loose all your changes when Quark get updated.
-
Copy template /user/themes/quark/templates/partials/sidebar.html.twig into your child theme’s folder /user/themes/myquark/templates/partials
-
Then add the following to your sidebar.html.twig:
{% if config.plugins['recent-posts'].enabled %}
<div class="sidebar-content">
{% include 'partials/recent-posts.html.twig' %}
</div>
{% endif %}
Note the config.plugins['recent-posts'].enabled
. Twig will treat the dash (-) in config.plugins.recent-posts.enabled
as a minus and will fail silently.
1 Like
Hi, i did try this with no outcome. note: I am not using blog posts, just normal pages. i’m using the ‘item’ template for those in the following arrangement:
Grav is recognizing the plugin is enabled. it’ll display test comments in the both the twig templates. i’ve double checked the file permissions etc.
@xarmoda,
I am not using blog posts, just normal pages. i’m using the ‘item’ template for those in the following arrangement:
Unfortunately, above statement is quite confusing… You’re not using “blog posts” (item.md), just “normal pages” (what is normal? default.md?) and you are using “item template” (item.md)
Anyway, RecentPosts does not care about the template being used… except that the Twig snippet must be in the right template for the page in which you would like to display the recent posts.
The plugin is working as expected using a fresh Grav installation using the following two setups:
-
Using normal pages (default.md)
user/pages
├── 01.home
│ └── default.md
└── 02.typography
└── default.md
-
or blog items (item.md) using item template
user/pages
├── 01.home
│ └── item.md
└── 02.typography
└── item.md
And with the Twig snippet either in user/themes/quark/templates/default.html.twig (1) or /user/themes/quark/templates/item.html.twig (2)
Both pages (Home & Typography) show a list with 2 entries.
Suggestion:
- Check if data is in generated HTML, or DOM. It might be hidden.
- Add
{{ recent_posts | length }}
in either template and it will show 2
in the output.
- Or add
{{ dump(recent_posts) }}
in either template and with enabled debugger. An array with two pages will be shown in the browser’s console.
- Provide a reproducible case (with fresh default Grav install) we can replay
- Provide a link to your website
Interesting. {{ recent_posts | length }}
shows 0
in the output.
Hi, i have it working. I did not realize i needed to have a selection in the page filter. I expected the filter to ‘filter out’ pages.
thanks for all your help.
@xarmoda,
I did not realize i needed to have a selection in the page filter.
You don’t… The following default config returns the latest 12 out of all your pages.
enabled: true
built_in_css: true
date_display_format: 'F Y'
limit: 12
order:
by: date
dir: desc
filter_combinator: and
filters:
category:
page:
I do. I have no customisations in my config. it’s working, i’m happy.