Installation and Updates
VIDEO
VIDEO
The PRO Version allows you to import all premium pages, settings, and blocks. Once you have purchased the Bizberg PRO you can find the license key here
Click on View Licenses and click on the key icon , you can see the license key there.
Go to Dashboard > Appearance > Theme license and paste your license under
License Key and click on Activate License
Congratulation!!! You have activated the PRO Version.
Bizberg Sites
Before importing demo site make sure you have activated Bizberg theme and activate all recommended plugins.
From the WordPress dashboard navigate to Appearance > Import Demo Data and select a website you wish to import.
It will open a confirmation message. Click on Yes, import
Wait for sometime, the demo data will take some time to import.
On successful import, it will show the success message.
Congratulation!!! You have successfully imported the demo sites.
Free Version Options
VIDEO
VIDEO
VIDEO
VIDEO
VIDEO
VIDEO
VIDEO
VIDEO
VIDEO
VIDEO
VIDEO
VIDEO
Pro Version Options
VIDEO
VIDEO
VIDEO
VIDEO
VIDEO
VIDEO
esc_html__( 'Documentation', 'bizberg' ),
'capability' => 'edit_theme_options',
'priority' => 1000
) );
Kirki::add_field( 'theme_config_id', [
'type' => 'custom',
'settings' => 'documentation-features',
'section' => 'documentation',
'default' => bizberg_blog_documentation()
] );
Kirki::add_section( 'top-bar', array(
'title' => esc_html__( 'Top Bar PRO', 'bizberg' ),
'capability' => 'edit_theme_options',
'panel' => 'theme_options',
'priority' => 1
) );
Kirki::add_field( 'theme_config_id', [
'type' => 'custom',
'settings' => 'top-bar-features',
'section' => 'top-bar',
'default' => ' '
] );
Kirki::add_section( 'footer-mega-grids-columns', array(
'title' => esc_html__( 'Footer Mega Grid Columns PRO', 'bizberg' ),
'capability' => 'edit_theme_options',
'panel' => 'theme_options',
'priority' => 1
) );
Kirki::add_field( 'theme_config_id', [
'type' => 'custom',
'settings' => 'footer-mega-grids-columns-features',
'section' => 'footer-mega-grids-columns',
'default' => ' '
] );
Kirki::add_section( 'preloader', array(
'title' => esc_html__( 'Preloader PRO', 'bizberg' ),
'capability' => 'edit_theme_options',
'panel' => 'theme_options',
'priority' => 1
) );
Kirki::add_field( 'theme_config_id', [
'type' => 'custom',
'settings' => 'preloader-features',
'section' => 'preloader',
'default' => ' '
] );
Kirki::add_section( 'footer1', array(
'title' => esc_html__( 'Footer PRO', 'bizberg' ),
'capability' => 'edit_theme_options',
'panel' => 'theme_options',
'priority' => 1
) );
Kirki::add_field( 'theme_config_id', [
'type' => 'custom',
'settings' => 'footer1-features',
'section' => 'footer1',
'default' => ' '
] );
Kirki::add_section( 'fonts', array(
'title' => esc_html__( 'Fonts PRO', 'bizberg' ),
'capability' => 'edit_theme_options',
'panel' => 'theme_options',
'priority' => 1
) );
Kirki::add_field( 'theme_config_id', [
'type' => 'custom',
'settings' => 'fonts-features',
'section' => 'fonts',
'default' => ' '
] );
$predesigned_sites = apply_filters( 'bizberg_predesigned_sites' , false );
if( !empty( $predesigned_sites ) ){
Kirki::add_section( 'pre-designed-sites', array(
'title' => esc_html__( 'Predesigned Sites', 'bizberg' ),
'capability' => 'edit_theme_options',
'priority' => 1
) );
Kirki::add_field( 'theme_config_id', [
'type' => 'custom',
'settings' => 'pre-designed-sites',
'section' => 'pre-designed-sites',
'default' => bizberg_predesigned_sites( $predesigned_sites )
] );
}
}