I create pagination with code bellow:
$pagination_args = array(
'base' => @add_query_arg('paged','%#%'),
'format' => '?page=%#%',
'total' => ceil( $ListRow / $page_limit ),
'current' => $current,
'show_all' => False,
'prev_next' => True,
'prev_text' => __('«'),
'next_text' => __('»'),
'type' => 'plain',
'add_args' => False
);
if ( paginate_links ( $pagination_args ) ) {
echo paginate_links ( $pagination_args ) ;
}
it only display plain number.
How i can display it using DWGamez pagination like bellow:
https://drive.google.com/file/d/0B2FvZsMuMiDbODd2MGtDR0R4a2c/view?usp=sharing
Hi, You can send me your site for further checking.
The site is still in localhost. i think it wont available on public
Hi,
It’s not easy to suggest the best solution to you. We have to directly check your site to know exactly what happens inside of the site.
By default, the DW Gamez supported the pagination function. In case you want to show it at different locations, please copy/paste the following PHP code into the place you want.
<!–?php dw_gamez_pagenavi( ‘
<?php dw_gamez_pagenavi( '<i class="icon-angle-left"></i>', '<i class="icon-angle-right"></i>' ); ?>
Plus I can provide you the main.css, just find our line 2446 to line 2505
URL: http://snippi.com/s/1nwndxe
Hope this helps !
Please login or Register to submit your answer