/** * studylms functions and definitions * * Set up the theme and provides some helper functions, which are used in the * theme as custom template tags. Others are attached to action and filter * hooks in WordPress to change core functionality. * * When using a child theme you can override certain functions (those wrapped * in a function_exists() call) by defining them first in your child theme's * functions.php file. The child theme's functions.php file is included before * the parent theme's file, so the child theme functions would be used. * * @link https://codex.wordpress.org/Theme_Development * @link https://codex.wordpress.org/Child_Themes * * Functions that are not pluggable (not wrapped in function_exists()) are * instead attached to a filter or action hook. * * For more information on hooks, actions, and filters, * {@link https://codex.wordpress.org/Plugin_API} * * @package WordPress * @subpackage Studylms * @since Studylms 1.22 */ define( 'STUDYLMS_THEME_VERSION', '1.22' ); define( 'STUDYLMS_DEMO_MODE', false ); if ( ! isset( $content_width ) ) { $content_width = 660; } if ( ! function_exists( 'studylms_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. * * @since Studylms 1.0 */ function studylms_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on studylms, use a find and replace * to change 'studylms' to the name of your theme in all the template files */ load_theme_textdomain( 'studylms', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded 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. * * See: https://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails */ add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 825, 510, true ); add_image_size( 'studylms-event-thumb', 220, 130, true ); // This theme uses wp_nav_menu() in two locations. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'studylms' ), 'topmenu' => esc_html__( 'Top Menu', 'studylms' ), ) ); /* * 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' ) ); add_theme_support( "woocommerce" ); /* * Enable support for Post Formats. * * See: https://codex.wordpress.org/Post_Formats */ add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'quote', 'link', 'gallery', 'status', 'audio', 'chat' ) ); $color_scheme = studylms_get_color_scheme(); $default_color = trim( $color_scheme[0], '#' ); // Setup the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'studylms_custom_background_args', array( 'default-color' => $default_color, 'default-attachment' => 'fixed', ) ) ); // Add support for Block Styles. add_theme_support( 'wp-block-styles' ); add_theme_support( 'responsive-embeds' ); // Add support for full and wide align images. add_theme_support( 'align-wide' ); // Add support for editor styles. add_theme_support( 'editor-styles' ); // Enqueue editor styles. add_editor_style( array( 'css/style-editor.css', studylms_fonts_url() ) ); studylms_get_load_plugins(); } endif; // studylms_setup add_action( 'after_setup_theme', 'studylms_setup' ); /** * Load Google Front */ function studylms_fonts_url() { $fonts_url = ''; /* Translators: If there are characters in your language that are not * supported by Montserrat, translate this to 'off'. Do not translate * into your own language. */ $roboto = _x( 'on', 'Roboto+Slab font: on or off', 'studylms' ); $opensans = _x( 'on', 'Open+Sans font: on or off', 'studylms' ); $lato = _x( 'on', 'Lato font: on or off', 'studylms' ); if ( 'off' !== $opensans || 'off' !== $lato || 'off' !== $roboto ) { $font_families = array(); if ( 'off' !== $opensans ) { $font_families[] = 'Open+Sans:300,400,600,700,800'; } if ( 'off' !== $lato ) { $font_families[] = 'Lato:300,400,500,700,900'; } if ( 'off' !== $roboto ) { $font_families[] = 'Roboto+Slab:300,400,700'; } $query_args = array( 'family' => ( implode( '|', $font_families ) ), 'subset' => urlencode( 'latin,latin-ext' ), ); $protocol = is_ssl() ? 'https:' : 'http:'; $fonts_url = add_query_arg( $query_args, $protocol .'//fonts.googleapis.com/css' ); } return esc_url_raw( $fonts_url ); } function studylms_full_fonts_url() { $protocol = is_ssl() ? 'https:' : 'http:'; wp_enqueue_style( 'studylms-theme-fonts', studylms_fonts_url(), array(), null ); } add_action('wp_enqueue_scripts', 'studylms_full_fonts_url'); /** * JavaScript Detection. * * Adds a `js` class to the root `<html>` element when JavaScript is detected. * * @since Studylms 1.1 */ function studylms_javascript_detection() { wp_add_inline_script( 'studylms-typekit', "(function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement);" ); } add_action( 'wp_enqueue_scripts', 'studylms_javascript_detection', 0 ); /** * Enqueue scripts and styles. * * @since Studylms 1.0 */ function studylms_scripts() { // Load our main stylesheet. $css_folder = studylms_get_css_folder(); $js_folder = studylms_get_js_folder(); $min = studylms_get_asset_min(); // load bootstrap style if( is_rtl() ){ wp_enqueue_style( 'bootstrap', $css_folder . '/bootstrap-rtl'.$min.'.css', array(), '3.2.0' ); }else{ wp_enqueue_style( 'bootstrap', $css_folder . '/bootstrap'.$min.'.css', array(), '3.2.0' ); } $css_path = $css_folder . '/template'.$min.'.css'; wp_enqueue_style( 'studylms-template', $css_path, array(), '3.2' ); wp_enqueue_style( 'studylms-style', get_template_directory_uri() . '/style.css', array(), '3.2' ); //load font awesome wp_enqueue_style( 'font-awesomes', $css_folder . '/font-awesome'.$min.'.css', array(), '4.7.0' ); //load font monia wp_enqueue_style( 'font-monia', $css_folder . '/font-monia'.$min.'.css', array(), '1.8.0' ); // load animate version 3.5.0 wp_enqueue_style( 'animate-style', $css_folder . '/animate'.$min.'.css', array(), '3.5.0' ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } wp_enqueue_style( 'perfect-scrollbar', $css_folder . '/perfect-scrollbar'.$min.'.css', array(), '2.3.2' ); wp_enqueue_script( 'bootstrap', $js_folder . '/bootstrap'.$min.'.js', array( 'jquery' ), '20150330', true ); wp_enqueue_script( 'owl-carousel', $js_folder . '/owl.carousel'.$min.'.js', array( 'jquery' ), '2.0.0', true ); wp_enqueue_script( 'perfect-scrollbar-jquery', $js_folder . '/perfect-scrollbar.jquery'.$min.'.js', array( 'jquery' ), '2.0.0', true ); wp_enqueue_script( 'jquery-magnific-popup', $js_folder . '/magnific/jquery.magnific-popup'.$min.'.js', array( 'jquery' ), '1.1.0', true ); wp_enqueue_style( 'magnific-popup', $js_folder . '/magnific/magnific-popup'.$min.'.css', array(), '1.1.0' ); // lazyload image wp_enqueue_script( 'jquery-unveil', $js_folder . '/jquery.unveil'.$min.'.js', array( 'jquery' ), '20150330', true ); wp_enqueue_script( 'sticky-kit', $js_folder . '/sticky-kit'.$min.'.js', array( 'jquery' ), '1.1.2', true ); wp_enqueue_script( 'studylms-countdown', $js_folder . '/countdown'.$min.'.js', array( 'jquery' ), '20150330', true ); wp_register_script( 'studylms-functions', $js_folder . '/functions'.$min.'.js', array( 'jquery' ), '20150330', true ); wp_localize_script( 'studylms-functions', 'studylms_ajax', array( 'ajaxurl' => admin_url( 'admin-ajax.php' ), 'bookmark_view_text' => esc_html__( 'View Your Bookmark ', 'studylms' ) ) ); wp_enqueue_script( 'studylms-functions' ); if ( studylms_get_config('header_js') != "" ) { wp_add_inline_script( 'studylms-header', studylms_get_config('header_js') ); } } add_action( 'wp_enqueue_scripts', 'studylms_scripts', 100 ); function studylms_footer_scripts() { if ( studylms_get_config('footer_js') != "" ) { wp_add_inline_script( 'studylms-footer', studylms_get_config('footer_js') ); } } add_action('wp_footer', 'studylms_footer_scripts'); /** * Display descriptions in main navigation. * * @since Studylms 1.0 * * @param string $item_output The menu item output. * @param WP_Post $item Menu item object. * @param int $depth Depth of the menu. * @param array $args wp_nav_menu() arguments. * @return string Menu item with possible description. */ function studylms_nav_description( $item_output, $item, $depth, $args ) { if ( 'primary' == $args->theme_location && $item->description ) { $item_output = str_replace( $args->link_after . '</a>', '<div class="menu-item-description">' . $item->description . '</div>' . $args->link_after . '</a>', $item_output ); } return $item_output; } add_filter( 'walker_nav_menu_start_el', 'studylms_nav_description', 10, 4 ); /** * Add a `screen-reader-text` class to the search form's submit button. * * @since Studylms 1.0 * * @param string $html Search form HTML. * @return string Modified search form HTML. */ function studylms_search_form_modify( $html ) { return str_replace( 'class="search-submit"', 'class="search-submit screen-reader-text"', $html ); } add_filter( 'get_search_form', 'studylms_search_form_modify' ); /** * Function for remove srcset (WP4.4) * */ function studylms_disable_srcset( $sources ) { return false; } add_filter( 'wp_calculate_image_srcset', 'studylms_disable_srcset' ); /** * Function get opt_name * */ function studylms_get_opt_name() { return 'studylms_theme_options'; } add_filter( 'apus_framework_get_opt_name', 'studylms_get_opt_name' ); function studylms_register_demo_mode() { if ( defined('STUDYLMS_DEMO_MODE') && STUDYLMS_DEMO_MODE ) { return true; } return false; } add_filter( 'apus_framework_register_demo_mode', 'studylms_register_demo_mode' ); function studylms_get_demo_preset() { $preset = ''; if ( defined('STUDYLMS_DEMO_MODE') && STUDYLMS_DEMO_MODE ) { if ( isset($_GET['_preset']) && $_GET['_preset'] ) { $presets = get_option( 'apus_framework_presets' ); if ( is_array($presets) && isset($presets[$_GET['_preset']]) ) { $preset = $_GET['_preset']; } } else { $preset = get_option( 'apus_framework_preset_default' ); } } return $preset; } function studylms_exporter_settings_option_keys($options) { return array_merge($options, array('edr_student_registered', 'edr_quiz_grade', 'edr_membership_register', 'edr_membership_renew', 'edr_tax_classes', 'edr_permalinks', 'edr_settings', 'edr_payment_gateways')); } add_filter( 'apus_exporter_settings_option_keys', 'studylms_exporter_settings_option_keys' ); function studylms_get_config($name, $default = '') { global $studylms_options; if ( isset($studylms_options[$name]) ) { return $studylms_options[$name]; } return $default; } function studylms_get_global_config($name, $default = '') { $options = get_option( 'studylms_theme_options', array() ); if ( isset($options[$name]) ) { return $options[$name]; } return $default; } function studylms_get_image_lazy_loading() { return studylms_get_config('image_lazy_loading'); } add_filter( 'apus_framework_get_image_lazy_loading', 'studylms_get_image_lazy_loading'); function studylms_register_sidebar() { register_sidebar( array( 'name' => esc_html__( 'Sidebar Default', 'studylms' ), 'id' => 'sidebar-default', 'description' => esc_html__( 'Add widgets here to appear in your Sidebar.', 'studylms' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Socials Sidebar', 'studylms' ), 'id' => 'socials-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'studylms' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Blog sidebar', 'studylms' ), 'id' => 'blog-right-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'studylms' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Product sidebar', 'studylms' ), 'id' => 'product-right-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'studylms' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Courses Sidebar', 'studylms' ), 'id' => 'course-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'studylms' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Single Course Sidebar', 'studylms' ), 'id' => 'single-course-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'studylms' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Event Sidebar', 'studylms' ), 'id' => 'single-event-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'studylms' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); } add_action( 'widgets_init', 'studylms_register_sidebar' ); function studylms_get_load_plugins() { // framework $plugins[] =(array( 'name' => esc_html__( 'Apus Framework For Themes', 'studylms' ), 'slug' => 'apus-framework', 'required' => true, 'source' => get_template_directory(). '/inc/plugins/apus-framework.zip' )); $plugins[] =(array( 'name' => esc_html__( 'Cmb2', 'studylms' ), 'slug' => 'cmb2', 'required' => true, )); $plugins[] =(array( 'name' => esc_html__( 'Visual Composer', 'studylms' ), 'slug' => 'js_composer', 'required' => true, 'source' => get_template_directory(). '/inc/plugins/js_composer.zip' )); $plugins[] =(array( 'name' => esc_html__( 'Revolution Slider', 'studylms' ), 'slug' => 'revslider', 'required' => true, 'source' => get_template_directory(). '/inc/plugins/revslider.zip' )); // for woocommerce $plugins[] =(array( 'name' => esc_html__( 'WooCommerce', 'studylms' ), 'slug' => 'woocommerce', 'required' => true, )); // for other plugins $plugins[] =(array( 'name' => esc_html__( 'MailChimp for WordPress', 'studylms' ), 'slug' => 'mailchimp-for-wp', 'required' => true )); $plugins[] =(array( 'name' => esc_html__( 'Contact Form 7', 'studylms' ), 'slug' => 'contact-form-7', 'required' => true, )); $plugins[] =(array( 'name' => esc_html__( 'Educator 2', 'studylms' ), 'slug' => 'educator', 'required' => true, 'source' => get_template_directory(). '/inc/plugins/educator.zip' )); $plugins[] =(array( 'name' => esc_html__( 'The Events Calendar', 'studylms' ), 'slug' => 'the-events-calendar', 'required' => true, )); $plugins[] =(array( 'name' => esc_html__( 'WP User Avatars', 'studylms' ), 'slug' => 'wp-user-avatars', 'required' => true, )); tgmpa( $plugins ); } require get_template_directory() . '/inc/plugins/class-tgm-plugin-activation.php'; require get_template_directory() . '/inc/functions-helper.php'; require get_template_directory() . '/inc/functions-frontend.php'; /** * Implement the Custom Header feature. * */ require get_template_directory() . '/inc/custom-header.php'; require get_template_directory() . '/inc/classes/megamenu.php'; require get_template_directory() . '/inc/classes/mobilemenu.php'; /** * Custom template tags for this theme. * */ require get_template_directory() . '/inc/template-tags.php'; if ( defined( 'APUS_FRAMEWORK_REDUX_ACTIVED' ) ) { require get_template_directory() . '/inc/vendors/redux-framework/redux-config.php'; define( 'STUDYLMS_REDUX_FRAMEWORK_ACTIVED', true ); } if( in_array( 'cmb2/init.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) { require get_template_directory() . '/inc/vendors/cmb2/page.php'; require get_template_directory() . '/inc/vendors/cmb2/footer.php'; require get_template_directory() . '/inc/vendors/cmb2/educator.php'; require get_template_directory() . '/inc/vendors/cmb2/event.php'; define( 'STUDYLMS_CMB2_ACTIVED', true ); } if( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) { require get_template_directory() . '/inc/vendors/woocommerce/functions.php'; define( 'STUDYLMS_WOOCOMMERCE_ACTIVED', true ); } if( in_array( 'js_composer/js_composer.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) { require get_template_directory() . '/inc/vendors/visualcomposer/functions.php'; require get_template_directory() . '/inc/vendors/visualcomposer/google-maps-styles.php'; if ( defined('WPB_VC_VERSION') && version_compare( WPB_VC_VERSION, '6.0', '>=' ) ) { require get_template_directory() . '/inc/vendors/visualcomposer/vc-map-posts2.php'; } else { require get_template_directory() . '/inc/vendors/visualcomposer/vc-map-posts.php'; } require get_template_directory() . '/inc/vendors/visualcomposer/vc-map-theme.php'; define( 'STUDYLMS_JS_COMPOSER_ACTIVED', true ); } if( in_array( 'educator/educator.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) { require get_template_directory() . '/inc/vendors/educator/functions.php'; require get_template_directory() . '/inc/vendors/educator/functions-user.php'; require get_template_directory() . '/inc/vendors/educator/functions-review.php'; require get_template_directory() . '/inc/vendors/educator/vc-map.php'; require get_template_directory() . '/inc/vendors/educator/functions-bookmark.php'; define( 'STUDYLMS_EDUCATOR_ACTIVED', true ); } if( in_array( 'the-events-calendar/the-events-calendar.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) { require get_template_directory() . '/inc/vendors/the-events-calendar/functions.php'; require get_template_directory() . '/inc/vendors/the-events-calendar/vc-map.php'; define( 'STUDYLMS_EVENT_ACTIVED', true ); } if( in_array( 'apus-framework/apus-framework.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) { require get_template_directory() . '/inc/widgets/contact-info.php'; require get_template_directory() . '/inc/widgets/custom_menu.php'; require get_template_directory() . '/inc/widgets/recent_comment.php'; require get_template_directory() . '/inc/widgets/recent_post.php'; require get_template_directory() . '/inc/widgets/search.php'; require get_template_directory() . '/inc/widgets/single_image.php'; require get_template_directory() . '/inc/widgets/socials.php'; require get_template_directory() . '/inc/widgets/course-category.php'; require get_template_directory() . '/inc/widgets/courses.php'; define( 'STUDYLMS_FRAMEWORK_ACTIVED', true ); } /** * Customizer additions. * */ require get_template_directory() . '/inc/customizer.php'; /** * Custom Styles * */ require get_template_directory() . '/inc/custom-styles.php';<!DOCTYPE html> <html lang="en-US" class="no-js"> <head> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=AW-16483697612"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'AW-16483697612'); </script> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width"> <link rel="profile" href="http://gmpg.org/xfn/11"> <link rel="pingback" href="https://trishanatechnologies.com/xmlrpc.php"> <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' /> <!-- This site is optimized with the Yoast SEO plugin v21.0 - https://yoast.com/wordpress/plugins/seo/ --> <meta name="description" content="Trishana Technologies is the best IT training institute in Bangalore and Chennai, with more than seven branches & job placement guarantee" /> <link rel="canonical" href="https://trishanatechnologies.com/" /> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="website" /> <meta property="og:title" content="IT Training Institute in Bangalore | Software Training in Bangalore" /> <meta property="og:description" content="Trishana Technologies is the best IT training institute in Bangalore and Chennai, with more than seven branches & job placement guarantee" /> <meta property="og:url" content="https://trishanatechnologies.com/" /> <meta property="og:site_name" content="Trishana Technologies" /> <meta property="article:modified_time" content="2025-03-17T09:02:07+00:00" /> <meta name="twitter:card" content="summary_large_image" /> <!-- / Yoast SEO plugin. --> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://trishanatechnologies.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Ftrishanatechnologies.com%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://trishanatechnologies.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Ftrishanatechnologies.com%2F&format=xml" /> <!-- This site uses the Google Analytics by MonsterInsights plugin v10.2.2 - Using Analytics tracking - https://www.monsterinsights.com/ --> <script src="//www.googletagmanager.com/gtag/js?id=G-YT4YKFH8LE" data-cfasync="false" data-wpfc-render="false" type="text/javascript" async></script> <script data-cfasync="false" data-wpfc-render="false" type="text/javascript"> var mi_version = '10.2.2'; var mi_track_user = true; var mi_no_track_reason = ''; var MonsterInsightsDefaultLocations = {"page_location":"https:\/\/trishanatechnologies.com\/"}; if ( typeof MonsterInsightsPrivacyGuardFilter === 'function' ) { var MonsterInsightsLocations = (typeof MonsterInsightsExcludeQuery === 'object') ? MonsterInsightsPrivacyGuardFilter( MonsterInsightsExcludeQuery ) : MonsterInsightsPrivacyGuardFilter( MonsterInsightsDefaultLocations ); } else { var MonsterInsightsLocations = (typeof MonsterInsightsExcludeQuery === 'object') ? MonsterInsightsExcludeQuery : MonsterInsightsDefaultLocations; } var disableStrs = [ 'ga-disable-G-YT4YKFH8LE', ]; /* Function to detect opted out users */ function __gtagTrackerIsOptedOut() { for (var index = 0; index < disableStrs.length; index++) { if (document.cookie.indexOf(disableStrs[index] + '=true') > -1) { return true; } } return false; } /* Disable tracking if the opt-out cookie exists. */ if (__gtagTrackerIsOptedOut()) { for (var index = 0; index < disableStrs.length; index++) { window[disableStrs[index]] = true; } } /* Opt-out function */ function __gtagTrackerOptout() { for (var index = 0; index < disableStrs.length; index++) { document.cookie = disableStrs[index] + '=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/'; window[disableStrs[index]] = true; } } if ('undefined' === typeof gaOptout) { function gaOptout() { __gtagTrackerOptout(); } } window.dataLayer = window.dataLayer || []; window.MonsterInsightsDualTracker = { helpers: {}, trackers: {}, }; if (mi_track_user) { function __gtagDataLayer() { dataLayer.push(arguments); } function __gtagTracker(type, name, parameters) { if (!parameters) { parameters = {}; } if (parameters.send_to) { __gtagDataLayer.apply(null, arguments); return; } if (type === 'event') { parameters.send_to = monsterinsights_frontend.v4_id; var hookName = name; if (typeof parameters['event_category'] !== 'undefined') { hookName = parameters['event_category'] + ':' + name; } if (typeof MonsterInsightsDualTracker.trackers[hookName] !== 'undefined') { MonsterInsightsDualTracker.trackers[hookName](parameters); } else { __gtagDataLayer('event', name, parameters); } } else { __gtagDataLayer.apply(null, arguments); } } __gtagTracker('js', new Date()); __gtagTracker('set', { 'developer_id.dZGIzZG': true, }); if ( MonsterInsightsLocations.page_location ) { __gtagTracker('set', MonsterInsightsLocations); } __gtagTracker('config', 'G-YT4YKFH8LE', {"forceSSL":"true","link_attribution":"true"} ); window.gtag = __gtagTracker; (function () { /* https://developers.google.com/analytics/devguides/collection/analyticsjs/ */ /* ga and __gaTracker compatibility shim. */ var noopfn = function () { return null; }; var newtracker = function () { return new Tracker(); }; var Tracker = function () { return null; }; var p = Tracker.prototype; p.get = noopfn; p.set = noopfn; p.send = function () { var args = Array.prototype.slice.call(arguments); args.unshift('send'); __gaTracker.apply(null, args); }; var __gaTracker = function () { var len = arguments.length; if (len === 0) { return; } var f = arguments[len - 1]; if (typeof f !== 'object' || f === null || typeof f.hitCallback !== 'function') { if ('send' === arguments[0]) { var hitConverted, hitObject = false, action; if ('event' === arguments[1]) { if ('undefined' !== typeof arguments[3]) { hitObject = { 'eventAction': arguments[3], 'eventCategory': arguments[2], 'eventLabel': arguments[4], 'value': arguments[5] ? arguments[5] : 1, } } } if ('pageview' === arguments[1]) { if ('undefined' !== typeof arguments[2]) { hitObject = { 'eventAction': 'page_view', 'page_path': arguments[2], } } } if (typeof arguments[2] === 'object') { hitObject = arguments[2]; } if (typeof arguments[5] === 'object') { Object.assign(hitObject, arguments[5]); } if ('undefined' !== typeof arguments[1].hitType) { hitObject = arguments[1]; if ('pageview' === hitObject.hitType) { hitObject.eventAction = 'page_view'; } } if (hitObject) { action = 'timing' === arguments[1].hitType ? 'timing_complete' : hitObject.eventAction; hitConverted = mapArgs(hitObject); __gtagTracker('event', action, hitConverted); } } return; } function mapArgs(args) { var arg, hit = {}; var gaMap = { 'eventCategory': 'event_category', 'eventAction': 'event_action', 'eventLabel': 'event_label', 'eventValue': 'event_value', 'nonInteraction': 'non_interaction', 'timingCategory': 'event_category', 'timingVar': 'name', 'timingValue': 'value', 'timingLabel': 'event_label', 'page': 'page_path', 'location': 'page_location', 'title': 'page_title', 'referrer' : 'page_referrer', }; for (arg in args) { if (!(!args.hasOwnProperty(arg) || !gaMap.hasOwnProperty(arg))) { hit[gaMap[arg]] = args[arg]; } else { hit[arg] = args[arg]; } } return hit; } try { f.hitCallback(); } catch (ex) { } }; __gaTracker.create = newtracker; __gaTracker.getByName = newtracker; __gaTracker.getAll = function () { return []; }; __gaTracker.remove = noopfn; __gaTracker.loaded = true; window['__gaTracker'] = __gaTracker; })(); } else { console.log(""); (function () { function __gtagTracker() { return null; } window['__gtagTracker'] = __gtagTracker; window['gtag'] = __gtagTracker; })(); } </script> <!-- / Google Analytics by MonsterInsights --> <style id="wp-img-auto-sizes-contain-inline-css"> img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ </style> <style id="wp-emoji-styles-inline-css"> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } /*# sourceURL=wp-emoji-styles-inline-css */ </style> <style id="wp-block-library-inline-css"> :root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}} /*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */ </style> <style id="classic-theme-styles-inline-css"> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} /*# sourceURL=/wp-includes/css/classic-themes.min.css */ </style> <link rel='stylesheet' id='contact-form-7-css' href='https://trishanatechnologies.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.8' media='all' /> <link rel='stylesheet' id='edr-base-css' href='https://trishanatechnologies.com/wp-content/plugins/educator/assets/public/css/base.css?ver=2.0.3' media='all' /> <link rel='stylesheet' id='siteorigin-panels-front-css' href='https://trishanatechnologies.com/wp-content/plugins/siteorigin-panels/css/front-flex.min.css?ver=2.25.3' media='all' /> <link rel='stylesheet' id='topbar-css' href='https://trishanatechnologies.com/wp-content/plugins/top-bar/inc/../css/topbar_style.css?ver=7.0' media='all' /> <link rel='stylesheet' id='hfe-style-css' href='https://trishanatechnologies.com/wp-content/plugins/header-footer-elementor/assets/css/header-footer-elementor.css?ver=1.6.23' media='all' /> <link rel='stylesheet' id='elementor-icons-css' href='https://trishanatechnologies.com/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.21.0' media='all' /> <link rel='stylesheet' id='elementor-frontend-css' href='https://trishanatechnologies.com/wp-content/plugins/elementor/assets/css/frontend-lite.min.css?ver=3.15.3' media='all' /> <link rel='stylesheet' id='swiper-css' href='https://trishanatechnologies.com/wp-content/plugins/elementor/assets/lib/swiper/css/swiper.min.css?ver=5.3.6' media='all' /> <link rel='stylesheet' id='elementor-post-2238-css' href='https://trishanatechnologies.com/wp-content/uploads/elementor/css/post-2238.css?ver=1743251322' media='all' /> <link rel='stylesheet' id='elementor-pro-css' href='https://trishanatechnologies.com/wp-content/plugins/elementor-pro/assets/css/frontend-lite.min.css?ver=3.5.2' media='all' /> <link rel='stylesheet' id='elementor-global-css' href='https://trishanatechnologies.com/wp-content/uploads/elementor/css/global.css?ver=1743251322' media='all' /> <link rel='stylesheet' id='elementor-post-4856-css' href='https://trishanatechnologies.com/wp-content/uploads/elementor/css/post-4856.css?ver=1743251322' media='all' /> <link rel='stylesheet' id='hfe-widgets-style-css' href='https://trishanatechnologies.com/wp-content/plugins/header-footer-elementor/inc/widgets-css/frontend.css?ver=1.6.23' media='all' /> <link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Roboto:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic%7CRoboto+Slab:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic&display=auto&ver=7.0' media='all' /> <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script async data-wp-strategy="async" id="monsterinsights-frontend-script-js" src="https://trishanatechnologies.com/wp-content/plugins/google-analytics-for-wordpress/assets/js/frontend-gtag.min.js?ver=10.2.2"></script> <script data-cfasync="false" data-wpfc-render="false" type="text/javascript" id='monsterinsights-frontend-script-js-extra'>/* <![CDATA[ */ var monsterinsights_frontend = {"js_events_tracking":"true","download_extensions":"doc,pdf,ppt,zip,xls,docx,pptx,xlsx","inbound_paths":"[{\"path\":\"\\\/go\\\/\",\"label\":\"affiliate\"},{\"path\":\"\\\/recommend\\\/\",\"label\":\"affiliate\"}]","home_url":"https:\/\/trishanatechnologies.com","hash_tracking":"false","v4_id":"G-YT4YKFH8LE"};/* ]]> */ </script> <script id="jquery-core-js" src="https://trishanatechnologies.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script> <script id="jquery-migrate-js" src="https://trishanatechnologies.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script> <script id="topbar_frontjs-js-extra"> var tpbr_settings = {"fixed":"notfixed","user_who":"notloggedin","guests_or_users":"all","message":"\u003Ci class='fas fa-phone-alt'\u003E\u003C/i\u003E +91 9513015050 \u00a0\u00a0\u00a0\u00a0\u003Ci class='fa fa-envelope'\u003E\u003C/i\u003E info@trishanatechnologies.com \u00a0\u00a0\u003Ci class=\"fa fa-facebook-f\"\u003E\u003C/i\u003E \u00a0\u00a0\u003Ci class=\"fa fa-instagram\"\u003E\u003C/i\u003E\u00a0\u00a0\u00a0\u003Ci class=\"fa fa-linkedin\"\u003E\u003C/i\u003E\u00a0\u00a0\u00a0\u003Ci class=\"fa fa-youtube\"\u003E\u003C/i\u003E","status":"active","yn_button":"button","color":"#1874a9","button_text":"fa","button_url":"https://www.facebook.com/TrishanaTechnologiesbangalore","button_behavior":"newwindow","is_admin_bar":"no","detect_sticky":"0"}; //# sourceURL=topbar_frontjs-js-extra </script> <script id="topbar_frontjs-js" src="https://trishanatechnologies.com/wp-content/plugins/top-bar/inc/../js/tpbr_front.min.js?ver=7.0"></script> <link rel="https://api.w.org/" href="https://trishanatechnologies.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://trishanatechnologies.com/wp-json/wp/v2/pages/1466" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://trishanatechnologies.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 7.0" /> <link rel='shortlink' href='https://trishanatechnologies.com/' /> <meta name="framework" content="Redux 4.1.24" /> <script type="text/javascript" src='//trishanatechnologies.com/wp-content/uploads/custom-css-js/992.js?v=2450'></script> <link rel='stylesheet' id='960-css' href='//trishanatechnologies.com/wp-content/uploads/custom-css-js/960.css?v=5759' type="text/css" media='all' /> <!-- HFCM by 99 Robots - Snippet # 1: Google Analytics --> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-QCJ4CJKX98"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-QCJ4CJKX98'); </script> <!-- /end HFCM by 99 Robots --> <script type="application/ld+json"> { "@context": "http://schema.org", "@type": "Book", "name": "Best Software Training institutes in Bangalore| Trishana Technologies", "image": "https://trishanatechnologies.com/wp-content/uploads/2022/07/logo.png", "author": { "@type": "Person", "name": "Swapna" }, "datePublished": "2022-11-18", "aggregateRating": { "@type": "AggregateRating", "ratingValue": "4.6", "bestRating": "5", "worstRating": "3.5", "ratingCount": "1342" }, "review": { "@type": "Review", "author": { "@type": "Person", "name": "Aman" }, "datePublished": "2022-11-15", "reviewRating": { "@type": "Rating", "ratingValue": "4.5", "bestRating": "5", "worstRating": "3" }, "reviewBody": "Best IT Training I have gone through, good instructors, very supportive, most recommended Training Institute." } } { "@context": "http://schema.org", "@type": "Product", "description": "The premier training institute in IT industry offer world class teaching and top-notch training to help you discover and groom the technical ability in you. We provide best-in-class infrastructure, online resources, exposure to real-time projects and unparalleled placement support.", "url": "https://trishanatechnologies.com/", "brand": { "@type": "Brand", "name": "Trishana Technologies", "logo": "https://trishanatechnologies.com/wp-content/uploads/2022/07/logo.png" } } { "@context": "https://schema.org", "@type": "FAQPage", "mainEntity": [{ "@type": "Question", "name": "Do we get the Certificate after completing the course?", "acceptedAnswer": { "@type": "Answer", "text": "Yes this is a certified course, you will get the certification after completing the course." } }, { "@type": "Question", "name": "What is the average salary range after completing the course?", "acceptedAnswer": { "@type": "Answer", "text": "The average salary for Angular JS freshers is 3lacs-4lacs per annum." } }, { "@type": "Question", "name": "Is a demo class available for AWS course before enrolling?", "acceptedAnswer": { "@type": "Answer", "text": "Yes, there is a free live demo class available." } }, { "@type": "Question", "name": "How much time does it take to complete Devops Course?", "acceptedAnswer": { "@type": "Answer", "text": "It takes 1.5 months to complete Devops Course." } }, { "@type": "Question", "name": "Is there any placement assistence after completing the course?", "acceptedAnswer": { "@type": "Answer", "text": "Yes, we provide 100% placement assistence after completing the course." } }] } </script><meta name="generator" content="Elementor 3.15.3; features: e_dom_optimization, e_optimized_assets_loading, e_optimized_css_loading, additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-auto"> <script type="application/ld+json" class="saswp-schema-markup-output"> [{"@context":"https://schema.org/","@type":"WebSite","@id":"https://trishanatechnologies.com#website","headline":"Trishana Technologies","name":"Trishana Technologies","description":"Trishana Technologies is the best IT training institute in Bangalore and Chennai, with more than seven branches & job placement guarantee","url":"https://trishanatechnologies.com","potentialAction":{"@type":"SearchAction","target":"https://trishanatechnologies.com?s={search_term_string}","query-input":"required name=search_term_string"}}, {"@context":"https://schema.org/","@type":"Organization","@id":"https://trishanatechnologies.com#Organization","name":"Trishana Technologies","url":"https://trishanatechnologies.com","sameAs":[]}] </script> <meta name="generator" content="Powered by Slider Revolution 6.5.11 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /> <style type="text/css" media="all" id="siteorigin-panels-layouts-head">/* Layout 1466 */ #pgc-1466-0-0 , #pgc-1466-3-0 , #pgc-1466-5-0 , #pgc-1466-6-0 { width:100%;width:calc(100% - ( 0 * 30px ) ) } #pg-1466-0 , #pg-1466-1 , #pg-1466-2 , #pg-1466-3 , #pl-1466 .so-panel { margin-bottom:30px } #pgc-1466-1-0 , #pgc-1466-1-1 , #pgc-1466-1-2 , #pgc-1466-1-3 { width:25%;width:calc(25% - ( 0.75 * 30px ) ) } #pgc-1466-2-0 , #pgc-1466-2-1 { width:50%;width:calc(50% - ( 0.5 * 30px ) ) } #pgc-1466-4-0 { width:74.9745%;width:calc(74.9745% - ( 0.25025484199796 * 30px ) ) } #pgc-1466-4-1 { width:25.0255%;width:calc(25.0255% - ( 0.74974515800204 * 30px ) ) } #pl-1466 #panel-1466-4-1-0 { margin:15px 15px 15px 15px } #pg-1466-4 , #pg-1466-5 , #pl-1466 .so-panel:last-of-type { margin-bottom:0px } #pg-1466-1.panel-has-style > .panel-row-style, #pg-1466-1.panel-no-style , #pg-1466-2.panel-has-style > .panel-row-style, #pg-1466-2.panel-no-style , #pg-1466-4.panel-has-style > .panel-row-style, #pg-1466-4.panel-no-style , #pg-1466-5.panel-has-style > .panel-row-style, #pg-1466-5.panel-no-style , #pg-1466-6.panel-has-style > .panel-row-style, #pg-1466-6.panel-no-style { -webkit-align-items:flex-start;align-items:flex-start } #pg-1466-2> .panel-row-style { background-color:#4fa2e8;padding:15px 15px 15px 15px } #pg-1466-4> .panel-row-style { background-color:#000000;padding:15px 15px 15px 15px } #pg-1466-5> .panel-row-style { background-color:#f6f8fb } #pg-1466-6> .panel-row-style { background-color:#4b4f52 } @media (max-width:780px){ #pg-1466-0.panel-no-style, #pg-1466-0.panel-has-style > .panel-row-style, #pg-1466-0 , #pg-1466-1.panel-no-style, #pg-1466-1.panel-has-style > .panel-row-style, #pg-1466-1 , #pg-1466-2.panel-no-style, #pg-1466-2.panel-has-style > .panel-row-style, #pg-1466-2 , #pg-1466-3.panel-no-style, #pg-1466-3.panel-has-style > .panel-row-style, #pg-1466-3 , #pg-1466-4.panel-no-style, #pg-1466-4.panel-has-style > .panel-row-style, #pg-1466-4 , #pg-1466-5.panel-no-style, #pg-1466-5.panel-has-style > .panel-row-style, #pg-1466-5 , #pg-1466-6.panel-no-style, #pg-1466-6.panel-has-style > .panel-row-style, #pg-1466-6 { -webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column } #pg-1466-0 > .panel-grid-cell , #pg-1466-0 > .panel-row-style > .panel-grid-cell , #pg-1466-1 > .panel-grid-cell , #pg-1466-1 > .panel-row-style > .panel-grid-cell , #pg-1466-2 > .panel-grid-cell , #pg-1466-2 > .panel-row-style > .panel-grid-cell , #pg-1466-3 > .panel-grid-cell , #pg-1466-3 > .panel-row-style > .panel-grid-cell , #pg-1466-4 > .panel-grid-cell , #pg-1466-4 > .panel-row-style > .panel-grid-cell , #pg-1466-5 > .panel-grid-cell , #pg-1466-5 > .panel-row-style > .panel-grid-cell , #pg-1466-6 > .panel-grid-cell , #pg-1466-6 > .panel-row-style > .panel-grid-cell { width:100%;margin-right:0 } #pgc-1466-1-0 , #pgc-1466-1-1 , #pgc-1466-1-2 , #pgc-1466-2-0 , #pgc-1466-4-0 { margin-bottom:30px } #pl-1466 .panel-grid-cell { padding:0 } #pl-1466 .panel-grid .panel-grid-cell-empty { display:none } #pl-1466 .panel-grid .panel-grid-cell-mobile-last { margin-bottom:0px } } </style>