-
AuthorPosts
-
jamjodesign Friend
jamjodesign
- Join date:
- June 2008
- Posts:
- 432
- Downloads:
- 27
- Uploads:
- 40
- Thanks:
- 59
- Thanked:
- 14 times in 3 posts
July 8, 2009 at 5:45 pm #142608When I add 2 leading articles to JA News 1.3.1 the right column breaks and the News section on the homepage does not line up properly. Can you only have 1 leading news section on the homepage and not 2 or 3? I tried to just remove the JA News module and use standard blog layout but on thiis template this does not work and is just blank on the homepage?
jamjodesign Friendjamjodesign
- Join date:
- June 2008
- Posts:
- 432
- Downloads:
- 27
- Uploads:
- 40
- Thanks:
- 59
- Thanked:
- 14 times in 3 posts
July 9, 2009 at 9:38 am #310472Anybody get 2 articles into the Ja-news module yet. When I say 2 I mean on the demo/default template they have 1 leading article from a section. I need to show 2 or 3 articles and it completely breaks the site?
September 10, 2009 at 2:07 pm #317009Ive got exactly the same problem. I want to show 4 articals from the same cat on frontpage. doesnt work. Anyone have a solution for this?
Thanksscotty Friendscotty
- Join date:
- March 2008
- Posts:
- 2339
- Downloads:
- 0
- Uploads:
- 13
- Thanks:
- 76
- Thanked:
- 827 times in 595 posts
September 10, 2009 at 6:21 pm #317030It appears to be a bug in JA News where it is not closing a </div>. Will post a fix shortly.
scotty Friendscotty
- Join date:
- March 2008
- Posts:
- 2339
- Downloads:
- 0
- Uploads:
- 13
- Thanks:
- 76
- Thanked:
- 827 times in 595 posts
September 10, 2009 at 7:57 pm #317032Ok… open templates/ja_lead/html/mod_janews/blog_item.php and find on line 46…
[php]
<div class=”jazin-content”>[/php]and change to…[php] <div class=”jazin-content clearfix”>[/php]Then on line 55 find…
[php] <?php if ($showreadmore) : ?>
<a href=”<?php echo $link; ?>” class=”readon” title=”<?php echo JText::sprintf(‘Readmore’);?>”><?php echo JText::sprintf(‘Readmore’);?></a>
<?php endif; ?>
</div>[/php]and change to… (your just adding the </div> at the end)[php] <?php if ($showreadmore) : ?>
<a href=”<?php echo $link; ?>” class=”readon” title=”<?php echo JText::sprintf(‘Readmore’);?>”><?php echo JText::sprintf(‘Readmore’);?></a>
<?php endif; ?>
</div></div>[/php]Then at the very end of the file there are 3 closing </div>. Delete one of them.Now open your template.css and at the very end add…
ul.jazin-links {
padding-left: 160px;
}
Problem solved.4 users say Thank You to scotty for this useful post
Anonymous ModeratorJA Developer
- Join date:
- September 2014
- Posts:
- 9914
- Downloads:
- 207
- Uploads:
- 152
- Thanks:
- 1789
- Thanked:
- 2008 times in 1700 posts
September 11, 2009 at 9:20 am #317069Hi
Maybe you are using the old version. We fixed this issue and updated to the latest version last month.
Please kindly download our template and install again.
scotty Friendscotty
- Join date:
- March 2008
- Posts:
- 2339
- Downloads:
- 0
- Uploads:
- 13
- Thanks:
- 76
- Thanked:
- 827 times in 595 posts
September 11, 2009 at 10:16 am #317074The problem is in the version I downloaded last night.
1 user says Thank You to scotty for this useful post
September 11, 2009 at 12:00 pm #317085I agree with Scotty, the issue was recognized in the current version, downloaded a few days ago. Thank you Scotty.
September 11, 2009 at 3:51 pm #317107Hi Scotty, after adding your changes Ive got this error.
Can I send my account detail to you in a PM and you will try to login and fix this?My Bad. Missed one DIV. It works.
Thank you Scott.
scotty Friendscotty
- Join date:
- March 2008
- Posts:
- 2339
- Downloads:
- 0
- Uploads:
- 13
- Thanks:
- 76
- Thanked:
- 827 times in 595 posts
September 11, 2009 at 3:57 pm #317109Yup PM them to me… and FTP details.
scotty Friendscotty
- Join date:
- March 2008
- Posts:
- 2339
- Downloads:
- 0
- Uploads:
- 13
- Thanks:
- 76
- Thanked:
- 827 times in 595 posts
September 11, 2009 at 4:39 pm #317117You missed this step…
scotty;144180Then at the very end of the file there are 3 closing </div>. Delete one of them.
I even made it bold so people wouldn’t miss it 😛
Fixed now.
September 13, 2009 at 12:07 pm #317226Hi Scotty,
exactly this is the solution i was searching for !
Great work !
ThxRob Hawthorn FriendRob Hawthorn
- Join date:
- September 2014
- Posts:
- 190
- Downloads:
- 0
- Uploads:
- 28
- Thanks:
- 38
- Thanked:
- 3 times in 1 posts
September 21, 2009 at 5:23 pm #318027Downloaded it this morning and the bug was still there
September 23, 2009 at 5:02 pm #318280thanks scotty it works.
:-))
<em>@scotty 144180 wrote:</em><blockquote>Ok… open templates/ja_lead/html/mod_janews/blog_item.php and find on line 46…
[php]
<div class=”jazin-content”>[/php]and change to…[php] <div class=”jazin-content clearfix”>[/php]Then on line 55 find…
[php] <?php if ($showreadmore) : ?>
<a href=”<?php echo $link; ?>” class=”readon” title=”<?php echo JText::sprintf(‘Readmore’);?>”><?php echo JText::sprintf(‘Readmore’);?></a>
<?php endif; ?>
</div>[/php]and change to… (your just adding the </div> at the end)[php] <?php if ($showreadmore) : ?>
<a href=”<?php echo $link; ?>” class=”readon” title=”<?php echo JText::sprintf(‘Readmore’);?>”><?php echo JText::sprintf(‘Readmore’);?></a>
<?php endif; ?>
</div></div>[/php]Then at the very end of the file there are 3 closing </div>. Delete one of them.Now open your template.css and at the very end add…
ul.jazin-links {
padding-left: 160px;
}
Problem solved.</blockquote>September 25, 2009 at 6:35 am #318523<em>@JA Developer 144239 wrote:</em><blockquote>Hi
Maybe you are using the old version. We fixed this issue and updated to the latest version last month.
Please kindly download our template and install again.</blockquote>
A general question please: when the template has been updated last month (August 09) why is the version still 1.0 and the date still 07-03-2009? If I had not taken a look into this thread and read your comment I would never have been realised that there is a new version.
Should I download an install again (I havent since July) bevore implement Scottys patch or not?
thankx 4 a re:
Regards
stolmaAuthorPostsThis topic contains 19 replies, has 10 voices, and was last updated by asimd 15 years, 1 month ago.
We moved to new unified forum. Please post all new support queries in our New Forum