Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
// define("PLOGGER_EMBEDDED","") // 1/0 (True/False) if set will overrule automatic check
change to:define("PLOGGER_EMBEDDED","1"); // 1/0 (True/False) if set will overrule automatic check
if ($config['embedded'] == 0) {
$next_link = '<a id="next-button" accesskey="." href="'.$next_url.'#prev-button">' . plog_tr('Next') . ' »</a>';
} else {
$next_link = '<a id="next-button" accesskey="." href="'.$next_url.'">' . plog_tr('Next') . ' »</a>';
}
and change to://if ($config['embedded'] == 0) {
// $next_link = '<a id="next-button" accesskey="." href="'.$next_url.'#prev-button">' . plog_tr('Next') . ' »</a>';
//} else {
$next_link = '<a id="next-button" accesskey="." href="'.$next_url.'">' . plog_tr('Next') . ' »</a>';
//}
if ($config['embedded'] == 0) {
$prev_link = '<a id="prev-button" accesskey="," href="'.$prev_url.'#next-button">« ' . plog_tr('Previous') . '</a>';
} else {
$prev_link = '<a id="prev-button" accesskey="," href="'.$prev_url.'">« ' . plog_tr('Previous') . '</a>';
}
and change to://if ($config['embedded'] == 0) {
// $prev_link = '<a id="prev-button" accesskey="," href="'.$prev_url.'#next-button">« ' . plog_tr('Previous') . '</a>';
//} else {
$prev_link = '<a id="prev-button" accesskey="," href="'.$prev_url.'">« ' . plog_tr('Previous') . '</a>';
//}
1 to 2 of 2