Blog Posts page displaying Blank White Screen on mobile/Pro Integrity

Hi,

My blog posts page does not show on mobile using the masonry layout. It instead shows a plain white background and no posts. In standard mode the posts appear, but only 4 posts and no pagination to show other posts. Pagination in standard mode does not show on desktop either. If I keep it in standard more how can I get the pagination to appear?

Hey There,

Thanks for writing in!

Before anything else, I urge you to check this article first to know the correct way of using the HTML tags:

And more important, please check this as well:

I have investigated and I noticed that you have a bunch of code in the wp-header.php file.

  • See the secure note for the codes

Be advised that the contents of that file should only be this:

<?php

// =============================================================================
// VIEWS/INTEGRITY/WP-HEADER.PHP
// -----------------------------------------------------------------------------
// Header output for Integrity.
// =============================================================================

x_get_view( 'global', '_header' );
x_get_view( 'global', '_slider-above' );
?><header class="<?php x_masthead_class(); ?>" role="banner"><?php
x_get_view( 'global', '_topbar' );
x_get_view( 'global', '_navbar' );
x_get_view( 'integrity', '_breadcrumbs' );
?></header><?php
x_get_view( 'global', '_slider-below' );
x_get_view( 'integrity', '_landmark-header' );

If you want to add codes to the site header, we highly encourage to use the Snippet plugin or the Insert Headers and Footers plugin. This is to make the management of the codes easier es[ecially when their is conflict and incompatibility issues.

Hope this makes sense.