get( 'Version' ) ); if( ! defined( 'ASTER_PHOTOGRAPHY_THEME_NAME' ) ) define( 'ASTER_PHOTOGRAPHY_THEME_NAME', $aster_photography_theme_data->get( 'Name' ) ); if( ! defined( 'ASTER_PHOTOGRAPHY_THEME_TEXTDOMAIN' ) ) define( 'ASTER_PHOTOGRAPHY_THEME_TEXTDOMAIN', $aster_photography_theme_data->get( 'TextDomain' ) ); if ( ! defined( 'ASTER_PHOTOGRAPHY_VERSION' ) ) { define( 'ASTER_PHOTOGRAPHY_VERSION', '1.0.0' ); } if ( ! function_exists( 'aster_photography_setup' ) ) : function aster_photography_setup() { load_theme_textdomain( 'aster-photography', get_template_directory() . '/languages' ); add_theme_support( 'woocommerce' ); add_theme_support( 'automatic-feed-links' ); add_theme_support( 'title-tag' ); add_theme_support( 'post-thumbnails' ); register_nav_menus( array( 'primary' => esc_html__( 'Primary', 'aster-photography' ), 'social' => esc_html__( 'Social', 'aster-photography' ), ) ); add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', 'style', 'script', 'woocommerce', ) ); add_theme_support( 'post-formats', array( 'image', 'video', 'gallery', 'audio', ) ); add_theme_support( 'custom-background', apply_filters( 'aster_photography_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); add_theme_support( 'customize-selective-refresh-widgets' ); add_theme_support( 'custom-logo', array( 'height' => 250, 'width' => 250, 'flex-width' => true, 'flex-height' => true, ) ); add_theme_support( 'align-wide' ); add_theme_support( 'responsive-embeds' ); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, icons, and column width. */ add_editor_style( '/resource/css/editor-style.css' ); //Theme Wizard require get_parent_theme_file_path( '/theme-wizard/config.php' ); } endif; add_action( 'after_setup_theme', 'aster_photography_setup' ); function aster_photography_content_width() { $GLOBALS['content_width'] = apply_filters( 'aster_photography_content_width', 640 ); } add_action( 'after_setup_theme', 'aster_photography_content_width', 0 ); function aster_photography_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'aster-photography' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here.', 'aster-photography' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); // Regsiter 4 footer widgets. $aster_photography_footer_widget_column = get_theme_mod('aster_photography_footer_widget_column','4'); for ($aster_photography_i=1; $aster_photography_i<=$aster_photography_footer_widget_column; $aster_photography_i++) { register_sidebar( array( 'name' => __( 'Footer ', 'aster-photography' ) . $aster_photography_i, 'id' => 'aster-photography-footer-widget-' . $aster_photography_i, 'description' => __( 'The Footer Widget Area', 'aster-photography' ) . $aster_photography_i, 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); } } add_action( 'widgets_init', 'aster_photography_widgets_init' ); //Change number of products per page add_filter( 'loop_shop_per_page', 'aster_photography_products_per_page' ); function aster_photography_products_per_page( $cols ) { return get_theme_mod( 'aster_photography_products_per_page',9); } // Change number or products per row add_filter('loop_shop_columns', 'aster_photography_loop_columns'); if (!function_exists('aster_photography_loop_columns')) { function aster_photography_loop_columns() { return get_theme_mod( 'aster_photography_products_per_row', 3 ); } } /** * Enqueue scripts and styles. */ function aster_photography_scripts() { // Append .min if SCRIPT_DEBUG is false. $min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; // Slick style. wp_enqueue_style( 'slick-style', get_template_directory_uri() . '/resource/css/slick' . $min . '.css', array(), '1.8.1' ); // Owl Carousel style. wp_enqueue_style( 'owl-carousel-css', get_template_directory_uri() . '/resource/css/owl.carousel' . '.css', array(), '2.3.4' ); // Fontawesome style. wp_enqueue_style( 'font-awesome-css', esc_url(get_template_directory_uri())."/resource/css/fontawesome-all.css" ); // Main style. wp_enqueue_style( 'aster-photography-style', get_template_directory_uri() . '/style.css', array(), ASTER_PHOTOGRAPHY_VERSION ); // RTL style. wp_style_add_data('aster-photography-style', 'rtl', 'replace'); // Animate CSS wp_enqueue_style( 'animate-style', get_template_directory_uri() . '/resource/css/animate.css' ); // Navigation script. wp_enqueue_script( 'aster-photography-navigation-script', get_template_directory_uri() . '/resource/js/navigation.js', array(), ASTER_PHOTOGRAPHY_VERSION, true ); // Owl Carousel. wp_enqueue_script( 'owl-carouselscript', get_template_directory_uri() . '/resource/js/owl.carousel' . '.js', array( 'jquery' ), '2.3.4', true ); // Slick script. wp_enqueue_script( 'slick-script', get_template_directory_uri() . '/resource/js/slick' . $min . '.js', array( 'jquery' ), '1.8.1', true ); // Custom script. wp_enqueue_script( 'aster-photography-custom-script', get_template_directory_uri() . '/resource/js/custom.js', array( 'jquery' ), ASTER_PHOTOGRAPHY_VERSION, true ); // Wow script. wp_enqueue_script( 'wow-jquery', get_template_directory_uri() . '/resource/js/wow.js', array('jquery'),'' ,true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } // Include the file. require_once get_theme_file_path( 'theme-library/function-files/wptt-webfont-loader.php' ); } add_action( 'wp_enqueue_scripts', 'aster_photography_scripts' ); /** * Include wptt webfont loader. */ require_once get_theme_file_path( 'theme-library/function-files/wptt-webfont-loader.php' ); /** * Implement the Custom Header feature. */ require get_template_directory() . '/theme-library/custom-header.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/theme-library/function-files/template-tags.php'; /** * Functions which enhance the theme by hooking into WordPress. */ require get_template_directory() . '/theme-library/function-files/template-functions.php'; /** * Customizer additions. */ require get_template_directory() . '/theme-library/customizer.php'; /** * Google Fonts */ require get_template_directory() . '/theme-library/function-files/google-fonts.php'; /** * Dynamic CSS */ require get_template_directory() . '/theme-library/dynamic-css.php'; /** * Breadcrumb */ require get_template_directory() . '/theme-library/function-files/class-breadcrumb-trail.php'; /** * Getting Started */ require get_template_directory() . '/theme-library/getting-started/getting-started.php'; function aster_photography_links_setup() { if ( ! defined( 'ASTER_PHOTOGRAPHY_PREMIUM_PAGE' ) ) { define('ASTER_PHOTOGRAPHY_PREMIUM_PAGE',__('https://asterthemes.com/products/photographer-wordpress-theme','aster-photography')); } if ( ! defined( 'ASTER_PHOTOGRAPHY_THEME_PAGE' ) ) { define('ASTER_PHOTOGRAPHY_THEME_PAGE',__('https://asterthemes.com/products/aster-photography','aster-photography')); } if ( ! defined( 'ASTER_PHOTOGRAPHY_SUPPORT' ) ) { define('ASTER_PHOTOGRAPHY_SUPPORT',__('https://wordpress.org/support/theme/aster-photography/','aster-photography')); } if ( ! defined( 'ASTER_PHOTOGRAPHY_REVIEW' ) ) { define('ASTER_PHOTOGRAPHY_REVIEW',__('https://wordpress.org/support/theme/aster-photography/reviews/','aster-photography')); } if ( ! defined( 'ASTER_PHOTOGRAPHY_PRO_DEMO' ) ) { define('ASTER_PHOTOGRAPHY_PRO_DEMO',__('https://demo.asterthemes.com/aster-photography/','aster-photography')); } if ( ! defined( 'ASTER_PHOTOGRAPHY_THEME_DOCUMENTATION' ) ) { define('ASTER_PHOTOGRAPHY_THEME_DOCUMENTATION',__('https://demo.asterthemes.com/docs/aster-photography-free/','aster-photography')); } if ( ! defined( 'ASTER_PHOTOGRAPHY_PREMIUM_DOCUMENTATION' ) ) { define('ASTER_PHOTOGRAPHY_PREMIUM_DOCUMENTATION',__('https://demo.asterthemes.com/docs/aster-photography-pro/','aster-photography')); } if ( ! defined( 'ASTER_PHOTOGRAPHY_BUNDLE_PAGE' ) ) { define('ASTER_PHOTOGRAPHY_BUNDLE_PAGE',__('https://asterthemes.com/products/wp-theme-bundle','aster-photography')); } } add_action('after_setup_theme', 'aster_photography_links_setup'); // Enqueue Customizer live preview script function aster_photography_customizer_live_preview() { wp_enqueue_script( 'aster-photography-customizer', get_template_directory_uri() . '/js/customizer.js', array('jquery', 'customize-preview'), '', true ); } add_action('customize_preview_init', 'aster_photography_customizer_live_preview'); // Featured Image Dimension function aster_photography_blog_post_featured_image_dimension(){ if(get_theme_mod('aster_photography_blog_post_featured_image_dimension') == 'custom' ) { return true; } return false; } /** * Customizer Settings Functions */ require get_template_directory() . '/theme-library/function-files/customizer-settings-functions.php'; add_filter( 'woocommerce_enable_setup_wizard', '__return_false' ); // Reset all theme settings function aster_photography_reset_demo_import_settings() { if (current_user_can('manage_options')) { // List only demo import-related settings to reset remove_theme_mod('aster_photography_trending_product_heading'); remove_theme_mod('aster_photography_banner_button_label_'); remove_theme_mod('aster_photography_enable_service_section'); remove_theme_mod('aster_photography_enable_banner_section'); wp_send_json_success(array('message' => __('Demo import settings have been reset.', 'aster-photography'))); } else { wp_send_json_error(array('message' => __('Permission denied.', 'aster-photography'))); } } add_action('wp_ajax_aster_photography_reset_demo_import_settings', 'aster_photography_reset_demo_import_settings');