Documentation

Features

This is an old revision of the document!


Template Plugins

68 Classifieds comes with a variety of pre-built template functions that you can use throughout the script. The following sections help describe the different functions and how to call them. You can also visit our Module Release forum for others added by us and other forum members.

If you would like to create your own plugin please see the Smarty website for full details: http://smarty.net/manual/en/plugins.php

Total Listings

The total listings plugin allows you to display the total number of listings.

{total_listings}

Total Members

The total members plugin allows you to display the total number of members.

{total_members}

Featured Listings Vertical

Featured listings vertical calls a function and displays all your featured listings in a vertical table.

To call this function you would include the following code in any template file you want it to appear.

{feature_listings_vertical number=4 table_attr='width="100%"' td_attr='valign="middle" align="center"'}

The code above calls a Smarty custom plugin that we have created. The file is located at includes/templates/plugins/function.feature_listings_vertical.php

Here is a list of available parameters:

number
(integer) The max number of listings you want displayed.
table_attr
(string) Any table attributes you would like. For example: table_attr='width=“100%”'.
tr_attr
(string) Any tr attributes you would like.
show_price
(string) Y or N.
trailpad
(string) A value to pad the trailing cells on last row with (if any) The default is a space or
vdir
(string) The direction of each column to be rendered. possible values: down (top-to-bottom), up (bottom-to-top) default is down.
For more information on the different parameters you can visit this Smarty link.


Have more questions? Visit our community forums.