There are no errors and however I've modified only 4 words in the frontend section.
In attach there is my file
====
Are you sure about this?
I've modified the English language file and I see always the original text.
I've modified the file tmpl/list/default.php and I see my text
Encountered a small issue with the table of contents when on the main article page. All articles links were pointing to [article]/Page-1.
Tracked it down to missing &limit=1 in url (to limit the display of items to one)
So by modifying line 165 of UberPageBreak.php from
$output->links[$key]->pagelink = JRoute::_('&showall=&limitstart='.($i-1));
to
$output->links[$key]->pagelink = JRoute::_('&showall=&limit=1&limitstart='.($i-1));
the issue was resolved! :)
Hope it helps others that encounter this problem.
Thanks for the great plugin
to Jake: I had the same problem. Joomla does not like the capital letters in the language file name. If you change en-GB.plg_content_UberPageBreak.ini to en-GB.plg_content_uberpagebreak.ini it will work as expected.
I have installed the zip file and now page break works in my Joomla 2.5 with K2. However, in K2 I have a default image for my article which appears on my homepage. Now the problem is that this image appears on every page as well and I want to only have it appear for the first page which is the latest news. For the older news, I have other pictures related to them.
I am not very good with php coding. Does anyone know how to make it so? Thank you.