For that you need to put the Event plugin of the karma on top of the plugin for paginating the archives.
All event plugins get executed in the order the are arranged in the plugin section, so currently the next/previous entry is included before the karma plugin can print the Exit-Link. If you rearrange it, it should be well.
HTH,
Garvin
top exits and top referrers
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
For showing the "Exits" correctly in the entries overview, I had to do a fix.
Find this:
in the karma plugin file, and replace it with:
(so just add the "global $serendipity;".
HTH,
garvin
Find this:
Code: Select all
function prepareExits($entries, $get = false) {
static $exits = null;
Code: Select all
function prepareExits($entries, $get = false) {
static $exits = null;
global $serendipity;
HTH,
garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/