Hi info1,
You should have better explained this. We're really sorry that this is not the exact solution you were waiting for. However I think you can use the "Title Only" layout and there will not be any issues related to numbers. You'll have two buttons with next and previous page titles.
Also please add some image which may show the exact view of pagination button you're talking about. We may add it in next version if that's not very complicated.
Hi Tom,
The "Title Only" method would work for people that give a custom title to their pages.
If I try to title item "previous" and "next", that is not a solution because I won't be able to get "previous" and "next" display on each and every page.
Would love an option to display only "previous" and "next".
Basically, instead of the:
10 2
that I described earlier, I would like to get:
previous next
(which to lead to '10' and '2', when you are on page '1').
Can we get this, please?
Thanks,
Mihai
Ok, so you only want have “previous” and “next” words in displayed two buttons accordingly, right?
Hi Tom,
Is there any chance for the "Previous" and "Next" link labels feature?
Thanks,
Mihai
Hi Tom,
Sorry, I didn't notice your feedback on this 2nd sub-page.
Yes, all I want is to display the labels 'previous' and 'next' where you now could have the previous or next page numbers.
Basically, the links are good, but instead of those numbers I want the text "previous" and "next".
Thanks,
Mihai
Hi Tom,
Is there any chance for this?
Thanks,
Mihai
Basically, the links are good, but instead of those numbers I want the text “previous” and “next”.
There are button titles with numbers, what about those? I don't see what you mean, which one is the correct?
1) [Prev | subPage X Title] [ subPage Y Title | Next ]
2) [Prev] [Next]
The problem with button titles, is that if I use them, I should label each subpage with a unique name.
I cannot label them as "previous" or "next" because I won't be able to navigate from a sub-page to another and always see there on the page written:
previous | next
What I want is 2) from your sample.
Basically, so far you coded the ability to get something like this:
"10 2"
which gets displayed on my 1st page on page which has 10 sub-pages.
so it calculated which is the previous one (10) and which is the next one (2).
it also provides the proper URLs behind those labels.
however, what I want instead of the numbers ("10" and "2") in the sample above is to get the text:
"previous next"
Do you see what I mean?
Thanks,
Mihai
Rather than insisting to explain it, I decided to patch it myself.
What I did was to patch this file:
/advanced-content-pagination/buttons_layouts/page_reload/prev_next/button_layout_3.php
And basically change:
$buttons .= '<div class="acp_page_number">' . $prev_shortcode_url_page . '</div>';
into:
$buttons .= '<div class="acp_page_number">previous</div>';
and:
$buttons .= '<div class="acp_page_number">' . $next_shortcode_url_page . '</div>';
into:
$buttons .= '<div class="acp_page_number">next</div>';
You may like to make this possible in the next version.
If you decide to do that, make sure to do it for all the button layouts, as well as for both the 'page_reload' and 'ajax_load' files.
Many thanks,
Mihai