Viewing 4 posts - 1 through 4 (of 4 total)
-
AuthorPosts
-
April 23, 2015 at 6:32 pm #433675
Hello, I was searching for a way to disable / remove the “Avia Layout Builder” popup that occurs whenever a new user is added and goes to edit a Page or Portfolio entry. The one that says “The Avia Layout Builder allows you to create unique layouts with an easy to use , drag and drop interface….”
Please advise. Thank you.
April 24, 2015 at 8:16 pm #434361Hi mercury9!
Try commenting out lines 6 – 20 in the /enfold/config-templatebuilder/avia-template-builder/config/pointers.php.
Regards,
ElliottApril 24, 2015 at 8:17 pm #434362Hi mercury9!
Please go to Enfold/config-templatebuilder/avia-template-builder/config folder and open pointers.php file and find
foreach($screens as $screen) { $pointers[] = array( 'id' => 'builder-button-pointer', // unique id for this pointer 'screen' => $screen, // this is the page hook we want our pointer to show on 'target' => '#avia-builder-button', // the css selector for the pointer to be tied to, best to use ID's 'title' => 'Avia Layout Builder', 'content' => __('The Avia Layout Builder allows you to create unique layouts with an easy to use, drag and drop interface.','avia_framework' )."<br/><br/>".__('The Builder is available on Pages and Single Portfolio Entries','avia_framework' ), 'position' => array( 'edge' => 'left', //top, bottom, left, right 'align' => 'middle' //top, bottom, left, right, middle ) ); }
and comment it out as following
//foreach($screens as $screen) //{ // $pointers[] = array( // 'id' => 'builder-button-pointer', // unique id for this pointer // 'screen' => $screen, // this is the page hook we want our pointer to show on // 'target' => '#avia-builder-button', // the css selector for the pointer to be tied to, best to use ID's // 'title' => 'Avia Layout Builder', // 'content' => __('The Avia Layout Builder allows you to create unique layouts with an easy to use, drag and drop //interface.','avia_framework' )."<br/><br/>".__('The Builder is available on Pages and Single Portfolio Entries','avia_framework' ), // 'position' => array( // 'edge' => 'left', //top, bottom, left, right // 'align' => 'middle' //top, bottom, left, right, middle // ) // ); // //}
Cheers!
YigitApril 24, 2015 at 8:21 pm #434368Thank you both. Awesome assistance. It is appreciated!
-
AuthorPosts
Viewing 4 posts - 1 through 4 (of 4 total)
- The topic ‘Avia Layout Builder Admin Popup Tooltip’ is closed to new replies.