Hi @tristup
I have done everything I can on that list. There’s no cache active. Nor CDN. WooCommerce database needs an update but I kind of wanted to hold off on that as the site is live.
The only thing changed in child functions.php is below (from this thread). I have removed it from child’s function.php now. That brought back the list of my Layouts but I still have trouble editing specifically the layout SHOP WC ARCHIVE.
There’s a secure note added above. Could you please login and check for any clues? Otherwise I don’t know where to start.
// Additional Functions
// =============================================================================
function JustProductFilter($query){
if ($query->is_search){
$query->set(‘post_type’, ‘product’);
}
return $query;
}
add_filter(‘pre_get_posts’,‘JustProductFilter’);