Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #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.

    #434361

    Hi mercury9!

    Try commenting out lines 6 – 20 in the /enfold/config-templatebuilder/avia-template-builder/config/pointers.php.

    Regards,
    Elliott

    #434362

    Hi 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!
    Yigit

    #434368

    Thank you both. Awesome assistance. It is appreciated!

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Avia Layout Builder Admin Popup Tooltip’ is closed to new replies.