tag in the document head, and expect WordPress to
* provide it for us.
*/
add_theme_support('title-tag');
/*
* Enable support for Post Thumbnails on posts and pages.
*
* @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
*/
add_theme_support('post-thumbnails');
set_post_thumbnail_size(300);
add_image_size('business-chat-grid', 350, 230, true);
add_image_size('business-chat-slider', 850);
add_image_size('business-chat-small', 300, 180, true);
// This theme uses wp_nav_menu() in one location.
register_nav_menus(array(
'menu-1' => esc_html__('Primary', 'business-chat'),
));
add_theme_support('wc-product-gallery-zoom');
add_theme_support('wc-product-gallery-lightbox');
add_theme_support('wc-product-gallery-slider');
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
*/
add_theme_support('html5', array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
));
// Set up the WordPress core custom background feature.
add_theme_support('custom-background', apply_filters('business_chat_custom_background_args', array(
'default-color' => '#ffffff',
)));
// Add theme support for selective refresh for widgets.
add_theme_support('customize-selective-refresh-widgets');
/**
* Add support for core custom logo.
*
* @link https://codex.wordpress.org/Theme_Logo
*/
add_theme_support('custom-logo', array(
'flex-width' => true,
'flex-height' => true,
));
}
endif;
add_action('after_setup_theme', 'business_chat_setup');
/**
* Set the content width in pixels, based on the theme's design and stylesheet.
*
* Priority 0 to make it available to lower priority callbacks.
*
* @global int $content_width
*/
function business_chat_content_width()
{
$GLOBALS['content_width'] = apply_filters('business_chat_content_width', 640);
}
add_action('after_setup_theme', 'business_chat_content_width', 0);
function business_chat_woocommerce_support()
{
add_theme_support('woocommerce');
}
add_action('after_setup_theme', 'business_chat_woocommerce_support');
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function business_chat_widgets_init()
{
register_sidebar(array(
'name' => esc_html__('Sidebar', 'business-chat'),
'id' => 'sidebar-1',
'description' => esc_html__('Add widgets here.', 'business-chat'),
'before_widget' => '',
'before_title' => '
',
));
register_sidebar(array(
'name' => esc_html__('WooCommerce Sidebar', 'business-chat'),
'id' => 'sidebar-wc',
'description' => esc_html__('Add widgets here.', 'business-chat'),
'before_widget' => '',
'before_title' => '',
));
register_sidebar(array(
'name' => esc_html__('Footer Widget', 'business-chat'),
'id' => 'footerwidget-1',
'description' => esc_html__('Add widgets here.', 'business-chat'),
'before_widget' => '',
'before_title' => '',
));
register_sidebar(array(
'name' => esc_html__('Header Widget', 'business-chat'),
'id' => 'headerwidget-1',
'description' => esc_html__('Add widgets here.', 'business-chat'),
'before_widget' => '',
'before_title' => '',
));
}
add_action('widgets_init', 'business_chat_widgets_init');
/**
* Enqueue scripts and styles.
*/
function business_chat_scripts()
{
wp_enqueue_style('business-chat-font-awesome', get_template_directory_uri() . '/css/font-awesome.min.css');
wp_enqueue_style('business-chat-style', get_stylesheet_uri());
wp_enqueue_script('business-chat-navigation', get_template_directory_uri() . '/js/navigation.js', array('jquery'), '20170823', true);
wp_enqueue_script('business-chat-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20170823', true);
wp_enqueue_script('business-chat-script', get_template_directory_uri() . '/js/script.js', array('jquery'), '20160720', true);
wp_enqueue_script('business-chat-accessibility', get_template_directory_uri() . '/js/accessibility.js', array('jquery'), '20160720', true);
if (is_singular() && comments_open() && get_option('thread_comments')) {
wp_enqueue_script('comment-reply');
}
}
add_action('wp_enqueue_scripts', 'business_chat_scripts');
/**
* Implement the Custom Header feature.
*/
require get_template_directory() . '/inc/custom-header.php';
/**
* Custom template tags for this theme.
*/
require get_template_directory() . '/inc/template-tags.php';
/**
* Functions which enhance the theme by hooking into WordPress.
*/
require get_template_directory() . '/inc/template-functions.php';
/**
* Customizer additions.
*/
CustomizerController::GetInstance();
/**
* Google fonts
*/
function business_chat_enqueue_assets()
{
// Include the file.
require_once get_theme_file_path('webfont-loader/wptt-webfont-loader.php');
// Load the webfont.
wp_enqueue_style(
'business-chat-fonts',
wptt_get_webfont_url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700'),
array(),
'1.0'
);
}
add_action('wp_enqueue_scripts', 'business_chat_enqueue_assets');
/**
* Dots after excerpt
*/
function business_chat_new_excerpt_more($more)
{
return '...';
}
add_filter('excerpt_more', 'business_chat_new_excerpt_more');
/**
* Filter the excerpt length to 50 words.
*
* @param int $length Excerpt length.
* @return int (Maybe) modified excerpt length.
*/
function business_chat_excerpt_length($length)
{
if (is_admin()) {
return $length;
}
return 50;
}
add_filter('excerpt_length', 'business_chat_excerpt_length', 999);
/**
* Blog Pagination
*/
if (!function_exists('business_chat_numeric_posts_nav')) {
function business_chat_numeric_posts_nav()
{
$next_str = __('Next', 'business-chat');
$prev_str = __('Previous', 'business-chat');
global $wp_query;
$total = $wp_query->max_num_pages;
$big = 999999999; // need an unlikely integer
if ($total > 1) {
if (get_option('permalink_structure')) {
$format = 'page/%#%/';
} else {
$format = '&paged=%#%';
}
echo wp_kses_post(paginate_links(array(
'base' => str_replace($big, '%#%', esc_url(get_pagenum_link($big))),
'format' => $format,
'current' => max(1, get_query_var('paged')),
'total' => $total,
'mid_size' => 1,
'end_size' => 0,
'type' => 'list',
'prev_text' => $prev_str,
'next_text' => $next_str,
)));
}
}
}
/**
* Fix skip link focus in IE11.
*
* This does not enqueue the script because it is tiny and because it is only for IE11,
* thus it does not warrant having an entire dedicated blocking script being loaded.
*
* @link https://git.io/vWdr2
*/
function business_chat_skip_link_focus_fix()
{
// The following is minified via `terser --compress --mangle -- js/skip-link-focus-fix.js`.
?>
'Elementor',
'slug' => 'elementor',
'required' => false,
),
array(
'name' => 'Superb Addons - WordPress Editor And Elementor Blocks, Sections & Patterns',
'slug' => 'superb-blocks',
'required' => false,
),
array(
'name' => 'Live chat',
'slug' => 'creame-whatsapp-me',
'required' => false,
),
);
$config = array(
'id' => 'business-chat', // Unique ID for hashing notices for multiple instances of TGMPA.
'default_path' => '', // Default absolute path to bundled plugins.
'menu' => 'tgmpa-install-plugins', // Menu slug.
'has_notices' => true, // Show admin notices or not.
'dismissable' => true, // If false, a user cannot dismiss the nag message.
'dismiss_msg' => '', // If 'dismissable' is false, this message will be output at top of nag.
'is_automatic' => false, // Automatically activate plugins after installation or not.
'message' => '', // Message to output right before the plugins table.
);
tgmpa($plugins, $config);
}
/**
* Deactivate Elementor Wizard
*/
function business_chat_remove_elementor_onboarding()
{
update_option('elementor_onboarded', true);
}
add_action('after_switch_theme', 'business_chat_remove_elementor_onboarding');
/**
* Checkbox sanitization callback example.
*
* Sanitization callback for 'checkbox' type controls. This callback sanitizes `$checked`
* as a boolean value, either TRUE or FALSE.
*
* @param bool $checked Whether the checkbox is checked.
* @return bool Whether the checkbox is checked.
*/
function business_chat_sanitize_checkbox($checked)
{
// Boolean check.
return ((isset($checked) && true == $checked) ? true : false);
}
/**
* Copyright and License for Upsell button by Justin Tadlock - 2016-2018 © Justin Tadlock. customizer button https://github.com/justintadlock/trt-customizer-pro
*/
require_once(trailingslashit(get_template_directory()) . 'justinadlock-customizer-button/class-customize.php');
// Theme page start
add_action('admin_menu', 'business_chat_themepage');
function business_chat_themepage()
{
$option = get_option('business_chat_themepage_seen');
$awaiting = !$option ? ' 1' : '';
$theme_info = add_theme_page(__('Theme Settings', 'business-chat'), __('Theme Settings', 'business-chat').$awaiting, 'edit_theme_options', 'business-chat-info.php', 'business_chat_info_page', 1);
}
function business_chat_info_page()
{
$user = wp_get_current_user();
$theme = wp_get_theme();
$parent_name = is_child_theme() ? wp_get_theme($theme->Template) : '';
$theme_name = is_child_theme() ? $theme." ".__("and", "business-chat")." ".$parent_name : $theme;
$demo_text = is_child_theme() ? sprintf(__("Need inspiration? Take a moment to view our theme demo for the %1\$s parent theme %2\$s!", "business-chat"), $theme, $parent_name) : __("Need inspiration? Take a moment to view our theme demo!", "business-chat");
$premium_text = is_child_theme() ? sprintf(__("Unlock all features by upgrading to the premium edition of %1\$s and its parent theme %1\$s.", "business-chat"), $theme, $parent_name) : sprintf(__("Unlock all features by upgrading to the premium edition of %s.", "business-chat"), $theme);
$option_name = 'business_chat_themepage_seen';
$option = get_option($option_name, null);
if (is_null($option)) {
add_option($option_name, true);
} elseif (!$option) {
update_option($option_name, true);
} ?>
Add("business_chat_notification", esc_html__("Unlock All Features with Business Chat Premium – Limited Time Offer", "business-chat"), esc_html__("Take advantage of the up to", "business-chat").
" 40% ".esc_html__("discount", "business-chat")."".
esc_html__(" and unlock all features with Business Chat Premium. ", "business-chat")."
".esc_html__("The discount is only available for a limited time.", "business-chat").
"
", "info");
$options_notification_start = array("delay"=> "-1 seconds", "wpautop" => false);
$notifications->Add("business_chat_notification_start", esc_html__("Let's get you started with Business Chat!", "business-chat"), '
'. esc_html__( 'Why Business Chat', 'business-chat' ) .'
- '. esc_html__( 'Easy to Use & Customize', 'business-chat' ) .'
- '. esc_html__( 'Search Engine Optimized', 'business-chat' ) .'
- '. esc_html__( 'Lightweight and Fast', 'business-chat' ) .'
- '. esc_html__( 'Top-notch Customer Support', 'business-chat' ) .'
'. esc_html__( 'View Business Chat Demo', 'business-chat' ) .'
'. esc_html__( 'Customize Business Chat', 'business-chat' ) .'
', "info", $options_notification_start);
$notifications->Boot();
}