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

    Hello,

    I hope you are doing well today. Could you please tell me where I would go in the theme files to change the title “Avia Layout Builder” to whatever I would like it to be. I am talking about where it appears when you go to edit a page and you see the box that holds the tabs Layout Elements, Content Elements and Media Elements.

    I want to call it “Page Designer” as it will be better for the person making site edits to remember and understand. Thank you.

    #309633

    Hi mercury9!

    Thank you for using Enfold.

    You can add this on functions.php:

    add_filter('avf_builder_boxes','enable_boxes_on_posts');
    function enable_boxes_on_posts($boxes) {
    	$boxes[] = array( 'title' =>__('Page Designer','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('page', 'portfolio'), 'context'=>'normal', 'expandable'=>true );	
    	return $boxes;
    }

    Best regards,
    Ismael

    #310614

    This worked fabulously well. You guys are VERY helpful here. Best support of any theme maker I’ve ever had for the 5+ years I have been a Themeforest member. Well done guys!

    #310779

    Hey!

    Glad it worked and thank you for supporting the theme. :)

    Best regards,
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Renaming Editor Title’ is closed to new replies.