Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1011798

    Hello Guys,
    I am unable to edit the content on pages in admin – http://prntscr.com/kw62fv

    #1012239

    Hey almondmike_a,

    I fixed it. You’ve too many tags and your server can’t query them all from the database. I now excluded the post tags taxonomy from the selection list by adding this code to your child theme:

    
    add_filter('avia_public_taxonomies', 'avia_remove_resource_intensive_tax',10, 1);
    function avia_remove_resource_intensive_tax($taxonomies)
    {
    	foreach($taxonomies as $post_type => $taxs)
    	{
    		foreach($taxs as $key => $data)
    		{
    			if($data == 'post_tag') unset($taxonomies[$post_type][$key]);
    		}
    	}
    	return $taxonomies;
    }
    

    and now the blog element works as expected.

    Best regards,
    Peter

    #1012314

    Hi Dude,
    Thanks for your solution. Its working fine
    Thanks for great support!

    #1012335

    Hi,

    Glad I could help you :)

    Best regards,
    Peter

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.