description in blog section

francesco.scaramella2
8 Posts
francesco.scaramella2 posted this 08 December 2019
Ask a Question

in joomla, in the style section of the blog as, do I make to appear the header of the group of articles of that category and its description??

in joomla, in the style section of the blog as, do I make to appear the header of the group of articles of that category and its description??
Vote to pay developers attention to this features or issue.
3 Replies
Order By: Standard | Newest
Support Team
Support Team posted this 10 December 2019

Hi,

Do you mean that you want to display category title and description on the category blog page in Joomla?
At this moment you can display category title only. For this simply enable the corresponding menu item option.

Please let us know if you have any further questions.

...................................................
Sincerely,
Olivia
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Hi, Do you mean that you want to display category title and description on the category blog page in Joomla? At this moment you can display category title only. For this simply enable the corresponding menu item option. Please let us know if you have any further questions. ................................................... Sincerely, Olivia Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
francesco.scaramella2
8 Posts
francesco.scaramella2 posted this 10 December 2019

I meant just that, I have to add the description I have in the category along with the title

I meant just that, I have to add the description I have in the category along with the title
Support Team
Support Team posted this 12 December 2019

Hi Francesco,

Unfortunately, the Nicepage Blog Template does not display category description but you can output it manually. Simply insert the PHP control to the place where you want to display the category description and insert the following code.

<?php if (!JFactory::getApplication()->input->get('start') && $this->params->get('show_description') && $this->category->description) : ?>
    <?php echo JHtml::_('content.prepare', $this->category->description, '', 'com_content.category'); ?>
<?php endif; ?>

Please let us know if you have any further questions.

...................................................
Sincerely,
Olivia
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Hi Francesco, Unfortunately, the Nicepage Blog Template does not display category description but you can output it manually. Simply insert the PHP control to the place where you want to display the category description and insert the following code. <?php if (!JFactory::getApplication()->input->get('start') && $this->params->get('show_description') && $this->category->description) : ?> <?php echo JHtml::_('content.prepare', $this->category->description, '', 'com_content.category'); ?> <?php endif; ?> Please let us know if you have any further questions. ................................................... Sincerely, Olivia Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
You must log in or register to leave comments