Louis

Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • in reply to: Mobile Layout 0.9.9.1 #39259
    Louis
    Participant

    Thanks for the follow up, I like this theme.
    Will try the upgrade later and see how it goes.

    in reply to: Pagination missing? #38842
    Louis
    Participant

    Got it to work for now. Maybe not a pretty solution due to my very limited PHP skills.

    For who might be interested. Created a modified version of “template-page-with-intro”template. After changing the loop from:
    $the_query = new WP_Query(....
    into:
    query_posts(....
    and from:
    while ( $the_query->have_posts() ) : $the_query->the_post();
    into:
    while ( have_posts() ) : the_post();
    seems to made it work

    Hopefully somebody else with experience in PHP will create a cleaner solution.

    • This reply was modified 7 years ago by Louis.
    • This reply was modified 7 years ago by Louis.
Viewing 2 posts - 1 through 2 (of 2 total)