PDA

View Full Version : about multipage option


jomart
10-14-2016, 02:10 PM
hi
I'm designing new jquery page navigation style as above screen :

https://vborg.vbsupport.ru/attachment.php?attachmentid=155389&stc=1&d=1476497065


i need to remove the dots between pages buttons in default style like this:
https://vborg.vbsupport.ru/attachment.php?attachmentid=155391&stc=1&d=1476497333

i don't remember where exactly to disable this feature in option settings
thanks in advanced

MarkFL
10-15-2016, 06:41 AM
Create a plugin hooked at "parse_templates" with the code:

if (in_array(THIS_SCRIPT, array('forumdisplay', 'showthread', 'search')))
{
$template_hook['headinclude_css'] .= '<style>.pagination .separator, .pagination .elipsis { display: none;}</style>';
}