Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #422718

    Hey!

    How to rename the “Avia layout builder” headline in wp admin panel? Maybe anyone done it before? Any suggestions?

    #423202

    Hi L!

    Add this to the bottom of your functions.php file.

    add_filter('avf_builder_boxes', 'avia_register_meta_boxes', 10, 1); 
    function avia_register_meta_boxes($boxes)
    {
    	$boxes[0]['title'] = "custom";
    	return $boxes;
    }

    Best regards,
    Elliott

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