If you want to add some new custom changes, you need to add a new custom php file for that page in themes/functions/ folder with name custom_tpl_articles.php, where you can add the new changes and define those to a template variable. Also you should place that variable in themes/{Current theme}/articles/article_listing.tpl
1) {$article_listing_name}- To display the article name as page heading.
2) {$article_listing_authors_name}– To display the author’s name if the article have. This will show only when ‘Display Author in Article Listing’ is set to true from admin -> c settings -> settings ->shop systems -> Article configuration tab.
3) {$article_topic_name} – To display the topic in the article, if they have. This will show only when ‘Display Topic in Article Listing’ is set to true from admin -> c settings -> settings ->shop systems -> Article configuration tab.
4) {$article_listing_image} – To display the article image , if they have. This will show only when ‘Display Abstract in Article Listing’ is set to true from admin -> c settings -> settings ->shop systems -> Article configuration tab .
5) {$article_listing_head_desc} – To display an abstract about the article. This will show only when ‘Display Abstract in Article Listing’ is set to true from admin -> c settings -> settings ->shop systems -> Article configuration tab .
6) {$article_listing_start_date} – To display the publish date of the article. This will show only when ‘Display Date Added in Article Listing’ is set to true from admin -> c settings -> settings ->shop systems -> Article configuration tab. |