Welcome to Geeklog, Anonymous Saturday, December 28 2024 @ 08:31 pm EST
Geeklog Forums
Adding page navigation to top of center block
Status: offline
JohnVanVliet
Forum User
Full Member
Registered: 10/09/03
Posts: 161
it is in headder.thtml in the layout
but every theme uses a diff. code layout /stile (they are all diff. )
but every theme uses a diff. code layout /stile (they are all diff. )
8
14
Quote
Status: Banned
machinari
Forum User
Full Member
Registered: 03/22/04
Posts: 1512
the page nav function is called in index.php before the footer is called. reproduce that code immediately after the COM_siteHeader is called, or thereabouts.
if (empty($topic)) {
$base_url = $_CONF['site_url'] . '/index.php';
if ($newstories) {
$base_url .= '?display=new';
}
} else {
$base_url = $_CONF['site_url'] . '/index.php?topic=' . $topic;
}
$display .= COM_printPageNavigation($base_url,$page, $num_pages);
of course this code depends on some sql, etc.
hope that helps
Text Formatted Code
// Print Google-like paging navigationif (empty($topic)) {
$base_url = $_CONF['site_url'] . '/index.php';
if ($newstories) {
$base_url .= '?display=new';
}
} else {
$base_url = $_CONF['site_url'] . '/index.php?topic=' . $topic;
}
$display .= COM_printPageNavigation($base_url,$page, $num_pages);
of course this code depends on some sql, etc.
hope that helps
7
7
Quote
Status: offline
enigmah
Forum User
Chatty
Registered: 07/22/02
Posts: 50
Thanks,
This is where I added the page nav:
$num_pages = ceil ($D['count'] / $limit);
// Print Google-like paging navigation above the stories
if (empty($topic)) {
$base_url = $_CONF['site_url'] . '/index.php';
if ($newstories) {
$base_url .= '?display=new';
}
} else {
$base_url = $_CONF['site_url'] . '/index.php?topic=' . $topic;
}
$display .= COM_printPageNavigation($base_url,$page, $num_pages);
if ($nrows > 0) {
for ($x = 1; $x $A = DB_fetchArray($result);
if ($A['featured'] == 1) {
$feature = 'true';
} elseif (($x == 1) && ($_CONF['showfirstasfeatured'] == 1)) {
$feature = 'true';
$A['featured'] = 1;
}
$display .= COM_article($A,'y');
if ($A['featured'] == 1) {
$display .= PLG_showCenterblock (2, $page, $topic);
}
}
$display .= PLG_showCenterblock (3, $page, $topic); // bottom blocks
// Print Google-like paging navigation under the stories
if (empty($topic)) {
$base_url = $_CONF['site_url'] . '/index.php';
if ($newstories) {
$base_url .= '?display=new';
}
} else {
$base_url = $_CONF['site_url'] . '/index.php?topic=' . $topic;
}
$display .= COM_printPageNavigation($base_url,$page, $num_pages);
This is where I added the page nav:
$num_pages = ceil ($D['count'] / $limit);
// Print Google-like paging navigation above the stories
if (empty($topic)) {
$base_url = $_CONF['site_url'] . '/index.php';
if ($newstories) {
$base_url .= '?display=new';
}
} else {
$base_url = $_CONF['site_url'] . '/index.php?topic=' . $topic;
}
$display .= COM_printPageNavigation($base_url,$page, $num_pages);
if ($nrows > 0) {
for ($x = 1; $x $A = DB_fetchArray($result);
if ($A['featured'] == 1) {
$feature = 'true';
} elseif (($x == 1) && ($_CONF['showfirstasfeatured'] == 1)) {
$feature = 'true';
$A['featured'] = 1;
}
$display .= COM_article($A,'y');
if ($A['featured'] == 1) {
$display .= PLG_showCenterblock (2, $page, $topic);
}
}
$display .= PLG_showCenterblock (3, $page, $topic); // bottom blocks
// Print Google-like paging navigation under the stories
if (empty($topic)) {
$base_url = $_CONF['site_url'] . '/index.php';
if ($newstories) {
$base_url .= '?display=new';
}
} else {
$base_url = $_CONF['site_url'] . '/index.php?topic=' . $topic;
}
$display .= COM_printPageNavigation($base_url,$page, $num_pages);
12
12
Quote
Status: Banned
machinari
Forum User
Full Member
Registered: 03/22/04
Posts: 1512
just remember that this code relies on variables that need to be set before the code is to run. so it's not just the page nave code that needs to be copied, but some of the sql before it as well... You'll have to investigate to see exactly what needs to be done there.
6
10
Quote
All times are EST. The time is now 08:31 pm.
- Normal Topic
- Sticky Topic
- Locked Topic
- New Post
- Sticky Topic W/ New Post
- Locked Topic W/ New Post
- View Anonymous Posts
- Able to post
- Filtered HTML Allowed
- Censored Content