/** * Industro functions and definitions * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package Industro */ if ( ! function_exists( 'industro_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. */ function industro_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on _s, use a find and replace * to change 'industro' to the name of your theme in all the template files. */ load_theme_textdomain( 'industro', 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. * * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'industro' ), 'footer' => esc_html__( 'Footer Menu', 'industro' ), ) ); /* * 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', ) ); // Load regular editor styles into the new block-based editor. add_theme_support( 'editor-styles' ); // Load default block styles. add_theme_support( 'wp-block-styles' ); // Add support for responsive embeds. add_theme_support( 'responsive-embeds' ); // Add image sizes add_image_size( 'industro-post-thumbnail-shortcode', 658, 480, true ); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, and column width. */ add_editor_style( array( 'css/editor-style.css', industro_fonts_url() ) ); } endif; add_action( 'after_setup_theme', 'industro_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 industro_content_width() { // This variable is intended to be overruled from themes. // Open WPCS issue: {@link https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/issues/1043}. // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound $GLOBALS['content_width'] = apply_filters( 'industro_content_width', 640 ); } add_action( 'after_setup_theme', 'industro_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function industro_widgets_init() { /* Register the 'primary' sidebar. */ register_sidebar( array( 'name' => esc_html__( 'Primary Sidebar', 'industro' ), 'id' => 'primary', 'description' => esc_html__( 'Add widgets here.', 'industro' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); /* Register the 'shop' sidebar. */ register_sidebar( array( 'name' => esc_html__( 'Product Sidebar', 'consultax' ), 'id' => 'product', 'description' => esc_html__( 'Add widgets here.', 'consultax' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); /* Repeat register_sidebar() code for additional sidebars. */ register_sidebar( array( 'name' => __( 'Footer First Widget Area', 'industro' ), 'id' => 'footer-area-1', 'description' => __( 'Add widgets here to appear in your footer.', 'industro' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => __( 'Footer Second Widget Area', 'industro' ), 'id' => 'footer-area-2', 'description' => __( 'Add widgets here to appear in your footer.', 'industro' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => __( 'Footer Third Widget Area', 'industro' ), 'id' => 'footer-area-3', 'description' => __( 'Add widgets here to appear in your footer.', 'industro' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => __( 'Footer Fourth Widget Area', 'industro' ), 'id' => 'footer-area-4', 'description' => __( 'Add widgets here to appear in your footer.', 'industro' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); } add_action( 'widgets_init', 'industro_widgets_init' ); /** * Register custom fonts. */ if ( ! function_exists( 'industro_fonts_url' ) ) : /** * Register Google fonts for Blessing. * * Create your own industro_fonts_url() function to override in a child theme. * * @since Blessing 1.0 * * @return string Google fonts URL for the theme. */ function industro_fonts_url() { $fonts_url = ''; $font_families = array(); $subsets = 'latin,latin-ext'; /* translators: If there are characters in your language that are not supported by Roboto Slab, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Roboto font: on or off', 'industro' ) ) { $font_families[] = 'Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i'; } if ( $font_families ) { $fonts_url = add_query_arg( array( 'family' => urlencode( implode( '|', $font_families ) ), 'subset' => urlencode( $subsets ), ), 'https://fonts.googleapis.com/css' ); } return esc_url_raw( $fonts_url ); } endif; /** * Enqueue scripts and styles. */ function industro_scripts() { // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'industro-fonts', industro_fonts_url(), array(), null ); /** All frontend css files **/ wp_enqueue_style( 'bootstrap', get_template_directory_uri() . '/css/bootstrap.css', array(), '3.3.7', 'all'); /** Load fonts **/ wp_enqueue_style( 'vc_font_awesome_5' ); wp_enqueue_style( 'flaticon-font', get_template_directory_uri().'/css/flaticon.css'); /** Slick slider **/ wp_enqueue_style( 'slick-slider', get_template_directory_uri().'/css/slick.css'); wp_enqueue_style( 'slick-theme', get_template_directory_uri().'/css/slick-theme.css'); /** Woocommerce **/ wp_enqueue_style( 'industro-woo', get_template_directory_uri().'/css/woocommerce.css'); if( industro_get_option('preload') != false ){ wp_enqueue_style( 'industro-preload', get_template_directory_uri().'/css/royal-preload.css'); } /** Theme stylesheet. **/ wp_enqueue_style( 'industro-style', get_stylesheet_uri() ); if( industro_get_option('preload') != false ){ wp_enqueue_script("industro-royal-preloader", get_template_directory_uri()."/js/royal_preloader.min.js",array('jquery'), '1.0', false); } wp_enqueue_script( 'countto', get_template_directory_uri() . '/js/countto.js', array( 'jquery' ), '20180910', true ); wp_enqueue_script( 'slick', get_template_directory_uri() . '/js/slick.min.js', array( 'jquery' ), '20180910', true ); wp_enqueue_script( 'isotope', get_template_directory_uri() . '/js/jquery.isotope.min.js', array( 'jquery' ), '20180910', true ); wp_enqueue_script( 'industro-scripts', get_template_directory_uri() . '/js/scripts.js', array( 'jquery' ), '20180910', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'industro_scripts' ); /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/frontend/template-tags.php'; /** * Functions which enhance the theme by hooking into WordPress. */ require get_template_directory() . '/inc/frontend/template-functions.php'; /** * Custom breadcrumbs for this theme. */ require get_template_directory() . '/inc/frontend/breadcrumbs.php'; /** * Functions which add more to backend. */ require get_template_directory() . '/inc/backend/admin-functions.php'; /** * Custom metabox for this theme. */ require get_template_directory() . '/inc/backend/meta-boxes.php'; /** * Register the required plugins for this theme. */ require get_template_directory() . '/inc/backend/plugin-requires.php'; /** * Import Demo Content */ require_once get_template_directory() . '/inc/backend/importer.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/backend/customizer.php'; /** * Color Scheme */ require_once get_template_directory() . '/inc/backend/color.php'; /** * Custom shortcode plugin visual composer. */ require_once get_template_directory() . '/vc-shortcodes/shortcodes.php'; require_once get_template_directory() . '/vc-shortcodes/vc_shortcode.php'; /** * Customizer Shop. */ require get_template_directory() . '/inc/frontend/woocommerce-customize.php';<!doctype html> <html lang="tr"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="https://gmpg.org/xfn/11"> <meta name='robots' content='max-image-preview:large' /> <link rel="alternate" type="application/rss+xml" title="Ağacıkoğlu Nakış Malzemeleri » Specialists etiket akışı" href="https://www.agacikoglu.com/index.php/tag/specialists/feed/" /> <style id='wp-img-auto-sizes-contain-inline-css' type='text/css'> img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ </style> <link rel='stylesheet' id='chaty-front-css-css' href='https://www.agacikoglu.com/wp-content/plugins/chaty/css/chaty-front.min.css?ver=1627575146' type='text/css' media='all' /> <style id='chaty-front-css-inline-css' type='text/css'> #wechat-qr-code{left: 104px; right:auto;} .chaty-widget-is a{display: block; margin:0; padding:0;border-radius: 50%;-webkit-border-radius: 50%;-moz-border-radius: 50%; } .chaty-widget-is svg{margin:0; padding:0;} .chaty-main-widget { display: none; } .chaty-in-desktop .chaty-main-widget.is-in-desktop { display: block; } .chaty-in-mobile .chaty-main-widget.is-in-mobile { display: block; } .chaty-widget.hide-widget { display: none !important; } .chaty-widget, .chaty-widget .get, .chaty-widget .get a { width: 62px } .facustom-icon { width: 54px; line-height: 54px; height: 54px; font-size: 27px; } .chaty-widget-is a { width: 54px; height: 54px; } .facustom-icon.chaty-btn-phone {background-color: #03E78B} .chaty-phone .color-element {fill: #03E78B; background: #03E78B} .facustom-icon.chaty-btn-whatsapp {background-color: #49E670} .chaty-whatsapp .color-element {fill: #49E670; background: #49E670} /*.chaty-widget-i-title.hide-it { display: none !important; }*/ body div.chaty-widget.hide-widget { display: none !important; } .i-trigger .chaty-widget-i-title, .chaty-widget-i .chaty-widget-i-title {color:#333333 !important; background:#ffffff !important;}.i-trigger .chaty-widget-i-title p, .chaty-widget-i.chaty-main-widget .chaty-widget-i-title p {color:#333333 !important; }.i-trigger .chaty-widget-i:not(.no-tooltip):before, .chaty-widget-i.chaty-main-widget:before { border-color: transparent transparent transparent #ffffff !important;}.chaty-widget.chaty-widget-is-right .i-trigger .i-trigger-open.chaty-widget-i:before, .chaty-widget.chaty-widget-is-right .chaty-widget-i:before { border-color: transparent #ffffff transparent transparent !important;}.chaty-widget.chaty-widget-is-right .i-trigger .chaty-widget-i:before, .chaty-widget.chaty-widget-is-right .chaty-widget-i:before {border-color: transparent #ffffff transparent transparent !important; } /*# sourceURL=chaty-front-css-inline-css */ </style> <style id='wp-emoji-styles-inline-css' type='text/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' type='text/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)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.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{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.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-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-block-library-inline-css */ </style> <style id='classic-theme-styles-inline-css' type='text/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://www.agacikoglu.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.4.2' type='text/css' media='all' /> <link rel='stylesheet' id='rs-plugin-settings-css' href='https://www.agacikoglu.com/wp-content/plugins/revslider/public/assets/css/rs6.css?ver=6.4.11' type='text/css' media='all' /> <style id='rs-plugin-settings-inline-css' type='text/css'> #rs-demo-id {} /*# sourceURL=rs-plugin-settings-inline-css */ </style> <link rel='stylesheet' id='woocommerce-layout-css' href='https://www.agacikoglu.com/wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css?ver=5.5.5' type='text/css' media='all' /> <link rel='stylesheet' id='woocommerce-smallscreen-css' href='https://www.agacikoglu.com/wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css?ver=5.5.5' type='text/css' media='only screen and (max-width: 768px)' /> <link rel='stylesheet' id='woocommerce-general-css' href='https://www.agacikoglu.com/wp-content/plugins/woocommerce/assets/css/woocommerce.css?ver=5.5.5' type='text/css' media='all' /> <style id='woocommerce-inline-inline-css' type='text/css'> .woocommerce form .form-row .required { visibility: visible; } /*# sourceURL=woocommerce-inline-inline-css */ </style> <script type="text/javascript" src="https://www.agacikoglu.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://www.agacikoglu.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script> <script type="text/javascript" id="chaty-front-end-js-extra"> /* <![CDATA[ */ var chaty_settings = {"object_settings":{"isPRO":0,"pending_messages":"off","cht_cta_bg_color":"#ffffff","cht_cta_text_color":"#333333","click_setting":"click","number_of_messages":"1","number_color":"#ffffff","number_bg_color":"#dd0000","position":"left","social":[{"val":"+905323162105","default_icon":"\u003Csvg class=\"ico_d \" width=\"39\" height=\"39\" viewBox=\"0 0 39 39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" style=\"transform: rotate(0deg);\"\u003E\u003Ccircle class=\"color-element\" cx=\"19.4395\" cy=\"19.4395\" r=\"19.4395\" fill=\"#03E78B\"/\u003E\u003Cpath d=\"M19.3929 14.9176C17.752 14.7684 16.2602 14.3209 14.7684 13.7242C14.0226 13.4259 13.1275 13.7242 12.8292 14.4701L11.7849 16.2602C8.65222 14.6193 6.11623 11.9341 4.47529 8.95057L6.41458 7.90634C7.16046 7.60799 7.45881 6.71293 7.16046 5.96705C6.56375 4.47529 6.11623 2.83435 5.96705 1.34259C5.96705 0.596704 5.22117 0 4.47529 0H0.745882C0.298353 0 5.69062e-07 0.298352 5.69062e-07 0.745881C5.69062e-07 3.72941 0.596704 6.71293 1.93929 9.3981C3.87858 13.575 7.30964 16.8569 11.3374 18.7962C14.0226 20.1388 17.0061 20.7355 19.9896 20.7355C20.4371 20.7355 20.7355 20.4371 20.7355 19.9896V16.4094C20.7355 15.5143 20.1388 14.9176 19.3929 14.9176Z\" transform=\"translate(9.07179 9.07178)\" fill=\"white\"/\u003E\u003C/svg\u003E","bg_color":"#03E78B","rbg_color":"3,231,139","title":"Phone","img_url":"","social_channel":"phone","channel_type":"phone","href_url":"tel:+905323162105","desktop_target":"","mobile_target":"","qr_code_image":"","channel":"Phone","is_mobile":1,"is_desktop":0,"mobile_url":"tel:+905323162105","on_click":"","has_font":0,"popup_html":"","has_custom_popup":0,"is_default_open":0},{"val":"905323162105","default_icon":"\u003Csvg class=\"ico_d \" width=\"39\" height=\"39\" viewBox=\"0 0 39 39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" style=\"transform: rotate(0deg);\"\u003E\u003Ccircle class=\"color-element\" cx=\"19.4395\" cy=\"19.4395\" r=\"19.4395\" fill=\"#49E670\"/\u003E\u003Cpath d=\"M12.9821 10.1115C12.7029 10.7767 11.5862 11.442 10.7486 11.575C10.1902 11.7081 9.35269 11.8411 6.84003 10.7767C3.48981 9.44628 1.39593 6.25317 1.25634 6.12012C1.11674 5.85403 2.13001e-06 4.39053 2.13001e-06 2.92702C2.13001e-06 1.46351 0.83755 0.665231 1.11673 0.399139C1.39592 0.133046 1.8147 1.01506e-06 2.23348 1.01506e-06C2.37307 1.01506e-06 2.51267 1.01506e-06 2.65226 1.01506e-06C2.93144 1.01506e-06 3.21063 -2.02219e-06 3.35022 0.532183C3.62941 1.19741 4.32736 2.66092 4.32736 2.79397C4.46696 2.92702 4.46696 3.19311 4.32736 3.32616C4.18777 3.59225 4.18777 3.59224 3.90858 3.85834C3.76899 3.99138 3.6294 4.12443 3.48981 4.39052C3.35022 4.52357 3.21063 4.78966 3.35022 5.05576C3.48981 5.32185 4.18777 6.38622 5.16491 7.18449C6.42125 8.24886 7.39839 8.51496 7.81717 8.78105C8.09636 8.91409 8.37554 8.9141 8.65472 8.648C8.93391 8.38191 9.21309 7.98277 9.49228 7.58363C9.77146 7.31754 10.0507 7.1845 10.3298 7.31754C10.609 7.45059 12.2841 8.11582 12.5633 8.38191C12.8425 8.51496 13.1217 8.648 13.1217 8.78105C13.1217 8.78105 13.1217 9.44628 12.9821 10.1115Z\" transform=\"translate(12.9597 12.9597)\" fill=\"#FAFAFA\"/\u003E\u003Cpath d=\"M0.196998 23.295L0.131434 23.4862L0.323216 23.4223L5.52771 21.6875C7.4273 22.8471 9.47325 23.4274 11.6637 23.4274C18.134 23.4274 23.4274 18.134 23.4274 11.6637C23.4274 5.19344 18.134 -0.1 11.6637 -0.1C5.19344 -0.1 -0.1 5.19344 -0.1 11.6637C-0.1 13.9996 0.624492 16.3352 1.93021 18.2398L0.196998 23.295ZM5.87658 19.8847L5.84025 19.8665L5.80154 19.8788L2.78138 20.8398L3.73978 17.9646L3.75932 17.906L3.71562 17.8623L3.43104 17.5777C2.27704 15.8437 1.55796 13.8245 1.55796 11.6637C1.55796 6.03288 6.03288 1.55796 11.6637 1.55796C17.2945 1.55796 21.7695 6.03288 21.7695 11.6637C21.7695 17.2945 17.2945 21.7695 11.6637 21.7695C9.64222 21.7695 7.76778 21.1921 6.18227 20.039L6.17557 20.0342L6.16817 20.0305L5.87658 19.8847Z\" transform=\"translate(7.7758 7.77582)\" fill=\"white\" stroke=\"white\" stroke-width=\"0.2\"/\u003E\u003C/svg\u003E","bg_color":"#49E670","rbg_color":"73,230,112","title":"WhatsApp","img_url":"","social_channel":"whatsapp","channel_type":"whatsapp","href_url":"javascript:;","desktop_target":"_blank","mobile_target":"","qr_code_image":"","channel":"Whatsapp","is_mobile":1,"is_desktop":1,"mobile_url":"javascript:;","on_click":"","has_font":0,"popup_html":"\u003Cdiv class='chaty-whatsapp-popup'\u003E\u003Cspan class='default-value' style='display:none'\u003E\u003C/span\u003E\u003Cspan class='default-msg-value' style='display:none'\u003E<p>Size \u015fuan yard\u0131mc\u0131 olabilirim!</p>\u003C/span\u003E\u003Cspan class='default-msg-phone' style='display:none'\u003E905323162105\u003C/span\u003E\u003Cdiv class='chaty-whatsapp-body'\u003E\u003Cdiv role='button' class='close-chaty-popup is-whatsapp-btn'\u003E\u003Cdiv class='chaty-close-button'\u003E\u003C/div\u003E\u003C/div\u003E\u003Cdiv class='chaty-whatsapp-message'\u003E\u003C/div\u003E\u003C/div\u003E\u003Cdiv class='chaty-whatsapp-footer'\u003E\u003Cform class='whatsapp-chaty-form' autocomplete='off' target='_blank' action='https://web.whatsapp.com/send' method='get'\u003E\u003Cdiv class='chaty-whatsapp-field'\u003E\u003Cinput autocomplete='off' class='chaty-whatsapp-msg' name='text' value='' /\u003E\u003C/div\u003E\u003Cinput type='hidden' name='phone' class='chaty-whatsapp-phone' value='' /\u003E\u003Cinput type='hidden' class='is-default-open' value='0' /\u003E\u003Cinput type='hidden' class='channel-id' value='cht-channel-0' /\u003E\u003Cbutton type='submit' class='chaty-whatsapp-submit-btn'\u003E\u003Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'\u003E\u003Cpath fill='#ffffff' d='M1.101 21.757L23.8 12.028 1.101 2.3l.011 7.912 13.623 1.816-13.623 1.817-.011 7.912z'\u003E\u003C/path\u003E\u003C/svg\u003E\u003C/button\u003E\u003Cdiv style='clear:both'\u003E\u003C/div\u003E\u003C/form\u003E\u003C/div\u003E\u003C/div\u003E","has_custom_popup":1,"is_default_open":0}],"pos_side":"right","bot":"25","side":"25","device":"desktop_active mobile_active","color":"#A886CD","rgb_color":"168,134,205","widget_size":"54","widget_type":"chat-bubble","widget_img":"","cta":"Bizimle ileti\u015fim kurun.","active":"true","close_text":"Gizle","analytics":0,"save_user_clicks":0,"close_img":"","is_mobile":0,"ajax_url":"https://www.agacikoglu.com/wp-admin/admin-ajax.php","animation_class":"jump","time_trigger":"yes","trigger_time":"0","exit_intent":"no","on_page_scroll":"no","page_scroll":"0","gmt":"","display_conditions":0,"display_rules":[],"display_state":"click","has_close_button":"yes","mode":"vertical"},"ajax_url":"https://www.agacikoglu.com/wp-admin/admin-ajax.php"}; //# sourceURL=chaty-front-end-js-extra /* ]]> */ </script> <script type="text/javascript" src="https://www.agacikoglu.com/wp-content/plugins/chaty/js/cht-front-script.js?ver=1627575146" id="chaty-front-end-js"></script> <script type="text/javascript" src="https://www.agacikoglu.com/wp-content/plugins/revslider/public/assets/js/rbtools.min.js?ver=6.4.8" id="tp-tools-js"></script> <script type="text/javascript" src="https://www.agacikoglu.com/wp-content/plugins/revslider/public/assets/js/rs6.min.js?ver=6.4.11" id="revmin-js"></script> <script type="text/javascript" src="https://www.agacikoglu.com/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js?ver=2.70" id="jquery-blockui-js"></script> <script type="text/javascript" id="wc-add-to-cart-js-extra"> /* <![CDATA[ */ var wc_add_to_cart_params = {"ajax_url":"/wp-admin/admin-ajax.php","wc_ajax_url":"/?wc-ajax=%%endpoint%%","i18n_view_cart":"View cart","cart_url":"https://www.agacikoglu.com","is_cart":"","cart_redirect_after_add":"no"}; //# sourceURL=wc-add-to-cart-js-extra /* ]]> */ </script> <script type="text/javascript" src="https://www.agacikoglu.com/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js?ver=5.5.5" id="wc-add-to-cart-js"></script> <script type="text/javascript" src="https://www.agacikoglu.com/wp-content/plugins/js_composer/assets/js/vendors/woocommerce-add-to-cart.js?ver=6.6.0" id="vc_woocommerce-add-to-cart-js-js"></script> <link rel="https://api.w.org/" href="https://www.agacikoglu.com/index.php/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://www.agacikoglu.com/index.php/wp-json/wp/v2/tags/14" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.agacikoglu.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.9.4" /> <meta name="generator" content="WooCommerce 5.5.5" /> <noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript> <meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/> <meta name="generator" content="Powered by Slider Revolution 6.4.11 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /> <link rel="icon" href="https://www.agacikoglu.com/wp-content/uploads/2021/06/cropped-agacikoglu-logo2-32x32.png" sizes="32x32" /> <link rel="icon" href="https://www.agacikoglu.com/wp-content/uploads/2021/06/cropped-agacikoglu-logo2-192x192.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://www.agacikoglu.com/wp-content/uploads/2021/06/cropped-agacikoglu-logo2-180x180.png" /> <meta name="msapplication-TileImage" content="https://www.agacikoglu.com/wp-content/uploads/2021/06/cropped-agacikoglu-logo2-270x270.png" /> <script type="text/javascript">function setREVStartSize(e){ //window.requestAnimationFrame(function() { window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW; window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH; try { var pw = document.getElementById(e.c).parentNode.offsetWidth, newh; pw = pw===0 || isNaN(pw) ? window.RSIW : pw; e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw); e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw); e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh); e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh); e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide); e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide); e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0); if(e.layout==="fullscreen" || e.l==="fullscreen") newh = Math.max(e.mh,window.RSIH); else{ e.gw = Array.isArray(e.gw) ? e.gw : [e.gw]; for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1]; e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el; e.gh = Array.isArray(e.gh) ? e.gh : [e.gh]; for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1]; var nl = new Array(e.rl.length), ix = 0, sl; e.tabw = e.tabhide>=pw ? 0 : e.tabw; e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw; e.tabh = e.tabhide>=pw ? 0 : e.tabh; e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh; for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i]; sl = nl[0]; for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;} var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]); newh = (e.gh[ix] * m) + (e.tabh + e.thumbh); } if(window.rs_init_css===undefined) window.rs_init_css = document.head.appendChild(document.createElement("style")); document.getElementById(e.c).height = newh+"px"; window.rs_init_css.innerHTML += "#"+e.c+"_wrapper { height: "+newh+"px }"; } catch(e){ console.log("Failure at Presize of Slider:" + e) } //}); };</script> <style id="kirki-inline-styles"></style><noscript><style> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript></head> <body class="archive tag tag-specialists tag-14 wp-theme-industro theme-industro woocommerce-no-js wpb-js-composer js-comp-ver-6.6.0 vc_responsive"> <div id="page" class="site">