Link to specific article looks like:
Code: |
index.php?option=com_content&view=article&id=ARTICLE_ID
|
Where ARTICLE_ID is ID of article. For example if you want to show articles from content category with ID equals to 3, set "Source type" to "SQL", enter the next SQL query:
Code: |
SELECT
id,
title,
FROM
#__content
WHERE
catid = 3
|
and set "Columns settings -> Columns settings -> ID" parameter to
title and "Columns settings -> Columns settings -> Format" to:
Code: |
index.php?option=com_content&view=article&id={$columns:id}
|
Regards,
ARI Soft