Pagination suffix & reuse_query_string problem |
Hi everyone.
I'm having trouble with CI pagination class. My URL looks like: http://domain.com/chapter/2?var=value#anchor, where 2 is a number of a page added by pagination class. I want my pagination to use #anchor suffix each time when user selects another page and also I need to keep query string ?var=value. As I can see in the manual I need to use: Code: $config['reuse_query_string'] = TRUE; But when I'm trying to set config in such a way, my pagination links redirecting users to: http://domain.com/chapter/2#anchor?var=value instead of http://domain.com/chapter/2?var=value#anchor. I can't understand why it's happening ![]() Could anyone, please, give me an advice? Thanks in advance! |
Messages In This Thread |
Pagination suffix & reuse_query_string problem - by raudibard - 09-07-2016, 11:55 AM
RE: Pagination suffix & reuse_query_string problem - by PaulD - 09-07-2016, 12:39 PM
RE: Pagination suffix & reuse_query_string problem - by raudibard - 09-07-2016, 12:50 PM
RE: Pagination suffix & reuse_query_string problem - by PaulD - 09-07-2016, 01:14 PM
RE: Pagination suffix & reuse_query_string problem - by raudibard - 09-07-2016, 01:50 PM
RE: Pagination suffix & reuse_query_string problem - by raudibard - 09-09-2016, 04:29 PM
RE: Pagination suffix & reuse_query_string problem - by PaulD - 09-09-2016, 04:50 PM
RE: Pagination suffix & reuse_query_string problem - by raudibard - 09-09-2016, 05:43 PM
RE: Pagination suffix & reuse_query_string problem - by Diederik - 09-09-2016, 07:30 PM
|