Saved Layouts, Headers, Footers missing from Admin

The layouts, headers, footers are all missing from my Pro admin - however they are still (thank goodness) working on site.

If I create a new header, or layout - it doesn’t show for selection after saving either.

However, my templates are all still showing.

How can I get these to display again so I can select them?

Hello @bluedotproductions,

Thanks for writing in!

You can load the page templates in the Layout tab:

If you are in the Header Builder, you can launch the Templates using the “Use Templates” button

Best Regards.

Thanks for your reply. What had actually happened was my modifying the WP search query in my functions.php made the ability to see any of my headers, layouts etc in Pro. By adding a proper admin check at the bottom, it solved it. My bad!

// Search Query without Reports
function SearchFilter($query) {
  if ($query->is_search) {
    $query->set('cat','-1233',);
  }
  return $query;
}
if(!is_admin())
  add_filter('pre_get_posts','SearchFilter');

Hello @bluedotproductions,

We’re glad that you were able to figure out the cause of your issue and have resolved it already.

Cheers.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.