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.
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
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!