Hello,
If want to show a custom page heading which is defined in "Page Display -> Page Heading" parameter in menu item settings then open <joomla_directory>/components/com_ariquiz/views/quizzes/tmpl/default.php file and add the following code before <?php if (empty($this->quizzes)): ?> code:
Code: |
<?php if (JFactory::getApplication()->getParams()->get('show_page_heading')) : ?>
<div class="page-header">
<h1> <?php echo JFactory::getApplication()->getParams()->get('page_heading'); ?> </h1>
</div>
<?php endif; ?>
|
Regards,
ARI Soft