Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cstage /
wp-content /
themes /
music-zone /
inc /
Delete
Unzip
Name
Size
Permission
Date
Action
customizer
[ DIR ]
drwxr-xr-x
2026-08-12 08:57
sections
[ DIR ]
drwxr-xr-x
2026-08-12 08:57
tgm-plugin
[ DIR ]
drwxr-xr-x
2026-08-12 08:57
widgets
[ DIR ]
drwxr-xr-x
2026-09-02 10:43
helpers.php
18.48
KB
-rw-r--r--
2025-01-07 13:44
metabox.php
6.85
KB
-rw-r--r--
2025-01-07 13:44
options.php
9.24
KB
-rw-r--r--
2025-01-07 13:44
template-tags.php
6.17
KB
-rw-r--r--
2025-01-07 13:44
woocommerce.php
3.9
KB
-rw-r--r--
2025-01-07 13:44
Save
Rename
<?php /** * Music Zone WooCoommerce compatibility hooks. * * This is the template that includes all WooCoommerce hooks to make the theme compatible with WooCommerce. * * @package Theme Palace * @subpackage Music Zone * @since Music Zone 1.0.0 */ remove_action('woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10); remove_action('woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10); remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description' ,10 ); remove_action( 'woocommerce_archive_description', 'woocommerce_product_archive_description' ,10 ); remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb' ,20 ); function music_zone_before_main_content() { echo '<div id="inner-content-wrapper" class="wrapper page-section">'; } add_action( 'woocommerce_before_main_content', 'music_zone_before_main_content', 5 ); function music_zone_after_main_content() { echo '</div>'; } add_action( 'woocommerce_sidebar', 'music_zone_after_main_content', 20 ); // remove title add_filter('woocommerce_show_page_title', 'music_zone_hide_title' ); function music_zone_hide_title() { return false; } // Change number or products per row to 3 add_filter('loop_shop_columns', 'music_zone_loop_columns'); if ( ! function_exists('music_zone_loop_columns')) { /** * Shop Page no. of column * * @since Music Zone 1.0 * */ function music_zone_loop_columns() { if ( is_front_page() ) return 4; // 4 products per row return 3; // 3 products per row } } if ( ! function_exists('music_zone_product_link_open')) { /** * Shop Page no. of column * * @since Music Zone 1.0 * */ function music_zone_product_link_open() { echo '<div class="product-item-wrapper">'; } } add_action('woocommerce_before_shop_loop_item', 'music_zone_product_link_open', 5); if ( ! function_exists('music_zone_product_link_close')) { /** * Shop Page no. of column * * @since Music Zone 1.0 * */ function music_zone_product_link_close() { echo '</div></div>'; } } add_action('woocommerce_after_shop_loop_item', 'music_zone_product_link_close', 20); if ( ! function_exists('music_zone_product_featured_image')) { /** * Shop Page no. of column * * @since Music Zone 1.0 * */ function music_zone_product_featured_image() { echo '<div class="featured-image">'; } } add_action('woocommerce_before_shop_loop_item', 'music_zone_product_featured_image', 15); if ( ! function_exists('music_zone_product_wrapper_close')) { /** * Shop Page no. of column * * @since Music Zone 1.0 * */ function music_zone_product_wrapper_close() { echo '</a></div>'; } } add_action('woocommerce_before_shop_loop_item_title', 'music_zone_product_wrapper_close', 15); if ( ! function_exists('music_zone_product_entry_content')) { /** * Shop Page no. of column * * @since Music Zone 1.0 * */ function music_zone_product_entry_content() { echo '<div class="entry-container">'; } } add_action('woocommerce_before_shop_loop_item_title', 'music_zone_product_entry_content', 20); add_action('woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_link_open', 25); add_action('woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 20); add_action('woocommerce_after_shop_loop_item', 'woocommerce_show_product_loop_sale_flash', 15); // remove_action('woocommerce_sidebar', 'woocommerce_get_sidebar', 10); if ( ! function_exists('music_zone_product_sidebar')) { /** * WooCommerce sidebar * * @since Music Zone 1.0 * */ function music_zone_product_sidebar() { if ( is_product() ) return; if ( music_zone_is_sidebar_enable() ) { get_sidebar(); } } } add_action('woocommerce_sidebar', 'music_zone_product_sidebar', 10);