Skip to content

Instantly share code, notes, and snippets.

@jneubauer
Created June 30, 2012 20:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jneubauer/3025457 to your computer and use it in GitHub Desktop.
Save jneubauer/3025457 to your computer and use it in GitHub Desktop.
JFoobar item titles
in /components/com_yourcomponent/views/yourcomponents/tmpl/default.php on line 34:
change:
<?php echo $this->escape($item->title); ?>
to:
<a href="index.php?option=com_flashcards&view=flashcard&id=<?php echo $item->id; ?>"><?php echo $this->escape($item->title); ?></a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment