Skip to content
Advertisement

Codeigniter 4 Pagination is working, however, my bootstrap 4 template for pagination is not

I am using CI4. I have successfully implemented pagination. I have 9 posts and have used ‘3’ to paginate and therefore 3 pages. Everything works well but the css is terrible. Here is a pict of the pagination. Not the page count which is correct.

enter image description here

I therefore was to add boostrap 4 css to CI’s pagination. When I add boostrap 4’s pagination, it only show 1 page. The css is in bs4 formatting but the page just shows ‘1’. Here is a pict:

enter image description here

This is my controller:

JavaScript

This is my view file (I have shortened it, of course). $pager->links() will display the right number of pages but when I add the bootstrap 4 template, like below, it only displays one page.

JavaScript

and this is my bootstrap4_pagination template;

JavaScript

Advertisement

Answer

You’ve specified that you want to use the bootstrap group:

<?= $pager->links('bootstrap', 'bootstrap4_pagination'); ?>

But you’re not creating a bootstrap group:

$this->data['posts'] = $this->PostModel->getPostsByCategory($post_category_id, $category_is_published, $post_is_published, $pagination )->paginate(3);

This should be:

$this->data['posts'] = $this->PostModel->getPostsByCategory($post_category_id, $category_is_published, $post_is_published, $pagination )->paginate(3, 'bootstrap');

Alternatively you could leave out the group and replace bootstrap with default:

<?= $pager->links('default', 'bootstrap4_pagination'); ?>

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement