• I am using wp tiles template code on my homepage to pull images from all posts in a specific category and display 4 of them at the bottom of my homepage.

    Unfortunately, something isn’t working correctly and I’m unable to smoothly scroll to the bottom of the page. with the wp tiles code active.

    <?php
    
    $query = new WP_Query(array(
    'post_type' => 'post',
    'posts_per_page' => 4,
    'paged' => 1,
    'orderby'=> rand,
    ) );
    // WP Tiles arguments
    $args = array(
    'grids' => plain,
    'images_only' => true,
    'link'            => 'none' //post|thickbox|attachment|none
    
    );
    // Display the tiles
    the_wp_tiles( $query, $args );
    ?>

    If I remove the code I can scroll to the bottom of the page without issue.

    The site is at https://defylife.co.uk

    https://www.ads-software.com/plugins/wp-tiles/

Viewing 1 replies (of 1 total)
  • Has a solution been found for this issue? I experience exactly the same when viewing the site in maximized view / full window.

    After decreasing the window of the browser and maximizing it again, the scroll bar is seen and one can scroll on the page.

    Many thanks in advance!

    • This reply was modified 7 years, 8 months ago by idioost.
Viewing 1 replies (of 1 total)
  • The topic ‘WP tiles template code scrolling problems’ is closed to new replies.