Missing Join Date and Location
- fused.038
-
Topic Author
- Offline
- New Member
-
Less
More
- Posts: 4
- Thank you received: 0
3 years 4 months ago #668
by fused.038
Missing Join Date and Location was created by fused.038
Hello,
When an User posts I do not see the join date (even though activated on Kunena settings) and the location is an Icon. I'd like it to be text how to do the template override?
When an User posts I do not see the join date (even though activated on Kunena settings) and the location is an Icon. I'd like it to be text how to do the template override?
- Eugene S.
-
- Offline
- Administrator
-
3 years 4 months ago #669
by Eugene S.
Like our extensions for Kunena?
Add your voice to the JED listing with a 100 score review: bit.ly/2cIg8pF
Thanks!
Replied by Eugene S. on topic Missing Join Date and Location
Hi fused.038,
Join date is not displayed for users - this bug is confirmed. We will include this patch to the next version of templates.
To display location as text instead of the icon you need to modify the code.
Open this file:
components/comkunena/template/kvivid/layouts/user/item/summary/default.php at line ~ 102 and remove this code:
then find line ~ 88:
And add the following code BEFORE line ~ 88:
As a result, you will get this result:
Good luck!
Join date is not displayed for users - this bug is confirmed. We will include this patch to the next version of templates.
To display location as text instead of the icon you need to modify the code.
Open this file:
components/comkunena/template/kvivid/layouts/user/item/summary/default.php at line ~ 102 and remove this code:
<?php if (!empty($profile->location)) : ?>
<div class="hasTooltip" title="<?php echo JText::('COM_KUNENA_MYPROFILE_LOCATION') ?>:<?php echo $this->escape($profile->location); ?>">
<a href="https://maps.google.com/?q=<?php echo $this->escape($profile->location); ?>"
target="blank" rel="nofollow noopener noreferrer"><i class="fa fa-map-marker" aria-hidden="true"></i></a>
</div>
<?php endif; ?>
then find line ~ 88:
<?php if ($this->config->showuserstats && $this->config->showranking) : ?>
And add the following code BEFORE line ~ 88:
<?php if (!empty($profile->location)) : ?>
<div>
<strong><?php echo JText::('COM_KUNENA_MYPROFILELOCATION') ?>: </strong>
<a class="hasTooltip" title="<?php echo JText::('COM_KUNENA_MYPROFILE_LOCATION') ?>:<?php echo $this->escape($profile->location); ?>" href="https://maps.google.com/?q=<?php echo $this->escape($profile->location); ?>"
target="_blank" rel="nofollow noopener noreferrer"><?php echo $this->escape($profile->location); ?></a>
</div>
<?php endif; ?>
As a result, you will get this result:
Good luck!
Like our extensions for Kunena?
Add your voice to the JED listing with a 100 score review: bit.ly/2cIg8pF
Thanks!
- fused.038
-
Topic Author
- Offline
- New Member
-
Less
More
- Posts: 4
- Thank you received: 0
3 years 4 months ago #677
by fused.038
Replied by fused.038 on topic Missing Join Date and Location
Thanks for the update, will a template override work as well instead of doing a core hack?
- Eugene S.
-
- Offline
- Administrator
-
3 years 4 months ago #678
by Eugene S.
Like our extensions for Kunena?
Add your voice to the JED listing with a 100 score review: bit.ly/2cIg8pF
Thanks!
Replied by Eugene S. on topic Missing Join Date and Location
If you are going to path layout override, the effect should be the same.
What is override? You make a copy of existing layout and keep it in Joomla template and can modify the design, right? So, this patch can be used in your override
What is override? You make a copy of existing layout and keep it in Joomla template and can modify the design, right? So, this patch can be used in your override

Like our extensions for Kunena?
Add your voice to the JED listing with a 100 score review: bit.ly/2cIg8pF
Thanks!
- fused.038
-
Topic Author
- Offline
- New Member
-
Less
More
- Posts: 4
- Thank you received: 0
3 years 4 months ago #679
by fused.038
Replied by fused.038 on topic Missing Join Date and Location
Exactly thanks
Moderators: Eugene S.