Forum Support

Shape 5
March 28, 2024, 03:35:12 AM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News: Shape 5 Forum
 
   Home   Help Search Login Register  
Pages: [1]
  Print  
Author Topic: Not showing navigation  (Read 1098 times)
debcampos
Jr. Member
**
Offline Offline

Posts: 96



« on: December 06, 2012, 02:25:31 PM »

My articles are not showing the navigation below and neither the category links below as well. I already changed the setting to show navigation and category on the global settings and on the menu settings.Please help?
« Last Edit: December 06, 2012, 02:33:19 PM by debcampos » Logged
mikenicoll
Global Moderator
*****
Offline Offline

Posts: 20162



WWW
« Reply #1 on: December 06, 2012, 06:51:20 PM »

Just to confirm you have navigation enabled on the active menu (home etc) as well as the category / articles themselves? If you do any it is still not showing it is possible a negative margin might be hiding them.

I would need Joomla SuperUser access to take a closer look if all those settings above have been checked.

-Mike
Logged

Mike Nicoll
------------
Shape 5 Team

- Need a great host for your website? We highly recommend siteground.com!


- Put your trust in the hands of our extremely qualified staff to get your job done right!


- Firebug is the most powerful web development and debugging tool, and it will save you a lot of time, frustration and forum questions:
Install Firebug
debcampos
Jr. Member
**
Offline Offline

Posts: 96



« Reply #2 on: December 07, 2012, 11:43:05 AM »

Hi, yes all of those are enabled! I am sending you the login info ok.
Logged
mikenicoll
Global Moderator
*****
Offline Offline

Posts: 20162



WWW
« Reply #3 on: December 10, 2012, 07:48:48 PM »

Replied
Logged

Mike Nicoll
------------
Shape 5 Team

- Need a great host for your website? We highly recommend siteground.com!


- Put your trust in the hands of our extremely qualified staff to get your job done right!


- Firebug is the most powerful web development and debugging tool, and it will save you a lot of time, frustration and forum questions:
Install Firebug
debcampos
Jr. Member
**
Offline Offline

Posts: 96



« Reply #4 on: December 25, 2012, 02:38:13 PM »

Hi Mike, sorry for the delay, The problem that I am having is that I cannot see the the "previous" and "next" article arrow at the bottom of each article in a category. That way a reader can just click to read the next article instead of having to go back on the category to find the next article.

I just sent you a PM with my login info again. Thank you so much!
Logged
debcampos
Jr. Member
**
Offline Offline

Posts: 96



« Reply #5 on: January 04, 2013, 01:01:14 PM »

Hi again, i did get your PM reply, but you are actually talking about the pagination, and i was talking about the navigation in the articles options.

I want to show my category in a List style. My navigation is set to show in all articles, in the global and on each article, and on the menu articles options but it still doesn't show. Please check the files attached as they show how a category list and articles in it can show. I believe there is something wrong with the template.css or something else.

The navigation will show a "previous" and "next" link at the bottom of each article to connect articles from a same category.

Please help? I will PM you my login info.
« Last Edit: January 04, 2013, 01:28:48 PM by debcampos » Logged
mikenicoll
Global Moderator
*****
Offline Offline

Posts: 20162



WWW
« Reply #6 on: January 07, 2013, 05:04:37 PM »

Hello,

If you are talking about the next and previous links those will only show if there are other articles in the same category, and the article is set to show navigation, the category global config is set to show navigation and the menu item of that category is set to show navigation. The template doesn't control any of these functions they are output into the article through the Joomla core. Check those options to make sure they are all enabled.

-Mike
Logged

Mike Nicoll
------------
Shape 5 Team

- Need a great host for your website? We highly recommend siteground.com!


- Put your trust in the hands of our extremely qualified staff to get your job done right!


- Firebug is the most powerful web development and debugging tool, and it will save you a lot of time, frustration and forum questions:
Install Firebug
debcampos
Jr. Member
**
Offline Offline

Posts: 96



« Reply #7 on: January 07, 2013, 07:17:39 PM »

Hi Mike, yes I have all of those above enabled and my category has several articles but still wont show. Is this something to do with the com_content component?

Thank you!
Logged
debcampos
Jr. Member
**
Offline Offline

Posts: 96



« Reply #8 on: January 07, 2013, 07:48:55 PM »

I did some research and i found help on this article http://forum.joomla.org/viewtopic.php?p=2727623
It is a problem with the template at the /templates/hexicon_gamer/html/com_content/article/default.php

The pagination code is missing at the bottom. I got it from the beez5 template templates/beez5/html/com_content/article/default.php  and inserted at the end of the templates/hexicon_gamer/html/com_content/article/default.php  and now my navigation links are showing at the bottom of the articles.

I replaced
Code:
       <?php echo $this->item->text?>

<?php echo $this->item->event->afterDisplayContent?>

with

Code:
<?php if (isset($urls) AND ((!empty($urls->urls_position) AND ($urls->urls_position=='0')) OR  ($params->get('urls_position')=='0' AND empty($urls->urls_position) ))
OR (empty($urls->urls_position) AND (!$params->get('urls_position')))): ?>


<?php echo $this->loadTemplate('links'); ?>
<?php endif; ?>
<?php  if (isset($images->image_fulltext) and !empty($images->image_fulltext)) : ?>
<?php $imgfloat = (empty($images->float_fulltext)) ? $params->get('float_fulltext') : $images->float_fulltext?>

<div class="img-fulltext-"<?php echo htmlspecialchars($imgfloat); ?>">
<img
<?php if ($images->image_fulltext_caption):
echo 'class="caption"'.' title="' .htmlspecialchars($images->image_fulltext_caption) .'"';
endif; ?>

src="<?php echo htmlspecialchars($images->image_fulltext); ?>" alt="<?php echo htmlspecialchars($images->image_fulltext_alt); ?>"/>
</div>
<?php endif; ?>
<?php
if (!empty($this->item->pagination) AND $this->item->pagination AND !$this->item->paginationposition AND !$this->item->paginationrelative):
echo $this->item->pagination;
 endif;
?>

<?php echo $this->item->text?>
<?php
if (!empty($this->item->pagination) AND $this->item->pagination AND $this->item->paginationposition AND!$this->item->paginationrelative):
 echo $this->item->pagination;?>

<?php endif; ?>

<?php if (isset($urls) AND ((!empty($urls->urls_position)  AND ($urls->urls_position=='1')) OR ( $params->get('urls_position')=='1') )): ?>

<?php echo $this->loadTemplate('links'); ?>
<?php endif; ?>
<?php
if (!empty($this->item->pagination) AND $this->item->pagination AND $this->item->paginationposition AND $this->item->paginationrelative):
 echo $this->item->pagination;?>

<?php endif; ?>
<?php echo $this->item->event->afterDisplayContent?>
</article>
« Last Edit: January 07, 2013, 07:53:22 PM by debcampos » Logged
mikenicoll
Global Moderator
*****
Offline Offline

Posts: 20162



WWW
« Reply #9 on: January 08, 2013, 05:59:39 PM »

Hello,

Thanks for posting the update. I have sent a reference to this thread to the template developer who will take a look at your findings.

-Mike
Logged

Mike Nicoll
------------
Shape 5 Team

- Need a great host for your website? We highly recommend siteground.com!


- Put your trust in the hands of our extremely qualified staff to get your job done right!


- Firebug is the most powerful web development and debugging tool, and it will save you a lot of time, frustration and forum questions:
Install Firebug
debcampos
Jr. Member
**
Offline Offline

Posts: 96



« Reply #10 on: January 08, 2013, 07:13:03 PM »

No problem, thanks for your help though!! Grin
Logged
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF | SMF © 2013, Simple Machines
Joomla Bridge by JoomlaHacks.com
Valid XHTML 1.0! Valid CSS!
Looking for the largest variety in template designs? Look no more. Never buy 1 theme again. Signups start at just $89 for access to all of our themes.
Send Us An Email
Please send us your questions and we will email you back as soon as we can. Product support questions should be posted in our support forums under the Help menu. Our staff will assist you from there.