So this turned out to be harder than I thought, and I know the solution is optimum because while the next/previous links will work in Hybid mode it doesn't cache the post so the entire page reloads.
It worked!!! You rock! Thank you SO much :up:
--------------- Added [DATE]1498990892[/DATE] at [TIME]1498990892[/TIME] ---------------
Quote:
Originally Posted by BirdOPrey5
So this turned out to be harder than I thought, and I know the solution is optimum because while the next/previous links will work in Hybid mode it doesn't cache the post so the entire page reloads.
What you need to do is edit showthread.php file.
Find the line:
Code:
if ($threadedmode == 2) // hybrid display mode
And "comment it out" (make it)
Code:
//if ($threadedmode == 2) // hybrid display mode
then find the line
Code:
else // threaded display mode
and comment it out too...
Code:
//else // threaded display mode
Then save changes. (Maybe backup the original file first.)
In my testing the next/previous worked in Hybrid mode after these changes.
Oh dear. Next/previous worked great but unfortunately it duplicated all the posts in the thread creating a mirror copy underneath with the exact same post ids.
Also, when I retraced my steps to see if I'd done something wrong, I noticed there are two lines of
Code:
if ($threadedmode == 2) // hybrid display mode
one on line 1355 and one on line 1606
and two lines of
Code:
else // threaded display mode
one on line 1405 and one on line 1610
Can you please clarify which lines I should comment out in case that's what caused the duplication? The combinations I tried either duplicated all the posts or gave me errors.
I'm so sorry for coming back with a problem. Thanks for taking your time to help me. I really appreciate it.