OK Kobra, I hate to install a full module that has many coding changes. Even with merging, I am not sure I can do it; my file is much different than the plugins. It seems like a lot to change 2 simple images. I was thinking I can find this code and make the change. It sounds easier to me.
In looking at my source code I found the english file at: /includes/languages/MyTemplate/english.php around lines #286 and #287. For now I changed the text.
define('PREVNEXT_BUTTON_PREV', 'Previous');
define('PREVNEXT_BUTTON_NEXT', 'Next');
I know this is the defining code because the text changed where I wanted it to change. Looking up the: PREVNEXT_BUTTON_NEXT in my Developers toolkit I found several hits. But only one made sense and this is the code:
Code:
/MyRoot/includes/classes/split_page_results.php
Line #109 : if ($this->current_page_number > 1) $display_links_string .= '<a href="' . zen_href_link($_GET['main_page'], $parameters . $this->page_name . '=' . ($this->current_page_number - 1), $request_type) . '" title=" ' . PREVNEXT_TITLE_PREVIOUS_PAGE . ' ">' . PREVNEXT_BUTTON_PREV . '</a> ';
In the same file I found this:
Code:
Line #134 : if (($this->current_page_number < $this->number_of_pages) && ($this->number_of_pages != 1)) $display_links_string .= ' <a href="' . zen_href_link($_GET['main_page'], $parameters . 'page=' . ($this->current_page_number + 1), $request_type) . '" title=" ' . PREVNEXT_TITLE_NEXT_PAGE . ' ">' . PREVNEXT_BUTTON_NEXT . '</a> ';
This is the code that displays these buttons right? All I need to do is get my image locations in these areas to display my images? I am a little unsure as to how to put html image code in this PHP.