207

Product support

Get help in the plugin support forum.

  • Added on Mar 4, 2019
  • Current version: 1.0.1
  • Platform Compatibility
    v3.x not tested
    v2.x not tested
    v1.x use latest
  • License: Regular / Extended
  • Created by

Categories

Installation

Install plugin and add it where you want to see on your page. You can use it as prepared component

{% component 'related' %}

Or you can make your own structure

{% for article in related %}
{% set image = article.featured_images.first %}
<li>
    <a href="{{url('/blog', {'seo': article.slug})}}" title="{{article.title}}">
        <img src="{{ image.path }}" alt="{{article.title}}" />
        <span>{{article.title}}</span>
    </a>
</li>
{% endfor %}
1.0.1

First version of Related

Mar 04, 2019