Remove Pagination Collection Page

Solved

Remove Pagination Collection Page

martujv
Trailblazer
232 2 46

Hello! I want to remove the pagination (the text saying "You're viewing x of x products") from the bottom of the collection page, both on mobile and desktop.

 

Image reference: Captura de pantalla 2024-05-03 a las 10.27.46.png

 

My theme is Stiletto and my web is www.winnerofficial.com/collections/ss2024

 

I tried many codes but they don't work!

Accepted Solutions (2)

Dan-From-Ryviu
Shopify Partner
11374 2229 2404

This is an accepted solution.

Hi @martujv 

You can remove it by adding this code to theme.liquid file, after <head> in Online Store > Themes > Edit code 

<style>
.collection__main-area .pagination { display: none !important; }
</style>

Best Regards,

Dan from Ryviu

- Found this helpful? Hit "Like" and "Accept as Solution"! Support me: Donate!
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
Built for Shopify

Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

View solution in original post

niraj_patel
Shopify Partner
2391 516 515

This is an accepted solution.

Hello @martujv 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
 .pagination {
     display: none !important;
  }
</style>

techlyser_web_0-1714725417231.png

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com

View solution in original post

Replies 2 (2)

Dan-From-Ryviu
Shopify Partner
11374 2229 2404

This is an accepted solution.

Hi @martujv 

You can remove it by adding this code to theme.liquid file, after <head> in Online Store > Themes > Edit code 

<style>
.collection__main-area .pagination { display: none !important; }
</style>

Best Regards,

Dan from Ryviu

- Found this helpful? Hit "Like" and "Accept as Solution"! Support me: Donate!
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
Built for Shopify

Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

niraj_patel
Shopify Partner
2391 516 515

This is an accepted solution.

Hello @martujv 

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
 .pagination {
     display: none !important;
  }
</style>

techlyser_web_0-1714725417231.png

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com