Articles & Category Descriptors
If Summary length >= Total Length (in char) then displays full article/category descriptor.
If Summary length == 0 then displays only the title.
If Summary length == 0 and there is no title then displays full article/category descriptor.
A Category Descriptor will be displayed in the first position in relation to other articles.
Only one Descriptor per Category or subcategory.
When copying or moving a Category Descriptor to a new category : then it becomes the Category Descriptor of the new category. (the last performed action always has priority)
If a Category Descriptor has title then it becomes the title of the page.
Simple Articles are sorted by date Descending.
The Display Position indicates where an Article or a Category Descriptor will be displayed in relation to products or categories:
If we are in home page :
- TOP : Just after the page's title.
- MIDDLE : After TEXT_GREETING_GUEST.
- Bottom : After products.
If we navigate through nested categories :
- TOP : Just after the page's title.
- MIDDLE : After categories and before products.
- Bottom : After products.
If we navigate to the product listing section :
- TOP : Just after the page's title.
- MIDDLE : Just before products.
- Bottom : After products.
Filters
- You can apply any number of filters to your page's content.
- To create a new filter place your .php file in catalog_root/includes/filters/ directory
- To deactivate your filter juste delete it.
- To disable filter function : go to catalog_root/includes/rk_osc.php and comment out this whole line:
$content = rk_filter ($content);
Default Filter : PHP Inclusion
PHP File Inclusion in page's content through use of require, include, require_once, include_once.
Usage: insert the following code to your page's content:
- [include:Path to your php file]
- [include_once:Path to your php file]
- [require:Path to your php file]
- [require_once:Path to your php file]
Examples:
- [include:MyPhpFile.php]
- [include:MyDir/MyPhpFile.php]
To deactivate PHP Inclusion delete this file : catalog_root/includes/filters/phpinclusion.php