SILENT KILLERPanel

Current Path: > home > transcarter > > www > wp-content > themes > woostify > inc > customizer > > sections > shop


Operation   : Linux host59.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Software     : Apache
Server IP    : 198.54.126.42 | Your IP: 216.73.216.135
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home/transcarter//www/wp-content/themes/woostify/inc/customizer//sections/shop

NameTypeSizeLast ModifiedActions
cart-page.php File 1717 bytes June 12 2025 15:15:30.
checkout-page.php File 2925 bytes June 12 2025 15:15:30.
mini-cart.php File 9134 bytes June 12 2025 15:15:30.
product-catalog.php File 4000 bytes June 12 2025 15:15:30.
shipping-threshold.php File 7696 bytes June 12 2025 15:15:30.
shop-page.php File 48210 bytes June 12 2025 15:15:30.
shop-single.php File 28391 bytes June 12 2025 15:15:30.

Reading File: /home/transcarter//www/wp-content/themes/woostify/inc/customizer//sections/shop/cart-page.php

<?php
/**
 * Cart page customizer
 *
 * @package woostify
 */

if ( ! woostify_is_woocommerce_activated() ) {
	return;
}

// Default values.
$defaults = woostify_options();

// Cart page layout.
$wp_customize->add_setting(
	'woostify_setting[cart_page_layout]',
	array(
		'default'           => $defaults['cart_page_layout'],
		'sanitize_callback' => 'woostify_sanitize_choices',
		'type'              => 'option',
	)
);
$wp_customize->add_control(
	new Woostify_Radio_Image_Control(
		$wp_customize,
		'woostify_setting[cart_page_layout]',
		array(
			'label'    => __( 'Cart Page Layout', 'woostify' ),
			'section'  => 'woostify_cart_page',
			'settings' => 'woostify_setting[cart_page_layout]',
			'choices'  => apply_filters(
				'woostify_setting_cart_page_layout_choices',
				array(
					'layout-1' => WOOSTIFY_THEME_URI . 'assets/images/customizer/cart-page/layout-1.jpg',
					'layout-2' => WOOSTIFY_THEME_URI . 'assets/images/customizer/cart-page/layout-2.jpg',
				)
			),
		)
	)
);

// Sticky proceed to checkout button.
$wp_customize->add_setting(
	'woostify_setting[cart_page_sticky_proceed_button]',
	array(
		'default'           => $defaults['cart_page_sticky_proceed_button'],
		'type'              => 'option',
		'sanitize_callback' => 'woostify_sanitize_checkbox',
	)
);

$wp_customize->add_control(
	new Woostify_Switch_Control(
		$wp_customize,
		'woostify_setting[cart_page_sticky_proceed_button]',
		array(
			'label'       => __( 'Sticky Proceed To Checkout Button', 'woostify' ),
			'description' => __( 'This option only available on mobile devices', 'woostify' ),
			'settings'    => 'woostify_setting[cart_page_sticky_proceed_button]',
			'section'     => 'woostify_cart_page',
		)
	)
);

SILENT KILLER Tool