/**
* 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',
),
) );
Services – Pantomatic Digital Marketing
Skip to content
Check Out Our Dynamic Digital Marketing Solutions
Local SEO
Make your business more visible in every local search result on Google. Let us help your business stand out even if you don't have a website.
Search Engine Optimization
Make your website search engine friendly and increase the quality and quantity of your website traffic by using our SEO services.
Paid Search Marketing
Get your ads to appear on the search engine result pages of Google & Bing. Use this as a golden ticket to convert the target audience into customers.
Content Marketing
Content is the key to making people fall in love with your brand. Attract, engage, and retain your target audience through our content marketing service.
Social Media Marketing
Make Social Media your powerful marketing weapon. Build your brand, increase sales and drive website traffic through social media marketing and grow your global presence.
Website Design & Development
Your website defines your brand. We provide Website Design & development services that will make customers fall in love with your website and change the way the world looks at your brand.
Ready to Speak With a Marketing Expert? Give Us a Ring (+91) 72786777772
Take a Look of Our Pricing And Select Your Choice
Starter Plan
$499 / month
Social Media Setup & Management
Google Remarketing Ads
Google Analytics Report
Google My Business Optimization
Website Optimization
Competitor Analysis
On Page Optimization
Customer Support
Best Value
Enterprise
$1199 / month
Includes Starter Plan
Pay Per Click advertising (upto $1000 in spend)
Search Engine Optimization
Directory Management
Link Building
3 Blog Posts
5 Graphic Designs
Business Plan
$1799 / month
Includes Starter Plan
Pay Per Click advertising (upto $4000 in spend)
Search Engine Optimization
Directory Management
Link Building
5 Blog Posts
10 Graphic Designs
1 Promo Video
Scroll To Top