Posts

Showing posts from March, 2019

add coma between topic & add 'and' in last in topic list

{% set my_topics = blog_topics(group.id, 250) %}{% for item in my_topics %}{% if not loop.last %}{% if not loop.first %}, {{ item }}{% else %}{{ item }}{% endif %}{% else %} and {{ item }}{% endif %}{% endfor %} https://prnt.sc/n3rffl

Show Pagination in post page

eg - https://prnt.sc/mx57c7 <div class="post-no-pagination">       {% set totalPostCount = blog_total_post_count(group.id) %}       {% set rec_posts = blog_recent_posts(group.id, 5000) %}       {% for rec_post in rec_posts|reverse %}       {% if content.absolute_url == rec_post.absolute_url %}       <strong class="post-count"> {{ loop.index }}</strong>       {% endif %}                                  {% if loop.last %}       <span class="total-count">/ {{ totalPostCount }}</span>       {% endif %}       {% endfor %}     </div>