Keyword

Removing # "1" in Article Header

  • Ronnie
  • Ronnie's Avatar Topic Author
  • Offline
  • New Member
More
12 years 6 months ago - 12 years 6 months ago #63864 by Ronnie
Removing # "1" in Article Header was created by Ronnie
Hello,

Does anyone know how to remove the "1" that is beside every article I publish?. It was originally beside the date and time of the post which I already removed using the settings.



File Attachment:

File Name: category_item.zip
File Size:3 KB



Thanks!
Racking my brain trying to figure this one out.

Joomla 2.5 and K2 2.5.5
Attachments:

Please Log in or Create an account to join the conversation.

More
12 years 6 months ago #63865 by william white
Replied by william white on topic Re: Removing # "1" in Article Header
There was another post here about the 1.
use firebug and see if its just a "1"
search your override file for the instance of "1"
before it was just html in the item.php file

Please Log in or Create an account to join the conversation.

  • Ronnie
  • Ronnie's Avatar Topic Author
  • Offline
  • New Member
More
12 years 6 months ago #63866 by Ronnie
Replied by Ronnie on topic Re: Removing # "1" in Article Header
Yeah I saw that post looking for an answer. I looked and did not find anything.

Should I be looking in com_k2 item.php or somewhere else? I looked through all the modules too.

it does it in the beez as well.

Thought it was a template problem. Had many issues with other templates before.

Please Log in or Create an account to join the conversation.

  • Ronnie
  • Ronnie's Avatar Topic Author
  • Offline
  • New Member
More
12 years 6 months ago #63867 by Ronnie
Replied by Ronnie on topic Re: Removing # "1" in Article Header
I also noticed there are multiple folders with item.php in the com_k2 folder

not seeing anything in them with "1"

controllers/
templates/default
models/
views/items/tmpl

Please Log in or Create an account to join the conversation.

More
12 years 6 months ago #63868 by william white
Replied by william white on topic Re: Removing # "1" in Article Header
I would try root/templates/default/item.php
or root/templates/html/com_k2/youroverridename/item.php

Please Log in or Create an account to join the conversation.

  • Ronnie
  • Ronnie's Avatar Topic Author
  • Offline
  • New Member
More
12 years 6 months ago #63869 by Ronnie
Replied by Ronnie on topic Re: Removing # "1" in Article Header
Ok using firebug and looking through each folder using coda I found this

root/components/com_k2/templates/item.php
Log in  or Create an account to join the conversation.

  • Ronnie
  • Ronnie's Avatar Topic Author
  • Offline
  • New Member
More
12 years 6 months ago #63870 by Ronnie
Replied by Ronnie on topic Re: Removing # "1" in Article Header
I guess support is shot. anyone out there?

Seen numerous post go unanswered by other users as well.

Bummer because i Really like all the k2 features!

Please Log in or Create an account to join the conversation.

More
12 years 6 months ago #63871 by william white
Replied by william white on topic Re: Removing # "1" in Article Header
This is a community support forum in which many people participate. At present there is not a pm system. It is very difficult to troubleshoot some problems, if they cannot be eaisly duplicated.
If you care to email an akeeba jpa file or access to your site, feel free to and i will take a look when time permits, as i have not seen this in any of my installs. email is in profile info

Please Log in or Create an account to join the conversation.

More
12 years 5 months ago #63872 by DJ Enterprises
Replied by DJ Enterprises on topic Re: Removing # "1" in Article Header
Im getting the exact same thing.

Clean installs
ver
k2 2.5.6
joomla 2.5.4

Unistalled reinstalled same thing. Firebug shows it but no where to be found.

Is it an event thats triggering it?

Please Log in or Create an account to join the conversation.

More
12 years 5 months ago - 12 years 5 months ago #63873 by DJ Enterprises
Replied by DJ Enterprises on topic Re: Removing # "1" in Article Header
Found the solution error in the code:

<!-- Plugins: AfterDisplayTitle -->
<?php echo $this->item->event->AfterDisplayTitle; ?>

<!-- K2 Plugins: K2AfterDisplayTitle -->
<?php echo $this->item->event->K2AfterDisplayTitle; ?>


<!-- Plugins: AfterDisplayTitle -->
<?php echo $this->item->event->K2AfterDisplayTitle; ?>

<!-- K2 Plugins: K2AfterDisplayTitle -->
<?php echo $this->item->event->K2AfterDisplayTitle; ?>

Add the word "K2" before "AfterdisplayTitle"

In
/components/com_k2/templates/default/item.php

Please Log in or Create an account to join the conversation.