Hello!
The setting of menu point "category blog" show/hide subcategory heading text doesn't work and shows the heading text always. The cause is, that YouGrids doesn't do the check of this setting in the /templates/yougrids/html/com_content/category/blog.php. In the line 117, instead of
HTML Code:
<h3>
<?php echo JTEXT::_('JGLOBAL_SUBCATEGORIES'); ?>
</h3>
must be
PHP Code:
<?php if ($this->params->get('show_category_heading_title_text', 1) == 1) : ?>
<h3>
<?php echo JTEXT::_('JGLOBAL_SUBCATEGORIES'); ?>
</h3>
<?php endif; ?>
I don't check, if such checks are exist in other files - please include this and eventually on other places missing checks in your next release.
best regards
evgenij
Another bug of your forum software: if one does post preview, the filled form data (from the form above thread textarea) are lost. Befor real posting one must fill the data again.
Are you sure your are posting in product assigned forum?: Yes
What is your CMS version?: Joomla 2.5
MySQL Version: 5.x
PHP version: 5.x
Link to installation:
http://localhost
Have you edited any files? If yes tell us which ones.: Yes
Is this personal or client website?: Personal