Problem: Installed the hemingwayEx theme. Looks great, but the pagination doesn’t work well without the custom hemingwayEx pagination plugin. I got that installed. The hemmingwayEx theme looks cool when it displays two posts per page. The plugin worked well except that for my other two themes, displayed two posts per page. I posted a topic at WordPress Forums. No results.
Solution: Just at the beginning of the hemingwayEx theme, I modified it to create a cookie, like this:
<?php if(!isset($_COOKIE["wptheme" . COOKIEHASH])) { $expire=time()+3600; $ctheme="hemingwayEx"; setcookie("wptheme".COOKIEHASH, stripslashes($ctheme), $expire); } ?>