Hi,
I've created a page on our portal website where we can view the content of a knowledge article, using the following blog https://colinvermander.com/2017/06/08/dynamics-365-portals-customize-knowledge-articles/.
However, the page now displays only very basic information (title and content).
I'd like this page to show the content of a specific form instead. I've already created an entity form for this but I don't know how to make it appear on the web page.
This is the code of my web template.
{% assign article = entities.knowledgearticle[request.params.id] %}{% include 'Breadcrumbs' title: article.title %}{% if article %}{{article.title}}{% else %}No article found{% endif %}
{% if article %} {{ article.content }} {% endif %}
Any advice?
Kind regards,
Nina