No Article Title showing up

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Mon Sep 08, 2014 2:43 am
Reply with quote
Report this post
I have notices that with article pages although I have the article title to show none is there unless I actually type it into the article page. How can I fix this so the article title is showing up in this template.

Thank you
User avatar
Junior Boarder

GK User
Mon Sep 08, 2014 9:52 am
Reply with quote
Report this post
Hi,
check Option settings in Article Manager.
this can be also set in Menu Manager - menu item - depends where the new articles are assigned to.
User avatar
Platinum Boarder

GK User
Thu Sep 11, 2014 1:59 am
Reply with quote
Report this post
Hello I check both these and they are on but still no article title showing up.

Thank you

Renae
User avatar
Junior Boarder

GK User
Thu Sep 11, 2014 11:23 pm
Reply with quote
Report this post
Hmm,
on my demo page I see titles from demo content,
so it's not fault of template.

Last question:
We talk about default Joomla articles or K2 items ?
User avatar
Platinum Boarder

GK User
Sun Oct 19, 2014 2:31 pm
Reply with quote
Report this post
I was also having the same issue.

I am talking about Content article here, not K2.

Issue: When I click a Content article it opens the page but doesn't display the header anymore when opens the page. It shows all other info though.

If I select "No" to Linked Titles from the Article Manager Options then it shows the article title when I open the content page.

Is there any better solution for this?
User avatar
Junior Boarder

GK User
Tue Jan 06, 2015 11:30 pm
Reply with quote
Report this post
I have the same problem, I've updated the template and doesn't works. Did you fix it?

Isma
User avatar
Fresh Boarder

GK User
Wed Jan 07, 2015 12:15 am
Reply with quote
Report this post
gravitoso wrote:I have the same problem, I've updated the template and doesn't works. Did you fix it?

Isma


I've searching and found the solution. The code in the %template_name%/html/com_content/default.php don't close the <a> tag. The code must be read like this:

Code: Select all
<h1 itemprop="name">
<?php if ($params->get('link_titles') && !empty($this->item->readmore_link)) : ?>
<a href="<?php echo $this->item->readmore_link; ?>" itemprop="url">
<?php echo $this->escape($this->item->title); ?>
</a>
<?php else : ?>
<?php echo $this->escape($this->item->title); ?>
<?php endif; ?>
</h1>


Regards.
User avatar
Fresh Boarder


cron