/**
* Site Title
*/
FLPageData::add_site_property( 'title', array(
'label' => __( 'Site Title', 'bb-theme-builder' ),
'group' => 'site',
'type' => 'string',
'getter' => 'FLPageDataSite::get_title',
) );/**
* Site Tagline
*/
FLPageData::add_site_property( 'tagline', array(
'label' => __( 'Site Tagline', 'bb-theme-builder' ),
'group' => 'site',
'type' => 'string',
'getter' => 'FLPageDataSite::get_description',
) );/**
* Site URL
*/
FLPageData::add_site_property( 'url', array(
'label' => __( 'Site URL', 'bb-theme-builder' ),
'group' => 'site',
'type' => 'url',
'getter' => 'FLPageDataSite::get_url',
) );/**
* User Name
*/
FLPageData::add_site_property( 'user_name', array(
'label' => __( 'User Name', 'bb-theme-builder' ),
'group' => 'user',
'type' => 'string',
'getter' => 'FLPageDataSite::get_user_name',
) );FLPageDataSite::add_user_settings_fields( 'user_name', array(
'type' => array(
'type' => 'select',
'label' => __( 'Type', 'bb-theme-builder' ),
'default' => 'display',
'options' => array(
'display' => __( 'Display Name', 'bb-theme-builder' ),
'first' => __( 'First Name', 'bb-theme-builder' ),
'last' => __( 'Last Name', 'bb-theme-builder' ),
'firstlast' => __( 'First & Last Name', 'bb-theme-builder' ),
'lastfirst' => __( 'Last, First Name', 'bb-theme-builder' ),
'nickname' => __( 'Nickname', 'bb-theme-builder' ),
'username' => __( 'Username', 'bb-theme-builder' ),
),
),
'link' => array(
'type' => 'select',
'label' => __( 'Link', 'bb-theme-builder' ),
'default' => 'no',
'options' => array(
'yes' => __( 'Yes', 'bb-theme-builder' ),
'no' => __( 'No', 'bb-theme-builder' ),
),
'toggle' => array(
'yes' => array(
'fields' => array( 'link_type' ),
),
),
'help' => __( 'Link to the archive or website for this user.', 'bb-theme-builder' ),
),
'link_type' => array(
'type' => 'select',
'label' => __( 'Link Type', 'bb-theme-builder' ),
'default' => 'archive',
'options' => array(
'archive' => __( 'Post Archive', 'bb-theme-builder' ),
'website' => __( 'Website', 'bb-theme-builder' ),
),
),
) );/**
* User Bio
*/
FLPageData::add_site_property( 'user_bio', array(
'label' => __( 'User Bio', 'bb-theme-builder' ),
'group' => 'user',
'type' => 'string',
'getter' => 'FLPageDataSite::get_user_bio',
) );FLPageDataSite::add_user_settings_fields( 'user_bio' );/**
* User URL
*/
FLPageData::add_site_property( 'user_url', array(
'label' => __( 'User URL', 'bb-theme-builder' ),
'group' => 'user',
'type' => array( 'url' ),
'getter' => 'FLPageDataSite::get_user_url',
) );FLPageDataSite::add_user_settings_fields( 'user_url', array(
'type' => array(
'type' => 'select',
'label' => __( 'Type', 'bb-theme-builder' ),
'default' => 'archive',
'options' => array(
'archive' => __( 'Post Archive', 'bb-theme-builder' ),
'website' => __( 'Website', 'bb-theme-builder' ),
),
),
) );/**
* User Picture
*/
FLPageData::add_site_property( 'user_profile_picture', array(
'label' => __( 'User Picture', 'bb-theme-builder' ),
'group' => 'user',
'type' => array( 'string' ),
'getter' => 'FLPageDataSite::get_user_profile_picture',
) );FLPageDataSite::add_user_settings_fields( 'user_profile_picture', array(
'link' => array(
'type' => 'select',
'label' => __( 'Link', 'bb-theme-builder' ),
'default' => 'no',
'options' => array(
'yes' => __( 'Yes', 'bb-theme-builder' ),
'no' => __( 'No', 'bb-theme-builder' ),
),
'toggle' => array(
'yes' => array(
'fields' => array( 'link_type' ),
),
),
'help' => __( 'Link to the archive or website for this user.', 'bb-theme-builder' ),
),
'link_type' => array(
'type' => 'select',
'label' => __( 'Link Type', 'bb-theme-builder' ),
'default' => 'archive',
'options' => array(
'archive' => __( 'Post Archive', 'bb-theme-builder' ),
'website' => __( 'Website', 'bb-theme-builder' ),
),
),
'size' => array(
'type' => 'text',
'label' => __( 'Size', 'bb-theme-builder' ),
'default' => '100',
'size' => '5',
'description' => 'px',
'placeholder' => '512',
),
) );/**
* User Picture URL
*/
FLPageData::add_site_property( 'user_profile_picture_url', array(
'label' => __( 'User Picture URL', 'bb-theme-builder' ),
'group' => 'user',
'type' => array( 'photo', 'string' ),
'getter' => 'FLPageDataSite::get_user_profile_picture_url',
) );FLPageDataSite::add_user_settings_fields( 'user_profile_picture_url', array(
'size' => array(
'type' => 'text',
'label' => __( 'Size', 'bb-theme-builder' ),
'default' => '100',
'size' => '5',
'description' => 'px',
'placeholder' => '512',
),
'default_img' => array(
'type' => 'photo',
'label' => __( 'Default Image', 'bb-theme-builder' ),
),
) );/**
* User Meta
*/
FLPageData::add_site_property( 'user_meta', array(
'label' => __( 'User Meta', 'bb-theme-builder' ),
'group' => 'user',
'type' => 'all',
'getter' => 'FLPageDataSite::get_user_meta',
) );FLPageDataSite::add_user_settings_fields( 'user_meta', array(
'key' => array(
'type' => 'text',
'label' => __( 'Key', 'bb-theme-builder' ),
),
) );/**
* Is current user logged in
* @since 1.1
*/
FLPageData::add_site_property( 'logged_in', array(
'label' => __( 'User Logged In', 'bb-theme-builder' ),
'group' => 'user',
'type' => 'string',
'getter' => 'FLPageDataSite::is_user_logged_in',
) );FLPageDataSite::add_user_settings_fields( 'logged_in', array(
'role' => array(
'type' => 'text',
'label' => __( 'Role/Roles', 'bb-theme-builder' ),
'help' => __( 'Comma separated list of WordPress roles, lowercase. This connection returns true or false, best used as a conditional shortcode.', 'bb-theme-builder' ),
),
) );/**
* Site year
* @since 1.1
*/
FLPageData::add_site_property( 'year', array(
'label' => __( 'Current Year', 'bb-theme-builder' ),
'group' => 'site',
'type' => 'string',
'getter' => 'FLPageDataSite::get_year',
) );
FLPageData::add_site_property_settings_fields( 'year', array(
'format' => array(
'type' => 'text',
'label' => __( 'Format', 'bb-theme-builder' ),
'default' => 'Y',
),
) );
Website Design & Development – Pantomatic Digital Marketing
Skip to content
Website Design & Development Designing Success Through Creative Web Design.
Good Website Builds Great Brands Bring Your Brand’s Vision To Life!
Websites are the digital identity of your brand. It will be the first impression your customers will have about your product or services. Hence, it becomes critical to design a website that aligns with your vision. It is a well known fact that professional Websites that are user friendly generate more revenue and gain the trust of the customers easily.
If you have the following concerns or more, we have got your back.
You want to give your customers a great website experience
Aren’t able to attract customers to your website
You want a user friendly website
You want to sell your products/ services online
You want to reach potential customers and generate more revenue
User Friendly Designs When the customers find it easy to navigate from one page to another, it is more likely that they will visit your website again. Apart from being professional, your website needs to be user friendly to drive in more organic traffic.
High Online Exposure In the digital era, it becomes a necessity to own a website for your brand. A professional website can give your brand a better online exposure. This gives your brand a wide customer base and helps your business grow in a short span of time.
Custom Designed Website We customise your website in accordance to your vision with an aim to reach the right audience and generate surefire conversions that will not only increase your business’s reach but also generate more revenue for your business.
Design the First Impression of Your Brand Millions of people surf the internet for multiple hours a day. It is essential for your brand to grab their attention. The customers place orders mainly based on their first impression of your brand. Websites that are user friendly, informative and unsophisticated are usually preferred by the customers.
Our Web developers understand the need of your customers and curate websites that bring your brand closer to your customers leaving a great impression.
Scroll To Top