-
AuthorPosts
-
palos Friend
palos
- Join date:
- January 2013
- Posts:
- 369
- Downloads:
- 37
- Uploads:
- 8
- Thanks:
- 125
- Thanked:
- 27 times in 7 posts
May 23, 2014 at 6:22 pm #198111It shows Date even it is switched off at its Layout Configuration.
Just rolled back two earlier version (2.6.2) and reinstalled the fresh one (2.6.4) but still there is the date what I do not need.
span class=”ja-createdate”TomC ModeratorTomC
- Join date:
- October 2014
- Posts:
- 14077
- Downloads:
- 58
- Uploads:
- 137
- Thanks:
- 948
- Thanked:
- 3155 times in 2495 posts
May 23, 2014 at 6:28 pm #536441Can you provide the url of the site you’re working on?
palos Friendpalos
- Join date:
- January 2013
- Posts:
- 369
- Downloads:
- 37
- Uploads:
- 8
- Thanks:
- 125
- Thanked:
- 27 times in 7 posts
May 23, 2014 at 6:58 pm #536446Hi Tom, PM sent!
TomC ModeratorTomC
- Join date:
- October 2014
- Posts:
- 14077
- Downloads:
- 58
- Uploads:
- 137
- Thanks:
- 948
- Thanked:
- 3155 times in 2495 posts
May 23, 2014 at 7:07 pm #536448Assuming you are working with the J3.x/T3vs version of JA Nex . . . .
If you have not yet done so, create a new file called “custom.css” within file path –> /templates/ja_nex/css
Within that custom.css file, paste the following CSS rule:
.ja-zinmeta {
display: none;
}SAVE CHANGES – CLEAR CACHE – REFRESH PAGE
Does that achieve the result you were looking for?
palos Friendpalos
- Join date:
- January 2013
- Posts:
- 369
- Downloads:
- 37
- Uploads:
- 8
- Thanks:
- 125
- Thanked:
- 27 times in 7 posts
May 23, 2014 at 7:13 pm #536450Unfortunately did not solved… :((
(Saved – cleared – refreshed)
Template Information
Name:Ja Nex
T3Version:1.0.3
Released Date:28/02/2014Framework Information
Name:T3 Framework
Version:2.2.0
Released Date:May 22, 2014TomC ModeratorTomC
- Join date:
- October 2014
- Posts:
- 14077
- Downloads:
- 58
- Uploads:
- 137
- Thanks:
- 948
- Thanked:
- 3155 times in 2495 posts
May 23, 2014 at 7:18 pm #536454In that case . . . .
Withing file path –> templates/ja_nex_t3/html/mod_janewspro/nex/style.css
at line 132, modify as follows:
.ja-zinmeta {
display: none;
color: #B5B5B5
font-size: 92%;
line-height: normal;
margin: 5px 0;
text-transform: uppercase;
}SAVE CHANGES – CLEAR CACHE – REFRESH PAGE
How’s That?
palos Friendpalos
- Join date:
- January 2013
- Posts:
- 369
- Downloads:
- 37
- Uploads:
- 8
- Thanks:
- 125
- Thanked:
- 27 times in 7 posts
May 23, 2014 at 7:25 pm #536455Tom, are you sure you want me to edit janewspro?
It is all about jasidenews
I did it but nothing happend.TomC ModeratorTomC
- Join date:
- October 2014
- Posts:
- 14077
- Downloads:
- 58
- Uploads:
- 137
- Thanks:
- 948
- Thanked:
- 3155 times in 2495 posts
May 23, 2014 at 7:38 pm #536458Which section is that on your site?
palos Friendpalos
- Join date:
- January 2013
- Posts:
- 369
- Downloads:
- 37
- Uploads:
- 8
- Thanks:
- 125
- Thanked:
- 27 times in 7 posts
May 23, 2014 at 10:42 pm #536462Fifth from top at right sidebar!
palos Friendpalos
- Join date:
- January 2013
- Posts:
- 369
- Downloads:
- 37
- Uploads:
- 8
- Thanks:
- 125
- Thanked:
- 27 times in 7 posts
June 17, 2014 at 11:47 am #539214The issue started with upgrading the module or K2 or the framework as I can remember…
Just rolled back the module to 2.6.2 and updated again to 2.6.4 but nothing has changed 🙁
I do not want to roll back K2 or the framework yet :((
It is the same at the bottom what uses this module.
The problem still persist even if I turn off showing item’s dates at K2!(It is at the default position on my site – kept untouched your demo – as I wrote earlier)
OMG! If I would read my first post then I should not have to roll back and upgrade again… as I did a month ago. :-[:D
But it is still bad.
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
June 19, 2014 at 8:42 am #539477<em>@palosutca 428953 wrote:</em><blockquote>It shows Date even it is switched off at its Layout Configuration.
Just rolled back two earlier version (2.6.2) and reinstalled the fresh one (2.6.4) but still there is the date what I do not need.
span class=”ja-createdate”</blockquote>I tried to duplicate the problem on your site. Here is workaround to solve this bug.
Open the templates/ja_nex_t3/html/mod_jasidenews/default.php file
Change
<?php if (isset($item->date)) : ?>
<span class="ja-createdate"><?php echo JHTML::_('date', $item->date, JText::_('DATE_FORMAT_LC4')); ?> -</span>
<?php endif; ?>To:
<?php if( $showdate) : ?>
<span class="ja-createdate"><?php echo JHTML::_('date', $item->date, JText::_('DATE_FORMAT_LC4')); ?> -</span>
<?php endif; ?>
Let me know if it helps.
1 user says Thank You to Ninja Lead for this useful post
palos Friendpalos
- Join date:
- January 2013
- Posts:
- 369
- Downloads:
- 37
- Uploads:
- 8
- Thanks:
- 125
- Thanked:
- 27 times in 7 posts
June 19, 2014 at 2:43 pm #539520Wow Ninja!
You did it again! 😀
Thanx!!!Why does not it coded by default?
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
palos Friendpalos
- Join date:
- January 2013
- Posts:
- 369
- Downloads:
- 37
- Uploads:
- 8
- Thanks:
- 125
- Thanked:
- 27 times in 7 posts
June 20, 2014 at 1:58 pm #539661Hi Ninja,
Just saw that you are also participant at this issue with Saguaros. It is close to my problem where I found the module coded faulty and it has fake path what causes the issue. May I ask for some quick healing? 🙂
Thank you,
palosNinja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
June 21, 2014 at 3:54 am #539712Can you give the URL of your site and the screenshot with what you are trying to achieve? I might be able to help you out then.
-
AuthorPosts
This topic contains 20 replies, has 3 voices, and was last updated by Ninja Lead 10 years, 5 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum