tag in the document head, and expect WordPress to
* provide it for us.
*/
add_theme_support( 'title-tag' );
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
'primary' => esc_html__( 'Primary Menu', 'azera-shop' ),
'azera_shop_footer_menu' => esc_html__( 'Footer Menu', 'azera-shop' ),
) );
/*
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( 'azera_shop_custom_background_args', array(
'default-repeat' => 'no-repeat',
'default-position-x' => 'center',
'default-attachment' => 'fixed',
)));
/*
* This feature enables Custom_Headers support for a theme as of Version 3.4.
*
* @link http://codex.wordpress.org/Function_Reference/add_theme_support#Custom_Header
*/
add_theme_support( 'custom-header',apply_filters( 'azera_shop_custom_header_args', array(
'default-image' => azera_shop_get_file( '/images/background-images/background.jpg' ),
'width' => 1000,
'height' => 680,
'flex-height' => true,
'flex-width' => true,
'header-text' => false,
)));
register_default_headers( array(
'azera_shop_default_header_image' => array(
'url' => azera_shop_get_file( '/images/background-images/background.jpg' ),
'thumbnail_url' => azera_shop_get_file( '/images/background-images/background_thumbnail.jpg' ),
),
));
// Theme Support for WooCommerce
add_theme_support( 'woocommerce' );
/*
* Enable support for Post Thumbnails on posts and pages.
*
* @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails
*/
add_theme_support( 'post-thumbnails' );
/* Set the image size by cropping the image */
add_image_size( 'azera-shop-post-thumbnail-big', 730, 340, true );
add_image_size( 'azera-shop-post-thumbnail-mobile', 500, 233, true );
add_image_size( 'azera_shop_home_prod',350,350,true );
/**
* Welcome screen
*/
if ( is_admin() ) {
global $azera_shop_required_actions;
/*
* id - unique id; required
* title
* description
* check - check for plugins (if installed)
* plugin_slug - the plugin's slug (used for installing the plugin)
*
*/
$azera_shop_required_actions = array(
array(
'id' => 'azera-shop-req-ac-check-front-page',
'title' => esc_html__( 'Switch "Front page displays" to "A static page" ' ,'azera-shop' ),
'description' => esc_html__( 'In order to have the one page look for your website, please go to Customize -> Advanced Options -> Static Front Page and switch "Front page displays" to "A static page". Then select the template "Frontpage" for that selected page.','azera-shop' ),
'check' => azera_shop_is_not_static_page(),
),
array(
'id' => 'azera-shop-req-ac-install-intergeo-maps',
'title' => esc_html__( 'Install Intergeo Maps - Google Maps Plugin' ,'azera-shop' ),
'description' => esc_html__( 'In order to use map section, you need to install Intergeo Maps plugin then use it to create a map and paste the generated shortcode in Customize -> Contact section -> Map shortcode','azera-shop' ),
'check' => defined( 'INTERGEO_PLUGIN_NAME' ),
'plugin_slug' => 'intergeo-maps',
),
);
require get_template_directory() . '/inc/admin/welcome-screen/welcome-screen.php';
}
}
endif; // azera_shop_setup
add_action( 'after_setup_theme', 'azera_shop_setup' );
function azera_shop_is_not_static_page() {
$azera_shop_is_not_static = 1;
if ( 'page' == get_option( 'show_on_front' ) ) {
$azera_shop_front_page_id = get_option( 'page_on_front' );
$azera_shop_template_name = get_page_template_slug( $azera_shop_front_page_id );
if ( ! empty( $azera_shop_template_name ) && ( $azera_shop_template_name == 'template-frontpage.php' ) ) {
$azera_shop_is_not_static = 0;
}
}
return ( ! $azera_shop_is_not_static ? true : false);
}
/**
* Register widget area.
*
* @link http://codex.wordpress.org/Function_Reference/register_sidebar
*/
function azera_shop_widgets_init() {
register_sidebar(
array(
'name' => esc_html__( 'Sidebar', 'azera-shop' ),
'id' => 'sidebar-1',
'description' => '',
'before_widget' => '',
'before_title' => apply_filters( 'azera_shop_widgets_before_title','
' ),
)
);
register_sidebars( 4,
array(
'name' => esc_html__( 'Footer area %d','azera-shop' ),
'id' => 'footer-area',
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
)
);
}
add_action( 'widgets_init', 'azera_shop_widgets_init' );
/**
* Fallback Menu
*
* If the menu doesn't exist, the fallback function to use.
*/
function azera_shop_wp_page_menu() {
echo '';
wp_list_pages( array( 'title_li' => '', 'depth' => 1 ) );
echo ' ';
}
/**
* Enqueue scripts and styles.
*/
function azera_shop_scripts() {
wp_enqueue_style( 'azera-shop-font', '//fonts.googleapis.com/css?family=Cabin:400,600|Open+Sans:400,300,600' );
wp_enqueue_style( 'azera-shop-fontawesome', azera_shop_get_file( '/css/font-awesome.min.css' ),array(), '4.4.0' );
wp_enqueue_style( 'azera-shop-bootstrap-style', azera_shop_get_file( '/css/bootstrap.min.css' ),array(), '3.3.1' );
wp_enqueue_style( 'azera-shop-style', get_stylesheet_uri(), array( 'azera-shop-bootstrap-style' ),'1.0.0' );
wp_enqueue_script( 'azera-shop-bootstrap', azera_shop_get_file( '/js/bootstrap.min.js' ), array(), '3.3.5', true );
wp_enqueue_script( 'azera-shop-custom-all', azera_shop_get_file( '/js/custom.all.js' ), array( 'jquery' ), '2.0.2', true );
wp_localize_script( 'azera-shop-custom-all', 'screenReaderText', array(
'expand' => '' . esc_html__( 'expand child menu', 'azera-shop' ) . ' ',
'collapse' => '' . esc_html__( 'collapse child menu', 'azera-shop' ) . ' ',
) );
$azera_shop_enable_move = get_theme_mod( 'azera_shop_enable_move' );
if ( ! empty( $azera_shop_enable_move ) && $azera_shop_enable_move && is_page_template( 'template-frontpage.php' ) ) {
wp_enqueue_script( 'azera-shop-home-plugin', azera_shop_get_file( '/js/plugin.home.js' ), array( 'jquery', 'azera-shop-custom-all' ), '1.0.1', true );
}
if ( is_page_template( 'template-frontpage.php' ) ) {
wp_enqueue_script( 'azera-shop-custom-home', azera_shop_get_file( '/js/custom.home.js' ), array( 'jquery' ), '1.0.0', true );
}
wp_enqueue_script( 'azera-shop-skip-link-focus-fix', azera_shop_get_file( '/js/skip-link-focus-fix.js' ), array(), '1.0.0', true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'azera_shop_scripts' );
/**
* Custom template tags for this theme.
*/
require get_template_directory() . '/inc/template-tags.php';
/**
* Custom functions that act independently of the theme templates.
*/
require get_template_directory() . '/inc/extras.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer.php';
/**
* Load Jetpack compatibility file.
*/
require get_template_directory() . '/inc/jetpack.php';
function azera_shop_admin_scripts() {
wp_enqueue_style( 'azera-shop-admin-fontawesome', azera_shop_get_file( '/css/font-awesome.min.css' ),array(), '4.5.0' );
wp_enqueue_style( 'azera-shop-admin-stylesheet', azera_shop_get_file( '/css/admin-style.css' ),'1.0.0' );
wp_enqueue_script( 'azera-shop-customizer-script', azera_shop_get_file( '/js/azera_shop_customizer.js' ), array( 'jquery', 'jquery-ui-draggable' ),'1.0.0', true );
wp_localize_script( 'azera-shop-customizer-script', 'azeraShopCustomizerObject', array(
'documentation' => esc_html__( 'Documentation', 'azera-shop' ),
'support' => esc_html__( 'Support Forum','azera-shop' ),
'pro' => __( 'Upgrade to PRO','azera-shop' ),
) );
}
add_action( 'customize_controls_enqueue_scripts', 'azera_shop_admin_scripts', 10 );
// Adding IE-only scripts to header.
function azera_shop_ie() {
echo '' . "\n";
}
add_action( 'wp_head', 'azera_shop_ie' );
remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 );
remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 );
add_action( 'woocommerce_before_main_content', 'azera_shop_wrapper_start', 10 );
add_action( 'woocommerce_after_main_content', 'azera_shop_wrapper_end', 10 );
function azera_shop_wrapper_start( $class = 'col-md-12', $is_blog = false ) {
$page_bg_image_url = get_background_image();
$class_to_add = '';
if ( ! empty( $page_bg_image_url ) && ! is_page_template( 'template-frontpage.php' ) ) {
$class_to_add = 'content-background';
} ?>
'Intergeo Maps - Google Maps Plugin',
'slug' => 'intergeo-maps',
'required' => false,
),
array(
'name' => 'Pirate Forms',
'slug' => 'pirate-forms',
'required' => false,
),
array(
'name' => 'WooCommerce',
'slug' => 'woocommerce',
'required' => false,
),
array(
'name' => 'Azera Shop Companion',
'slug' => 'azera-shop-companion',
'required' => false,
),
);
$config = array(
'default_path' => '',
'menu' => 'tgmpa-install-plugins',
'has_notices' => true,
'dismissable' => true,
'dismiss_msg' => '',
'is_automatic' => false,
'message' => '',
'strings' => array(
'page_title' => esc_html__( 'Install Required Plugins', 'azera-shop' ),
'menu_title' => esc_html__( 'Install Plugins', 'azera-shop' ),
'installing' => esc_html__( 'Installing Plugin: %s', 'azera-shop' ),
'oops' => esc_html__( 'Something went wrong with the plugin API.', 'azera-shop' ),
'notice_can_install_required' => _n_noop( 'This theme requires the following plugin: %1$s.', 'This theme requires the following plugins: %1$s.', 'azera-shop' ),
'notice_can_install_recommended' => _n_noop( 'This theme recommends the following plugin: %1$s.', 'This theme recommends the following plugins: %1$s.', 'azera-shop' ),
'notice_cannot_install' => _n_noop( 'Sorry, but you do not have the correct permissions to install the %s plugin. Contact the administrator of this site for help on getting the plugin installed.', 'Sorry, but you do not have the correct permissions to install the %s plugins. Contact the administrator of this site for help on getting the plugins installed.', 'azera-shop' ),
'notice_can_activate_required' => _n_noop( 'The following required plugin is currently inactive: %1$s.', 'The following required plugins are currently inactive: %1$s.', 'azera-shop' ),
'notice_can_activate_recommended' => _n_noop( 'The following recommended plugin is currently inactive: %1$s.', 'The following recommended plugins are currently inactive: %1$s.', 'azera-shop' ),
'notice_cannot_activate' => _n_noop( 'Sorry, but you do not have the correct permissions to activate the %s plugin. Contact the administrator of this site for help on getting the plugin activated.', 'Sorry, but you do not have the correct permissions to activate the %s plugins. Contact the administrator of this site for help on getting the plugins activated.', 'azera-shop' ),
'notice_ask_to_update' => _n_noop( 'The following plugin needs to be updated to its latest version to ensure maximum compatibility with this theme: %1$s.', 'The following plugins need to be updated to their latest version to ensure maximum compatibility with this theme: %1$s.', 'azera-shop' ),
'notice_cannot_update' => _n_noop( 'Sorry, but you do not have the correct permissions to update the %s plugin. Contact the administrator of this site for help on getting the plugin updated.', 'Sorry, but you do not have the correct permissions to update the %s plugins. Contact the administrator of this site for help on getting the plugins updated.', 'azera-shop' ),
'install_link' => _n_noop( 'Begin installing plugin', 'Begin installing plugins', 'azera-shop' ),
'activate_link' => _n_noop( 'Begin activating plugin', 'Begin activating plugins', 'azera-shop' ),
'return' => esc_html__( 'Return to Required Plugins Installer', 'azera-shop' ),
'plugin_activated' => esc_html__( 'Plugin activated successfully.', 'azera-shop' ),
'complete' => esc_html__( 'All plugins installed and activated successfully. %s', 'azera-shop' ),
'nag_type' => 'updated',
),
);
tgmpa( $plugins, $config );
}
add_action( 'wp_footer','azera_shop_php_style', 100 );
function azera_shop_php_style() {
echo '';
}
$pro_functions_path = azera_shop_get_file( '/pro/functions.php' );
if ( file_exists( $pro_functions_path ) ) {
require $pro_functions_path;
}
function azera_shop_get_file( $file ) {
$file_parts = pathinfo( $file );
$accepted_ext = array( 'jpg','img','png','css','js' );
if ( in_array( $file_parts['extension'], $accepted_ext ) ) {
$file_path = get_stylesheet_directory() . $file;
if ( file_exists( $file_path ) ) {
return esc_url( get_stylesheet_directory_uri() . $file );
} else {
return esc_url( get_template_directory_uri() . $file );
}
}
}
/**
* WooCommerce Extra Feature
* --------------------------
*
* Change number of related products on product page
* Set your own value for 'posts_per_page'
*/
add_filter( 'woocommerce_output_related_products_args', 'azera_shop_related_products_args' );
function azera_shop_related_products_args( $args ) {
$args['posts_per_page'] = 4;
$args['columns'] = 4;
return $args;
}
function azera_shop_responsive_embed( $html, $url, $attr, $post_ID ) {
$return = '' . $html . '
';
return $return;
}
add_filter( 'embed_oembed_html', 'azera_shop_responsive_embed', 10, 4 );
/* Comments callback function*/
function azera_shop_comment( $comment, $args, $depth ) {
$GLOBALS['comment'] = $comment;
switch ( $comment->comment_type ) :
case 'pingback' :
case 'trackback' :
?>
id="li-comment-">
comment_approved == '0' ) : ?>
$depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
id ) ) {
$id = $azera_shop_logo_box->id;
}
if ( ! empty( $azera_shop_logo_box->image_url ) ) {
$image = $azera_shop_logo_box->image_url;
}
if ( ! empty( $azera_shop_logo_box->link ) ) {
$link = $azera_shop_logo_box->link;
}
if ( ! empty( $id ) ) {
if ( ! empty( $image ) ) {
if ( function_exists( 'pll_register_string' ) ) {
pll_register_string( $id . '_logo_image', $image, 'Logos' );
} else {
do_action( 'wpml_register_single_string', 'Azera Shop -> Logos section', 'Logo image ' . $id, $image );
}
}
if ( ! empty( $link ) ) {
if ( function_exists( 'pll_register_string' ) ) {
pll_register_string( $id . '_logo_link', $link, 'Logos' );
} else {
do_action( 'wpml_register_single_string', 'Azera Shop -> Logos section', 'Logo link ' . $id, $link );
}
}
}
}
}
/*Shortcode section*/
$azera_shop_shortcodes_section = get_theme_mod( 'azera_shop_shortcodes_settings' );
if ( ! empty( $azera_shop_shortcodes_section ) ) {
$azera_shop_shortcodes_section_decoded = json_decode( $azera_shop_shortcodes_section );
foreach ( $azera_shop_shortcodes_section_decoded as $azera_shop_shortcodes_box ) {
$id = '';
$title = '';
$subtitle = '';
$shortcode = '';
if ( ! empty( $azera_shop_shortcodes_box->id ) ) {
$id = $azera_shop_shortcodes_box->id;
}
if ( ! empty( $azera_shop_shortcodes_box->title ) ) {
$title = $azera_shop_shortcodes_box->title;
}
if ( ! empty( $azera_shop_shortcodes_box->subtitle ) ) {
$subtitle = $azera_shop_shortcodes_box->subtitle;
}
if ( ! empty( $azera_shop_shortcodes_box->shortcode ) ) {
$shortcode = $azera_shop_shortcodes_box->shortcode;
}
if ( ! empty( $id ) ) {
if ( ! empty( $title ) ) {
if ( function_exists( 'pll_register_string' ) ) {
pll_register_string( $id . '_shortcode_section_title', $title, 'Shortcodes section' );
} else {
do_action( 'wpml_register_single_string', 'Azera Shop -> Shortcodes section', 'Shortcode title ' . $id, $title );
}
}
if ( ! empty( $subtitle ) ) {
if ( function_exists( 'pll_register_string' ) ) {
pll_register_string( $id . '_shortcode_section_subtitle', $subtitle, 'Shortcodes section' );
} else {
do_action( 'wpml_register_single_string', 'Azera Shop -> Shortcodes section', 'Shortcode subtitle ' . $id, $subtitle );
}
}
if ( ! empty( $shortcode ) ) {
if ( function_exists( 'pll_register_string' ) ) {
pll_register_string( $id . '_shortcode_section_shortcode', $shortcode, 'Shortcodes section' );
} else {
do_action( 'wpml_register_single_string', 'Azera Shop -> Shortcodes section', 'Shortcode ' . $id, $shortcode );
}
}
}
}
}
/*Footer*/
$azera_shop_social_icons = get_theme_mod( 'azera_shop_social_icons' );
if ( ! empty( $azera_shop_social_icons ) ) {
$azera_shop_social_icons_decoded = json_decode( $azera_shop_social_icons );
foreach ( $azera_shop_social_icons_decoded as $azera_shop_footer_social ) {
$id = '';
$link = '';
$icon = '';
if ( ! empty( $azera_shop_footer_social->id ) ) {
$id = esc_attr( $azera_shop_footer_social->id );
}
if ( ! empty( $azera_shop_footer_social->link ) ) {
$link = $azera_shop_footer_social->link;
}
if ( ! empty( $azera_shop_footer_social->icon_value ) ) {
$icon = $azera_shop_footer_social->icon_value;
}
if ( ! empty( $id ) ) {
if ( ! empty( $icon ) ) {
if ( function_exists( 'pll_register_string' ) ) {
pll_register_string( $id . '_footer_icon', $icon, 'Footer' );
} else {
do_action( 'wpml_register_single_string', 'Azera Shop -> Footer', 'Footer social icon ' . $id, $icon );
}
}
if ( ! empty( $link ) ) {
if ( function_exists( 'pll_register_string' ) ) {
pll_register_string( $id . '_footer_link', $link, 'Footer' );
} else {
do_action( 'wpml_register_single_string', 'Azera Shop -> Footer', 'Footer social link ' . $id, $link );
}
}
}
}
}
/*Contact*/
$azera_shop_contact = get_theme_mod( 'azera_shop_contact_info_content' );
if ( ! empty( $azera_shop_contact ) ) {
$azera_shop_contact_decoded = json_decode( $azera_shop_contact );
foreach ( $azera_shop_contact_decoded as $azera_shop_contact_box ) {
$id = '';
$icon = '';
$text = '';
$link = '';
if ( ! empty( $azera_shop_contact_box->id ) ) {
$id = esc_attr( $azera_shop_contact_box->id );
}
if ( ! empty( $azera_shop_contact_box->icon_value ) ) {
$icon = $azera_shop_contact_box->icon_value;
}
if ( ! empty( $azera_shop_contact_box->text ) ) {
$text = $azera_shop_contact_box->text;
}
if ( ! empty( $azera_shop_contact_box->link ) ) {
$link = $azera_shop_contact_box->link;
}
if ( ! empty( $id ) ) {
if ( ! empty( $icon ) ) {
if ( function_exists( 'pll_register_string' ) ) {
pll_register_string( $id . '_contact_icon', $icon, 'Contact' );
} else {
do_action( 'wpml_register_single_string', 'Azera Shop -> Contact section', 'Contact box icon ' . $id, $icon );
}
}
if ( ! empty( $link ) ) {
if ( function_exists( 'pll_register_string' ) ) {
pll_register_string( $id . '_contact_link', $link, 'Contact' );
} else {
do_action( 'wpml_register_single_string', 'Azera Shop -> Contact section', 'Contact box link ' . $id, $link );
}
}
if ( ! empty( $text ) ) {
if ( function_exists( 'pll_register_string' ) ) {
pll_register_string( $id . '_contact_text', $text, 'Contact' );
} else {
do_action( 'wpml_register_single_string', 'Azera Shop -> Contact section', 'Contact box text ' . $id, $text );
}
}
}
}
}
}
function azera_shop_get_template_part( $template ) {
if ( locate_template( $template . '.php' ) ) {
get_template_part( $template );
} else {
if ( defined( 'AZERA_SHOP_PLUS_PATH' ) ) {
if ( file_exists( AZERA_SHOP_PLUS_PATH . 'public/templates/' . $template . '.php' ) ) {
require_once( AZERA_SHOP_PLUS_PATH . 'public/templates/' . $template . '.php' );
}
} else {
if ( defined( 'AZERA_SHOP_COMPANION_PATH' ) ) {
if ( file_exists( AZERA_SHOP_COMPANION_PATH . 'sections/' . $template . '.php' ) ) {
require_once( AZERA_SHOP_COMPANION_PATH . 'sections/' . $template . '.php' );
}
}
}
}
}
function azera_shop_excerpt_more( $more ) {
global $post;
return '' . esc_html__( 'Read more about ', 'azera-shop' ) . esc_html( get_the_title() ) . ' […] ';
}
add_filter( 'excerpt_more', 'azera_shop_excerpt_more' );
// Ensure cart contents update when products are added to the cart via AJAX )
add_filter( 'woocommerce_add_to_cart_fragments', 'azera_shop_woocommerce_header_add_to_cart_fragment' );
function azera_shop_woocommerce_header_add_to_cart_fragment( $fragments ) {
ob_start();
?>
cart->get_cart_contents_count() ); ?>
';
} else {
echo '';
}
echo '
';
echo '
';
if ( ! empty( $azera_shop_blog_header_title ) ) {
echo '
' . $azera_shop_blog_header_title . '
';
echo '
';
}
if ( ! empty( $azera_shop_blog_header_subtitle ) ) {
echo '
' . $azera_shop_blog_header_subtitle . '
';
}
echo '
';
echo '
';
echo '
';
}
}
}
add_action( 'blog_header','azera_shop_blog_header' );
if ( ! function_exists( 'azera_shop_footer_powered_by' ) ) {
/**
* Display the powered by section in the footer
*/
function azera_shop_footer_powered_by() {
?>
%s', esc_html__( 'Azera Shop', 'azera-shop' ) ),
sprintf( '
%s ', esc_html__( 'WordPress', 'azera-shop' ) )
); ?>