- Posts: 27
- Thank you received: 2
Kunena 7.0.2 Released
The Kunena team has announce the arrival of Kunena 7.0.2 [K 7.0.2] in stable which is now available for download as a native Joomla extension for J! 5.3.x/5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0
Topics must relate to a currently supported version of Kunena. If you are unsure what is the current supported version of Kunena, please go to the
download
page.
If you are having problems then, for your own benefit, it would save us all a lot of time if you would kindly post your configuration report when you ask for help from this forum. If you do not post your configuration report we will not ask you for it but you will probably not get your problem solved, either.
If you are having problems then, for your own benefit, it would save us all a lot of time if you would kindly post your configuration report when you ask for help from this forum. If you do not post your configuration report we will not ask you for it but you will probably not get your problem solved, either.
Question Kunena kills "page heading"
6 months 1 week ago #233882
by Bearsampp
Kunena kills "page heading" was created by Bearsampp
If you look at
ku2j5.alisonmeeks.com/
you'll see a green bar "page heading" This exists on ALL pages except kunena. Turning on "page heading" for kunena menu "forum" menu item did not restore it. How do I restore the page heading?
Please Log in or Create an account to join the conversation.
- 9themestore
-
- Offline
- Premium Member
-
6 months 1 week ago #233883
by 9themestore
- Please provide your site url if it has been lived.
- Please share tip if it worked fine with you.
- Don't be shy about using the "Thanks" button below if you found my comment helpful
Replied by 9themestore on topic Kunena kills "page heading"
Hi,
From your website's admin click to the "System -> Global Configuration -> Menus" menu. Turn on the "Show Page Heading" field in the "Page Display" tab.
From your website's admin click to the "System -> Global Configuration -> Menus" menu. Turn on the "Show Page Heading" field in the "Page Display" tab.
- Please provide your site url if it has been lived.
- Please share tip if it worked fine with you.
- Don't be shy about using the "Thanks" button below if you found my comment helpful
Please Log in or Create an account to join the conversation.
Less
More
- Posts: 973
- Thank you received: 153
6 months 1 week ago #233884
by Pinkeltje
Replied by Pinkeltje on topic Kunena kills "page heading"
As far as I can see the options to show page heading is missing in Kunena. You could make an override for components\com_kunena\template\aurelia\layouts\page\default.php
by changing code starting line 23
into
by changing code starting line 23
Code:
<div id="kunena" class="layout <?php echo $this->options->get('pageclass_sfx'); ?>">
<?php
Code:
<div id="kunena" class="layout <?php echo $this->options->get('pageclass_sfx'); ?>">
<?php if ($this->options->get('show_page_heading',1)) : ?>
<h1><?php echo $this->options->get('page_heading') ? $this->options->get('page_heading') : KunenaFactory::getApplication()->getMenu()->getActive()->title; ?></h1>
<?php endif; ?>
<?php
The following user(s) said Thank You: 9themestore
Please Log in or Create an account to join the conversation.
6 months 1 week ago - 6 months 1 week ago #233887
by Bearsampp
Replied by Bearsampp on topic Kunena kills "page heading"
I tried to make an override and it didn't work.
postimg.cc/D8KTxvdX
I even tried editing aurelis directly and that didn't work either.
I don't mind making another template but I can't figure out how to upload a zip.
I'd prefer the override method. What am I doing wrong?
postimg.cc/D8KTxvdX
I even tried editing aurelis directly and that didn't work either.
I don't mind making another template but I can't figure out how to upload a zip.
I'd prefer the override method. What am I doing wrong?
Last edit: 6 months 1 week ago by Bearsampp.
Please Log in or Create an account to join the conversation.
- 9themestore
-
- Offline
- Premium Member
-
6 months 1 week ago #233888
by 9themestore
- Please provide your site url if it has been lived.
- Please share tip if it worked fine with you.
- Don't be shy about using the "Thanks" button below if you found my comment helpful
Replied by 9themestore on topic Kunena kills "page heading"
Hi Bearsampp,
The reason why the override doesn't work is that you copied the wrong folder structure. You can override Kunena's layout file with the following folder structure: [Your_Joomla_Template]/html/com_kunena/layouts/page/default.php.
Kind regards,
The reason why the override doesn't work is that you copied the wrong folder structure. You can override Kunena's layout file with the following folder structure: [Your_Joomla_Template]/html/com_kunena/layouts/page/default.php.
Kind regards,
- Please provide your site url if it has been lived.
- Please share tip if it worked fine with you.
- Don't be shy about using the "Thanks" button below if you found my comment helpful
Please Log in or Create an account to join the conversation.
6 months 1 week ago - 6 months 1 week ago #233891
by Bearsampp
Replied by Bearsampp on topic Kunena kills "page heading"
Thats still not correct. If you examine
ku2j5.alisonmeeks.com/forum
you'll see a full width green bar. This is the .page_heading according to .css
That bar does not exist on kunena page. Adding the code you guys gave does add a heading ( seen by the 3 - above index ) but thats not the same thing as showing the "page_heading" like the rest of the site does.
The green bar is whats missing and needed.
This is being generated by
in index.php in the template I believe.
That bar does not exist on kunena page. Adding the code you guys gave does add a heading ( seen by the 3 - above index ) but thats not the same thing as showing the "page_heading" like the rest of the site does.
The green bar is whats missing and needed.
This is being generated by
Code:
<?php if($option == 'com_content'){ ?>
<div class="page_heading">
<div class="wrapper960">
<?php if (!empty($params->get('page_heading')) && ($params->get('show_page_heading'))) { ?>
<h1><?php echo $params->get('page_heading'); ?></h1>
<?php } ?>
</div>
</div>
<?php } ?>
Last edit: 6 months 1 week ago by Bearsampp.
The following user(s) said Thank You: ssnobben
Please Log in or Create an account to join the conversation.
Time to create page: 0.319 seconds