ion( 'main_nav_links_color' ) ){ $hover_and_active = tie_get_option( 'main_nav_links_color_hover' ); $css_code .=" #main-nav ul.menu > li.tie-current-menu > a, #main-nav ul.menu > li:hover > a, #main-nav .spinner > div, .main-menu .mega-links-head:after{ background-color: $hover_and_active !important; } #main-nav a, #main-nav .dropdown-social-icons li a span, .search-in-main-nav.autocomplete-suggestions a { color: $bright !important; } #main-nav .main-menu ul.menu > li.tie-current-menu, #theme-header nav .menu > li > .menu-sub-content{ border-color: $hover_and_active; } #main-nav .spinner-circle:after{ color: $hover_and_active !important; } .main-nav-light #main-nav .menu-item-has-children li:hover > a:before, .main-nav-light #main-nav .mega-menu li:hover > a:before{ border-left-color: $bright !important; } .rtl .main-nav-light #main-nav .menu-item-has-children li:hover > a:before, .rtl .main-nav-light #main-nav .mega-menu li:hover > a:before{ border-right-color: $bright !important; border-left-color: transparent !important; } "; } // Top Nav if( ( $color == tie_get_option( 'secondry_nav_background' ) ) && ! tie_get_option( 'topbar_links_color' ) ){ $css_code .=" #top-nav a{ color: $bright; } #top-nav .tie-current-menu > a:before, #top-nav .menu .menu-item-has-children:hover > a:before{ border-top-color: $bright !important; } #top-nav .menu li .menu-item-has-children:hover > a:before{ border-top-color: transparent !important; border-left-color: $bright !important; } .rtl #top-nav .menu li .menu-item-has-children:hover > a:before{ border-left-color: transparent !important; border-right-color: $bright !important; } "; } return $css_code; } } /* * Blocks Head Colors */ if( ! function_exists( 'tie_blocks_head' ) ) { add_filter( 'TieLabs/CSS/custom_theme_color', 'tie_blocks_head', 10, 5 ); function tie_blocks_head( $css_code, $color, $dark_color, $bright, $rgb_color ){ // Theme Blocks style $block_style = tie_get_option( 'blocks_style', 1 ); //Style #1 / #2 / #3 if( $block_style <= 3 ){ $css_code .= " #tie-body .mag-box-title h3 a, #tie-body .block-more-button{ color: $color; } #tie-body .mag-box-title h3 a:hover, #tie-body .block-more-button:hover{ color: $dark_color; } "; } // Style #1 if( $block_style == 1 ){ $css_code .= " #tie-body .mag-box-title{ color: $color; } #tie-body .mag-box-title:before{ border-top-color: $color; } #tie-body .mag-box-title:after, #tie-body #footer .widget-title:after{ background-color: $color; } "; } // Style #2 elseif( $block_style == 2 ){ $css_code .= " #tie-body .the-global-title, #tie-body .comment-reply-title, #tie-body .related.products > h2, #tie-body .up-sells > h2, #tie-body .cross-sells > h2, #tie-body .cart_totals > h2, #tie-body .bbp-form legend{ border-color: $color; color: $color; } #tie-body #footer .widget-title:after{ background-color: $color; } "; } // Style #3 elseif( $block_style == 3 ){ $css_code .= " #tie-body .mag-box-title{ color: $color; } #tie-body .mag-box-title:after, #tie-body #footer .widget-title:after{ background-color: $color; } "; } // Style #4 || #5 || #6 elseif( $block_style <= 6 ){ $css_code .= " #tie-body .has-block-head-4, #tie-body .mag-box-title h3, #tie-body .comment-reply-title, #tie-body .related.products > h2, #tie-body .up-sells > h2, #tie-body .cross-sells > h2, #tie-body .cart_totals > h2, #tie-body .bbp-form legend, #tie-body .mag-box-title h3 a, #tie-body .section-title-default a, #tie-body #cancel-comment-reply-link { color: $bright; } #tie-body .has-block-head-4:before, #tie-body .mag-box-title h3:before, #tie-body .comment-reply-title:before, #tie-body .related.products > h2:before, #tie-body .up-sells > h2:before, #tie-body .cross-sells > h2:before, #tie-body .cart_totals > h2:before, #tie-body .bbp-form legend:before { background-color: $color; } #tie-body .block-more-button{ color: $color; } #tie-body .block-more-button:hover{ color: $dark_color; } "; if( $block_style == 6 ){ $css_code .= " #tie-body .has-block-head-4:after, #tie-body .mag-box-title h3:after, #tie-body .comment-reply-title:after, #tie-body .related.products > h2:after, #tie-body .up-sells > h2:after, #tie-body .cross-sells > h2:after, #tie-body .cart_totals > h2:after, #tie-body .bbp-form legend:after{ background-color: $color; } "; } // Magazine 2 if( tie_get_option( 'boxes_style' ) == 2 ){ $css_code .= " #tie-body .tabs, #tie-body .tabs .flexMenu-popup{ border-color: $color; } #tie-body .tabs li a{ color: $color; } #tie-body .tabs li a:hover{ color: $dark_color; } #tie-body .tabs li.active a{ color: $bright; background-color: $color; } "; if( $block_style == 5 || $block_style == 6 ){ $css_code .=" #tie-body .tabs > .active a:before, #tie-body .tabs > .active a:after{ background-color: $color; } "; } } // Magazine 2 if } // #4 || #5 || #6 // Style #7 elseif( $block_style == 7 ){ // All heads except the widget-title head will be in the default black background. $css_code .= " #tie-body .section-title-default, #tie-body .mag-box-title, #tie-body #comments-title, #tie-body .review-box-header, #tie-body .comment-reply-title, #tie-body .comment-reply-title, #tie-body .related.products > h2, #tie-body .up-sells > h2, #tie-body .cross-sells > h2, #tie-body .cart_totals > h2, #tie-body .bbp-form legend{ color: $bright; background-color: $color; } #tie-body .mag-box-filter-links > li > a, #tie-body .mag-box-title h3 a, #tie-body .block-more-button{ color: $bright; } #tie-body .flexMenu-viewMore:hover > a{ color: $color; } #tie-body .mag-box-filter-links > li > a:hover, #tie-body .mag-box-filter-links li > a.active{ background-color: $bright; color: $color; } #tie-body .slider-arrow-nav a{ border-color: rgba($bright ,0.2); color: $bright; } #tie-body .mag-box-title a.pagination-disabled, #tie-body .mag-box-title a.pagination-disabled:hover{ color: $bright !important; } #tie-body .slider-arrow-nav a:not(.pagination-disabled):hover{ background-color: $bright; border-color: $bright; color: $color; } "; } // Style #8 elseif( $block_style == 8 ){ $css_code .=" #tie-body .the-global-title:before, #tie-body .comment-reply-title:before, #tie-body .related.products > h2:before, #tie-body .up-sells > h2:before, #tie-body .cross-sells > h2:before, #tie-body .cart_totals > h2:before, #tie-body .bbp-form legend:before{ background-color: $color; } "; } // Style #10 elseif( $block_style == 10 ){ $css_code .= " #tie-body .has-block-head-4:after, #tie-body .mag-box-title h3:after, #tie-body .comment-reply-title:after, #tie-body .related.products > h2:after, #tie-body .up-sells > h2:after, #tie-body .cross-sells > h2:after, #tie-body .cart_totals > h2:after, #tie-body .bbp-form legend:after{ background-color: $color; } "; } // Style #11 elseif( $block_style == 11 ){ $direction = is_rtl() ? 'right' : 'left'; $css_code .=" #tie-body .has-block-head-4:after, #tie-body .mag-box-title h3:after, #tie-body .comment-reply-title:after, #tie-body .related.products > h2:after, #tie-body .up-sells > h2:after, #tie-body .cross-sells > h2:after, #tie-body .cart_totals > h2:after, #tie-body .bbp-form legend:after { border-$direction-color: $color; } "; } return $css_code; } } /** * Set Sections Custom Styles */ if( ! function_exists( 'jannah_section_custom_styles' ) ) { add_filter( 'TieLabs/CSS/Builder/section_style', 'jannah_section_custom_styles', 10, 3 ); function jannah_section_custom_styles( $section_css, $section_id, $section_settings ){ // Section Head Styles if( ! empty( $section_settings['section_title'] ) && ! empty( $section_settings['title'] ) && ! empty( $section_settings['title_color'] ) ) { $block_style = tie_get_option( 'blocks_style', 1 ); $color = $section_settings['title_color']; $darker = TIELABS_STYLES::color_brightness( $color ); $bright = TIELABS_STYLES::light_or_dark( $color ); $selector = "#$section_id .section-title"; // Centered Style if( ! empty( $section_settings['title_style'] ) && $section_settings['title_style'] == 'centered' ){ $section_css .= " $selector, $selector a{ color: $color; } $selector a:hover{ color: $darker; } #$section_id .section-title-centered:before, #$section_id .section-title-centered:after{ background-color: $color; } "; } // Big Style elseif( ! empty( $section_settings['title_style'] ) && $section_settings['title_style'] == 'big' ){ $section_css .= " $selector, $selector a{ color: $color; } $selector a:hover{ color: $darker; } "; } // Default Style elseif( empty( $section_settings['title_style'] ) ){ $selector = "#$section_id .section-title-default"; /* Style #1 */ if( $block_style == 1 ){ $section_css .= " $selector, $selector a{ color: $color; } $selector a:hover{ color: $darker; } $selector:before{ border-top-color: $color; } $selector:after{ background-color: $color; } "; } /* Style #2 */ if( $block_style == 2 ){ $section_css .= " $selector, $selector a{ border-color: $color; color: $color; } $selector a:hover{ color: $darker; } "; } /* Style #3 */ elseif( $block_style == 3 ){ $section_css .= " $selector, $selector a{ color: $color; } $selector a:hover{ color: $darker; } $selector:after { background: $color; } "; } /* Style #4 || #5 || #6 */ elseif( $block_style == 4 || $block_style == 5 || $block_style == 6 ){ $section_css .= " $selector, $selector a{ color: $bright; } $selector:before{ background-color: $color; } "; /* Style #6 */ if( $block_style == 6 ){ $section_css .= " $selector:after{ background-color: $color; } "; } } /* Style #7 */ elseif( $block_style == 7 ){ $section_css .= " $selector{ background-color: $color; color: $bright; } $selector a{ color: $bright; } $selector:after{ background-color: $bright; } "; } /* Style #8 */ elseif( $block_style == 8 ){ $section_css .= " $selector:before{ background-color: $color; } $selector a:hover{ color: $color; } "; } } } // Block 16 and 12 title section color if( tie_get_option( 'boxes_style' ) == 2 && ! empty( $section_settings['background_color'] ) ){ $color = $section_settings['background_color']; $bright = TIELABS_STYLES::light_or_dark( $color ); $section_css .= " #$section_id .full-overlay-title li:not(.no-post-thumb) .block-title-overlay{ background-color: $color; } #$section_id .full-overlay-title li:not(.no-post-thumb) .block-title-overlay .post-meta, #$section_id .full-overlay-title li:not(.no-post-thumb) .block-title-overlay a:not(:hover){ color: $bright; } #$section_id .full-overlay-title li:not(.no-post-thumb) .block-title-overlay .post-meta{ opacity: 0.80; } "; } return $section_css; } } /* * Set Custom color for the blocks */ if( ! function_exists( 'jannah_block_custom_bg' ) ) { add_filter( 'TieLabs/CSS/Builder/block_bg', 'jannah_block_custom_bg', 10, 6 ); function jannah_block_custom_bg( $block_css, $id_css, $block, $color, $bright, $darker ){ if( $color == $darker ){ $darker = TIELABS_STYLES::color_brightness( $color, 30 ); } /* $id_css .trending-post.tie-icon-bolt{ color: $bright; } */ // Default Blocks Head Style $block_style = tie_get_option( 'blocks_style', 1 ); $block_css = " $id_css{ color: $bright; } $id_css .container-wrapper, $id_css .flexMenu-popup, $id_css.full-overlay-title li:not(.no-post-thumb) .block-title-overlay{ background-color: $color; } $id_css .slider-arrow-nav a:not(:hover), $id_css .pagination-disabled, $id_css .pagination-disabled:hover{ color: $bright !important; } $id_css a:not(:hover):not(.button){ color: $bright; } $id_css .entry, $id_css .post-excerpt, $id_css .post-meta, $id_css .day-month, $id_css .post-meta a:not(:hover){ color: $bright !important; opacity: 0.9; } $id_css.first-post-gradient .posts-items li:first-child a:not(:hover), $id_css.first-post-gradient li:first-child .post-meta{ color: #ffffff !important; } $id_css .slider-arrow-nav a, $id_css .pages-nav .pages-numbers a, $id_css .show-more-button{ border-color: $darker; } "; // Block Style 1 if( $block_style == 1 ){ $block_css .= " .block-head-1 $id_css .the-global-title{ border-color: $darker; } "; } // Tabs if( $block['style'] == 'tabs' ){ $block_css .= " $id_css.tabs-box, $id_css.tabs-box .tabs .active > a{ background-color: $color; } $id_css.tabs-box .tabs a{ background-color: $darker; } $id_css.tabs-box .tabs{ border-color: $darker; } $id_css.tabs-box .tabs a, $id_css.tabs-box .flexMenu-popup, $id_css.tabs-box .flexMenu-popup li a{ border-color: rgba(0,0,0,0.1); } "; if( tie_get_option( 'boxes_style' ) == 2 ){ $block_css .= " $id_css .tab-content{ padding: 0; } "; } } /* Breaking */ elseif( $block['style'] == 'breaking' ){ $block_css .= " $id_css .breaking, $id_css .ticker-content, $id_css .ticker-swipe{ background-color: $darker; } "; } /* Timeline */ elseif( $block['style'] == 'timeline' ){ $block_css .= " $id_css.timeline-box .posts-items:last-of-type:after{ background-image: linear-gradient(to bottom, $darker 0%, $color 80%); } $id_css .year-month, $id_css .day-month:before, $id_css.timeline-box .posts-items:before{ background-color: $darker; } $id_css .year-month{ color: $bright; } $id_css .day-month:before{ border-color: $color; } "; } /* Custom Contents */ elseif( $block['style'] == 'code' || $block['style'] == 'code_50' ){ $block_css .= " $id_css .tabs.tabs .active > a{ background-color: $darker; border-color: rgba(0,0,0,0.1); } "; } /* Scrolling */ elseif( $block['style'] == 'scroll' || $block['style'] == 'scroll_2' ){ $block_css .= " $id_css .tie-slick-dots li:not(.slick-active) button{ background-color: $darker; } "; } return $block_css; } } /* * Set Custom color for the blocks */ if( ! function_exists( 'jannah_block_custom_color' ) ) { add_filter( 'TieLabs/CSS/Builder/block_style', 'jannah_block_custom_color', 10, 6 ); function jannah_block_custom_color( $block_css, $id_css, $block, $color, $bright, $darker ){ // Default Blocks Head Style $block_style = tie_get_option( 'blocks_style', 1 ); // General Custom block CSS code $block_css = " $id_css .mag-box-filter-links a.active, $id_css .mag-box-filter-links .flexMenu-viewMore:hover > a, $id_css .stars-rating-active, $id_css .tabs.tabs .active > a, $id_css .spinner-circle:after, $id_css .video-play-icon, $id_css .pages-nav li a:hover, $id_css .show-more-button:hover, $id_css .entry a, $id_css.woocommerce ins{ color: $color; } $id_css a:hover, $id_css .entry a:hover{ color: $darker; } $id_css .spinner > div, $id_css .tie-slick-dots li.slick-active button, $id_css li.current span, $id_css .tie-slick-dots li.slick-active button, $id_css .tie-slick-dots li button:hover{ background-color: $color; } $id_css .digital-rating-static, $id_css .mag-box-filter-links a:hover, $id_css .slider-arrow-nav a:not(.pagination-disabled):hover, $id_css .playlist-title, $id_css .breaking-title:before, $id_css .breaking-news-nav li:hover, $id_css .post-cat, $id_css .tie-slider-nav li > span:hover, $id_css .button{ background-color: $color; color: $bright; } $id_css a.post-cat:hover, $id_css .button:hover{ background-color: $darker; color: $bright; } $id_css .entry a.button{ color: $bright; } $id_css .circle_bar{ stroke: $color; } $id_css .slider-arrow-nav a:not(.pagination-disabled):hover, $id_css li.current span, $id_css .breaking-news-nav li:hover{ border-color: $color; } "; /* Style #1 OR 2 Or 3 */ if( $block_style <= 3 ){ $block_css .= " $id_css .mag-box-title h3 a, $id_css .block-more-button{ color: $color; } $id_css .mag-box-title h3 a:hover, $id_css .block-more-button:hover{ color: $darker; } "; if( $block_style == 1 ){ $block_css .= " $id_css .mag-box-title{ color: $color; } $id_css .mag-box-title:before { border-top-color: $color; } $id_css .mag-box-title:after{ background-color: $color; } "; } /* Style #2 */ elseif( $block_style == 2 ){ $block_css .= " $id_css .mag-box-title{ border-color: $color; color: $color; } "; } /* Style #3 */ elseif( $block_style == 3 ){ $block_css .= " $id_css .mag-box-title{ color: $color; } $id_css .mag-box-title:after{ background-color: $color; } "; } } /* Style #4 || #5 || #6 */ elseif( $block_style == 4 || $block_style == 5 || $block_style == 6 ){ $block_css .= " $id_css .mag-box-title h3, $id_css .mag-box-title h3 a{ color: $bright; } $id_css .mag-box-title h3:before{ background-color: $color; } $id_css .block-more-button{ color: $color; } $id_css .block-more-button:hover{ color: $darker; } "; /* Style #4 || #5 || #6 && Magazine 2 && Block Style == Tabs */ if( tie_get_option( 'boxes_style' ) == 2 && ( ! empty( $block['style'] ) && $block['style'] == 'tabs' ) ) { $block_css .= " $id_css .tabs, $id_css .tabs .flexMenu-popup{ border-color: $color; } $id_css .tabs li a{ color: $color; } $id_css .tabs li a:hover{ color: $darker; } $id_css .tabs.tabs li.active > a{ color: $bright; background-color: $color; } "; } /* Style #5 && Magazine 2 */ if( ( $block_style == 5 || $block_style == 6 ) && tie_get_option( 'boxes_style' ) == 2 ){ $block_css .= " $id_css .tabs > .active a:before, $id_css .tabs > .active a:after{ background-color: $color; } "; } /* Style #6 */ if( $block_style == 6 ){ $block_css .= " $id_css .mag-box-title h3:after{ background-color: $color; } "; } // #style 6 } // #4 || #5 || #6 /* Style #7 */ elseif( $block_style == 7 ){ $block_css .= " $id_css .mag-box-title{ color: $bright; background-color: $color; } $id_css .mag-box-filter-links > li > a, $id_css .mag-box-title h3 a, $id_css .mag-box-title a.block-more-button{ color: $bright; } $id_css .flexMenu-viewMore:hover > a{ color: $color; } $id_css .mag-box-filter-links > li > a:hover, $id_css .mag-box-filter-links li > a.active{ background-color: $bright; color: $color; } $id_css .slider-arrow-nav a{ border-color: rgba($bright ,0.2); color: $bright; } $id_css .mag-box-title a.pagination-disabled, $id_css .mag-box-title a.pagination-disabled:hover{ color: $bright !important; } $id_css .slider-arrow-nav a:not(.pagination-disabled):hover{ background-color: $bright; border-color: $bright; color: $color; } "; } /* Style #8 */ elseif( $block_style == 8 ){ $block_css .= " $id_css .mag-box-title:before{ background-color: $color; } "; } /* Style #10 */ elseif( $block_style == 10 ) { $block_css .= " $id_css .mag-box-title h3:after{ background-color: $color; } "; } /* Style #11 */ elseif( $block_style == 11 ) { $direction = is_rtl() ? 'right' : 'left'; $block_css .= " $id_css .mag-box-title h3:after{ border-$direction-color: $color; } "; } return $block_css; } } /** * Default Theme fonts sections */ if( ! function_exists( 'jannah_fonts_sections' ) ) { add_filter( 'TieLabs/fonts_sections_array', 'jannah_fonts_sections' ); function jannah_fonts_sections(){ $fonts_sections = array( 'body' => 'body', 'headings' => '.logo-text, h1, h2, h3, h4, h5, h6, .the-subtitle', 'menu' => '#main-nav .main-menu > ul > li > a', 'blockquote' => 'blockquote p', ); return apply_filters( 'Jannah/fonts_default_sections_array', $fonts_sections ); } } /** * Default Theme Typography Elements */ if( ! function_exists( 'jannah_typography_elements' ) ) { add_filter( 'TieLabs/typography_elements', 'jannah_typography_elements' ); function jannah_typography_elements(){ # Custom size, line height, weight, captelization $text_sections = array( 'body' => 'body', 'site_title' => '#logo.text-logo .logo-text', 'top_menu' => '#top-nav .top-menu > ul > li > a', 'top_menu_sub' => '#top-nav .top-menu > ul ul li a', 'main_nav' => '#main-nav .main-menu > ul > li > a', 'main_nav_sub' => '#main-nav .main-menu > ul ul li a', 'mobile_menu' => '#mobile-menu li a', 'breaking_news' => '.breaking .breaking-title', 'breaking_news_posts' => '.ticker-wrapper .ticker-content', 'buttons' => 'body .button,body [type="submit"]', // body > override Sari3 'breadcrumbs' => '#breadcrumb', 'post_cat_label' => '.post-cat', 'single_post_title' => '.entry-header h1.entry-title', 'single_archive_title' => 'h1.page-title', 'post_entry' => '#the-post .entry-content, #the-post .entry-content p', 'comment_text' => '.comment-list .comment-body p', 'blockquote' => '#the-post .entry-content blockquote, #the-post .entry-content blockquote p', 'boxes_title' => '#tie-wrapper .mag-box-title h3', 'page_404_main_title' => array( 'min-width: 992px' => '.container-404 h2' ), 'page_404_sec_title' => array( 'min-width: 992px' => '.container-404 h3' ), 'page_404_description' => array( 'min-width: 992px' => '.container-404 h4' ), 'sections_title_default' => array( 'min-width: 768px' => '.section-title.section-title-default, .section-title-centered', ), 'sections_title_big' => array( 'min-width: 768px' => '.section-title-big', ), 'copyright' => '#tie-wrapper .copyright-text', 'footer_widgets_title' => '#footer .widget-title .the-subtitle', 'post_heading_h1' => '.entry h1', 'post_heading_h2' => '.entry h2', 'post_heading_h3' => '.entry h3', 'post_heading_h4' => '.entry h4', 'post_heading_h5' => '.entry h5', 'post_heading_h6' => '.entry h6', 'widgets_title' => ' #tie-wrapper .widget-title .the-subtitle, #tie-wrapper #comments-title, #tie-wrapper .comment-reply-title, #tie-wrapper .woocommerce-tabs .panel h2, #tie-wrapper .related.products h2, #tie-wrapper #bbpress-forums #new-post > fieldset.bbp-form > legend, #tie-wrapper .entry-content .review-box-header', 'widgets_post_title' => ' .post-widget-body .post-title, .timeline-widget ul li h3, .posts-list-half-posts li .post-title ', // Blocks Typography Options 'post_title_blocks' => ' #tie-wrapper .media-page-layout .thumb-title, #tie-wrapper .mag-box.full-width-img-news-box .posts-items>li .post-title, #tie-wrapper .miscellaneous-box .posts-items>li:first-child .post-title, #tie-wrapper .big-thumb-left-box .posts-items li:first-child .post-title', 'post_medium_title_blocks' => ' #tie-wrapper .mag-box.wide-post-box .posts-items>li:nth-child(n) .post-title, #tie-wrapper .mag-box.big-post-left-box li:first-child .post-title, #tie-wrapper .mag-box.big-post-top-box li:first-child .post-title, #tie-wrapper .mag-box.half-box li:first-child .post-title, #tie-wrapper .mag-box.big-posts-box .posts-items>li:nth-child(n) .post-title, #tie-wrapper .mag-box.mini-posts-box .posts-items>li:nth-child(n) .post-title, #tie-wrapper .mag-box.latest-poroducts-box .products .product h2', 'post_small_title_blocks' => ' #tie-wrapper .mag-box.big-post-left-box li:not(:first-child) .post-title, #tie-wrapper .mag-box.big-post-top-box li:not(:first-child) .post-title, #tie-wrapper .mag-box.half-box li:not(:first-child) .post-title, #tie-wrapper .mag-box.big-thumb-left-box li:not(:first-child) .post-title, #tie-wrapper .mag-box.scrolling-box .slide .post-title, #tie-wrapper .mag-box.miscellaneous-box li:not(:first-child) .post-title', // Sliders Typography Options 'post_title_sliders' => array( 'min-width: 992px' => ' .full-width .fullwidth-slider-wrapper .thumb-overlay .thumb-content .thumb-title, .full-width .wide-next-prev-slider-wrapper .thumb-overlay .thumb-content .thumb-title, .full-width .wide-slider-with-navfor-wrapper .thumb-overlay .thumb-content .thumb-title, .full-width .boxed-slider-wrapper .thumb-overlay .thumb-title', ), 'post_medium_title_sliders' => array( 'min-width: 992px' => ' .has-sidebar .fullwidth-slider-wrapper .thumb-overlay .thumb-content .thumb-title, .has-sidebar .wide-next-prev-slider-wrapper .thumb-overlay .thumb-content .thumb-title, .has-sidebar .wide-slider-with-navfor-wrapper .thumb-overlay .thumb-content .thumb-title, .has-sidebar .boxed-slider-wrapper .thumb-overlay .thumb-title', 'min-width: 768px' => ' #tie-wrapper .main-slider.grid-3-slides .slide .grid-item:nth-child(1) .thumb-title, #tie-wrapper .main-slider.grid-5-first-big .slide .grid-item:nth-child(1) .thumb-title, #tie-wrapper .main-slider.grid-5-big-centerd .slide .grid-item:nth-child(1) .thumb-title, #tie-wrapper .main-slider.grid-4-big-first-half-second .slide .grid-item:nth-child(1) .thumb-title, #tie-wrapper .main-slider.grid-2-big .thumb-overlay .thumb-title, #tie-wrapper .wide-slider-three-slids-wrapper .thumb-title', ), 'post_small_title_sliders' => array( 'min-width: 768px' => ' #tie-wrapper .boxed-slider-three-slides-wrapper .slide .thumb-title, #tie-wrapper .grid-3-slides .slide .grid-item:nth-child(n+2) .thumb-title, #tie-wrapper .grid-5-first-big .slide .grid-item:nth-child(n+2) .thumb-title, #tie-wrapper .grid-5-big-centerd .slide .grid-item:nth-child(n+2) .thumb-title, #tie-wrapper .grid-4-big-first-half-second .slide .grid-item:nth-child(n+2) .thumb-title, #tie-wrapper .grid-5-in-rows .grid-item:nth-child(n) .thumb-overlay .thumb-title, #tie-wrapper .main-slider.grid-4-slides .thumb-overlay .thumb-title, #tie-wrapper .grid-6-slides .thumb-overlay .thumb-title, #tie-wrapper .boxed-four-taller-slider .slide .thumb-title', ), ); return apply_filters( 'Jannah/typography_default_elements_array', $text_sections ); } } {"id":19239,"date":"2022-07-27T21:04:27","date_gmt":"2022-07-27T14:04:27","guid":{"rendered":"https:\/\/lsisi.id\/?p=19239"},"modified":"2022-07-27T21:04:31","modified_gmt":"2022-07-27T14:04:31","slug":"kst-papua-identik-dengan-boko-haram","status":"publish","type":"post","link":"https:\/\/lsisi.id\/kst-papua-identik-dengan-boko-haram\/","title":{"rendered":"KST Papua Identik dengan Boko Haram"},"content":{"rendered":"\n

Oleh : Alfred Jigibalom
Editor : Ida Bastian<\/p>\n\n\n\n

KST Papua ternyata memiliki kesamaan dari kelompok teroris bernama Boko Haram yang ada di Nigeria lantaran mereka tidak segan untuk melakukan tindakan sangat terkutuk berupa pembantaian warga sipil hanya supaya tujuan politis serta ideologis mereka bisa tercapai.
Ulah dari para Kelompok Separatis Teroris (KST) di Papua kembali menggemparkan setelah terjadinya pembantaian di Kabupaten Nduga dan juga di Pegunungan Bintang. Bahkan jumlah korban pun terus bertambah setelah pihak Kepolisian sedang menyusuri Tempat Kejadian Perkara (TKP). Seketika, Kombes Faizal Ramadhani selaku Direskrimum Polda Papua langsung melakukan upaya evakuasi jenazah yang baru saja ditemukan tersebut.
Diduga kuat bahwa jenazah itu adalah merupakan salah satu korban dari pembantaian yang mengakibatkan 10 orang kehilangan nyawanya beserta dengan dua orang lain yang mengalami luka. Kejadian pembantaian sadis itu terjadi pada Sabtu (16\/7) lalu.
Mengenai hal tersebut, Ketua Pemuda Adat Saireri II Nabire Ali Kabiay menyatakan dengan tegas bahwa ulah yang dilakukan oleh KST di Nduga itu mirip seperti apa yang telah dilakukan oleh kelompok teroris Boko Haram di Nigeria. Dirinya menegaskan bahwa tindakan pembantaian bahkan hingga pemenggalan kepala yang dilakukan kepada warga sipil yang memang tidak tahu apa-apa merupakan tindakan keji dari para teroris.
Ali Kabiay mengaku sangatlah prihatin dengan kejadian semacam itu harus terjadi di tanah Papua karena warga sipil yang sama sekali tidak berdosa dan niatnya datang ke sana untuk bekerja dan memenuhi kebutuhan hidup mereka namun malah harus dibunuh dengan sangat sadis seperti itu.
Pembunuhan yang mengakibatkan salah seorang penambang emas itu menjadi korban ternyata terjadi sejak Selasa (19\/7). Sebagaimana keterangan dari Komandan Korem 172\/PWY, Brigadir Jenderal TNI JO Sembiring yang mengungkapkan kalau ternyata di lokasi penambangan sama sekali tidak memiliki petugas keamanan, bahkan untuk bisa mencapai lokasinya yang cukup rumit itu harus menggunakan helikopter.
Lebih lanjut, Ali Kabiay juga menambahkan bahwa besar kemungkinan kalau tindakan yang telah dilakukan oleh KST di Nduga itu memiliki motif tertentu, yakni seperti halnya pada tindakan kelompok teroris Boko Haram di Nigeria, bahwa mereka ternyata akan melakukan segala cara demi bisa memenuhi kepentingan politik serta ideologis mereka terpenuhi bahkan tidak akan segan jika memang harus mengorbankan warga sipil.
Ketua Pemuda Adat Sairei ini juga menyatakan bahwa perilaku yang telah dilakukan oleh Kelompok Separatis Teroris ini sama sekali tidak boleh dibiarkan terus-menerus terjadi karena dampaknya akan menjadi rentetan panjang bagi kestabilan berjalannya negara bahkan bisa saja mempengaruhi dan menghambat proses pembangunan yang sudah diupayakan oleh Pemerintah, sehingga memang harus sesegera mungkin ditindak.
Bukan hanya sekedar proses pembangunan saja, melainkan tentunya menurut Ali Kabiay bahwa dengan adanya tindakan keji seperti pembantaian semacam itu akan berpengaruh pula pada bagaimana pengembangan pembangunan Sumber Daya Manusia (SDM) di Papua sendiri lantaran seolah akan membuat citra jelek diantara warga Papua. Padahal dirinya menegaskan bahwa masyarakat Papua sendiri merupakan sebuah masyarakat yang sangat cinta damai dan tindakan pembunuhan yang dilakukan oleh KST tersebut sama sekali tidak mewakili orang Papua asli.
Untuk itu, dirinya berharap semoga dengan adanya kejadian semacam ini seluruh aparat bisa segera menangkap dan menindak tegas sampai ke akarnya bahkan kalau perlu diadakan kerja sama pula kepada beberapa pihak agar pengusutan kasus ini bisa sesegera mungkin diselesaikan lantaran memang sudah sangat meresahkan.
Sebagai salah satu langkah yang telah dilakukan oleh pihak TNI, jajaran dari Brigadir Jenderal JO Sembiring bekerja sama dengan Pemerintah Daerah (Pemda) Kabupaten Pegunungan Bintang untuk melakukan pendataan mengenai jumlah warga yang melakukan penambangan. Hal tersebut tentu sangat berguna supaya ke depan setidaknya mampu melakukan upaya preventif supaya kejadian pembunuhan warga sipil penambang tidak lagi terjadi.
Sementara itu, terkait dengan pembantaian yang terjadi di Nduga, Moeldoko selaku Kepala Kantor Staf Presiden mendesak Komisi Nasional Hak Asasi Manusia (Komnas HAM) untuk langsung melakukan penyelidikan pada kasus pelanggaran HAM yang telah dilakukan oleh KST Papua tersebut. Dirinya juga menegaskan bahwa semua orang tidak boleh menghilangkan hak hidup orang lain tanpa terkecuali.
Moeldoko juga menyampaikan bahwa Pemerintah mengutuk dengan sangat keras mengenai aksi biadab berupa pembantaian yang telah dilakukan oleh kelompok pimpinan Egianus Kogoya itu.
Diketahui sebelumnya bahwa pembantaian yang mereka lakukan adalah dengan cara melakukan penghadangan kepada truk yang memang mengangkut para pendatang beserta seorang pendeta. Kemudian di tengah jalan, tidak hanya sekedar dihadang namun ternyata KST langsung memberondongkan peluru dengan senapan mesin kepada truk tersebut hingga mengakibatkan tidak sedikit korban meninggal dunia.
Beberapa waktu lalu, tepatnya pada bulan Maret 2022 Kelompok Separatis Teroris (KST) Papua juga telah melakukan sejumlah tindakan keji hingga mengakibatkan 8 orang tewas. Bahkan bukan hanya sekedar warga sipil saja, namun aparat TNI juga beberapa harus menjadi korban dari penembakan yang dilakukan oleh KST Papua.
Tentunya meski mereka menggunakan dalih apapun dan juga pembenaran apapun, tetap bahwa pembunuhan manusia adalah hal keji yang harus ditolak dan ditiadakan. Apalagi jika hanya berharap agar tujuan politis mereka bisa tercapai kemudian harus mengorbankan nyawa orang lain, tentu itu membuat gerakan dari KST Papua sangat identik dengan kelompok teroris Boko Haram yang patut untuk ditumpas hingga keakarnya.<\/p>\n\n\n\n

)* Penulis adalah mahasiswa Papua tinggal di Bali<\/p>\n","protected":false},"excerpt":{"rendered":"

Oleh : Alfred JigibalomEditor : Ida Bastian KST Papua ternyata memiliki kesamaan dari kelompok teroris bernama Boko Haram yang ada di Nigeria lantaran mereka tidak segan untuk melakukan tindakan sangat terkutuk berupa pembantaian warga sipil hanya supaya tujuan politis serta ideologis mereka bisa tercapai.Ulah dari para Kelompok Separatis Teroris (KST) di Papua kembali menggemparkan setelah …<\/p>\n","protected":false},"author":5,"featured_media":19240,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":"","_jetpack_memberships_contains_paid_content":false},"categories":[4],"tags":[864,239,2079],"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"https:\/\/lsisi.id\/wp-content\/uploads\/2022\/07\/1-120.jpg","_links":{"self":[{"href":"https:\/\/lsisi.id\/wp-json\/wp\/v2\/posts\/19239"}],"collection":[{"href":"https:\/\/lsisi.id\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/lsisi.id\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/lsisi.id\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/lsisi.id\/wp-json\/wp\/v2\/comments?post=19239"}],"version-history":[{"count":1,"href":"https:\/\/lsisi.id\/wp-json\/wp\/v2\/posts\/19239\/revisions"}],"predecessor-version":[{"id":19241,"href":"https:\/\/lsisi.id\/wp-json\/wp\/v2\/posts\/19239\/revisions\/19241"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/lsisi.id\/wp-json\/wp\/v2\/media\/19240"}],"wp:attachment":[{"href":"https:\/\/lsisi.id\/wp-json\/wp\/v2\/media?parent=19239"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/lsisi.id\/wp-json\/wp\/v2\/categories?post=19239"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/lsisi.id\/wp-json\/wp\/v2\/tags?post=19239"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}