tobineliasart Posted September 11 Share Posted September 11 Site URL: https://www.vancouverpride.ca/performers-draft?rq=performers-draft There are 2 blog pages on my client's website; one is a typical blog ("Blog A"), whereas the other one is being used to display performers ("Blog B"). I would like to change the pagination on Blog B without it affecting Blog A. Currently, the pagination on both blogs read as "Older Posts" and "Newer Posts", and I would like the pagination on Blog B to instead read as "View More Performers" or simply note the page number. How do I code this? Link to Performer Blog "Blog B": https://www.vancouverpride.ca/performers-draft?rq=performers-draft Link to comment
tuanphan Posted September 16 Share Posted September 16 You mean rename both text to "View More Performers"? tobineliasart 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
tobineliasart Posted September 20 Author Share Posted September 20 Yes, although I'm realizing that might be a bit confusing to keep track of pages as the performers list grows over time. Alternatively, it might be better to change the pagination to "Next Page" and "Previous Page" across all blogs. Are you able to help with that instead? Link to comment
tuanphan Posted September 23 Share Posted September 23 On 9/21/2024 at 1:07 AM, tobineliasart said: Yes, although I'm realizing that might be a bit confusing to keep track of pages as the performers list grows over time. Alternatively, it might be better to change the pagination to "Next Page" and "Previous Page" across all blogs. Are you able to help with that instead? You can use this to Website Tools > Custom CSS /* blog pagination */ .item-pagination[data-collection-type^="blog"] h2 { visibility: hidden; } a.item-pagination-link.item-pagination-link--next h2:after { content: "next page"; visibility: visible; } .item-pagination-link--prev h2:before { content: "prevous page"; visibility: visible; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
tobineliasart Posted September 23 Author Share Posted September 23 11 hours ago, tuanphan said: You can use this to Website Tools > Custom CSS /* blog pagination */ .item-pagination[data-collection-type^="blog"] h2 { visibility: hidden; } a.item-pagination-link.item-pagination-link--next h2:after { content: "next page"; visibility: visible; } .item-pagination-link--prev h2:before { content: "prevous page"; visibility: visible; } This worked on the blog post pages, but I'd like to do this on the overall blog page that lists all of the blog posts. Link to comment
tuanphan Posted September 25 Share Posted September 25 On 9/24/2024 at 6:14 AM, tobineliasart said: This worked on the blog post pages, but I'd like to do this on the overall blog page that lists all of the blog posts. Both links don't work now. Can you check again? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
tobineliasart Posted September 25 Author Share Posted September 25 7 hours ago, tuanphan said: Both links don't work now. Can you check again? Apologies, things have been changing around quickly on the site to get pages published. Here is the new link: https://www.vancouverpride.ca/performers?rq=performers Here is the area I'm referring to that I would like to change the pagination for: Link to comment
tuanphan Posted September 28 Share Posted September 28 On 9/26/2024 at 12:46 AM, tobineliasart said: Apologies, things have been changing around quickly on the site to get pages published. Here is the new link: https://www.vancouverpride.ca/performers?rq=performers Here is the area I'm referring to that I would like to change the pagination for: Use CSS code like this span.next-label { font-size: 0; } span.next-label:before { content: "previous page"; font-size: 16px; } span.prev-label { font-size: 0; } span.prev-label:before { content: "next page"; font-size: 16px; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment