Paging not workin and having problem with showing news correctly

Free responsive Joomla 2.5 and 3.x module to present your content with easy and intuitive way.
Rate this topic: Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.
GK User
Sun May 08, 2011 7:06 pm
HEllo ppl.-

I have tried and searchthe forum but couldent find this particular error,

We have just installed NSP GK4 on our site and having some problems.

First.. the Paging dosnt seem to work, Nothing hapends when clickin the arrows or dots. not in IE or Firefox.

Second.. When we click on an headline of the newsarticle. We are taken to the article. Although NSP GK4 is always intop of the article.. So as we are displaying about 10news on frontpage and when clicking a newsarticle we are taken to the article but its way down below the GK4 module.

How can i not show the GK4 module when reading the article.

thankl you.

/Rickard
SWEDEN:
User avatar
Fresh Boarder

teitbite
Tue May 10, 2011 10:54 pm
Hi

To no to show article and NSP on the same site You need to attache the articles to some menu item. Because if You do not have that than the article will open where it has been called and this page got a module attached already. That's how Joomla works.

For the second problem please show me Your site.
User avatar
Moderator

GK User
Wed May 11, 2011 9:50 am
I have a solution for hiding NSP when Read More clicked:
Code: Select all
<?php
$url = $_SERVER['REQUEST_URI'];
$top_mods = ( ( $url == '/' ) or ( $url == '/index.php' ) ) ? true : false;
?>

Just place this code above in you template index.php file before the <head> tag and use it at the module call:

Code: Select all
<?php if( $top_mods ){ ?>
   <div id="top_row2" class="fullwidth">
      <div id="top_row2_in" class="fullwidth">
         <jdoc:include type="modules" name="top_mods" style="xhtml" />
      </div>
   </div>
<?php } ?>


Another solution for the developers is to change the link to
index.php?option=com_content&view=article&id=XX

Which brings another issue but it's already solved at Joomla Forum. Check my solution in this forum at the bottom (getonline user).

Anyway I have the same issue with Paging. I don't use Links Layout but the engine.js has problem with it ( .nspList is null). Please fix it.

Thanks
User avatar
Fresh Boarder

teitbite
Fri May 13, 2011 11:03 pm
Hi

I was using this method before :) It's written somewhere in the forum. The method with a structure of articles in menu is simply the fastest one :)
User avatar
Moderator


cron