I tried to create custom page. what i did is clone about_us.php and rename it to fec.php, inside the file I've change
the content/language keys and after that i went to menu builder and add new_item with link to fec.php.
so far it was good.
the problem is that i need to add blocks (like in pages builder) to the page, and i don't know ho to insert this page
into the pages builder list.
also i don't know how to add the font awesome icon, i found icons.css but there are number which i don't know
what that means.
and the menu looks different, don't have the blue overlay.
i searched the forum but didn't find what i need. need some experts advice.
the code page look like this:
<?php
/**
* Copyright (c) BoonEx Pty Limited - http://www.boonex.com/
* CC-BY License - http://creativecommons.org/licenses/by/3.0/
*/
require_once( 'inc/header.inc.php' );
require_once( BX_DIRECTORY_PATH_INC . 'design.inc.php' );
require_once( BX_DIRECTORY_PATH_INC . 'profiles.inc.php' );
// --------------- page variables and login
$_page['name_index'] = 17;
check_logged();
$_page['header'] = _t( "_MyTitel_H" );
$_page['header_text'] = _t( "_MyContent_H1" );
// --------------- page components
$_ni = $_page['name_index'];
$_page_cont[$_ni]['page_main_code'] = PageCompMainCode();
// --------------- [END] page components
PageCode();
// --------------- page components functions
/**
* page code function
*/
function PageCompMainCode()
{
$sRet = str_replace( '<site_url>', $GLOBALS['site']['url'], _t( "_MyTitel_H" ));
return DesignBoxContent( _t( "_MyContent_H1" ), $sRet, $GLOBALS['oTemplConfig'] -> PageCompThird_db_num);
}