🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-07 04:41:59 | PHP 8.2.32
📂
/ (Root)
/
home
/
eliteewa
/
public_html
/
wp-content
/
themes
/
blocksy
/
inc
/
options
/
woocommerce
📍 /home/eliteewa/public_html/wp-content/themes/blocksy/inc/options/woocommerce
🔄 Refresh
✏️
Editing: single-product-layers.php
Writable
<?php $has_custom_icons = blocksy_manager()->companion->has('custom_icons'); $payment_method_options = [ 'item_visa' => [ 'label' => __('Visa', 'blocksy'), ], 'item_mastercard' => [ 'label' => __('Mastercard', 'blocksy'), ], 'item_amex' => [ 'label' => __('Amex', 'blocksy'), ], 'item_discover' => [ 'label' => __('Discover', 'blocksy'), ], 'item_paypal' => [ 'label' => __('PayPal', 'blocksy'), ], 'item_apple_pay' => [ 'label' => __('Apple Pay', 'blocksy'), ], 'item_google_pay' => [ 'label' => __('Google Pay', 'blocksy'), ], ]; $payment_method_options = array_merge( $payment_method_options, /** * Filters the extra payment method options listed in the single product * payment methods layer. * * @since 2.1.47 * * @param array $payment_methods Extra payment method option definitions. Default empty array. */ apply_filters( 'blocksy:options:woocommerce:single-product:custom-payment-methods', [] ) ); $additional_info_options = [ 'additional_info_item' => [ 'label' => blocksy_safe_sprintf('<%%= item_title || "%s" %%>', __('Item Label', 'blocksy')), 'clone' => 10, 'options' => [ $has_custom_icons ? [ 'icon_source' => [ 'label' => __( 'Icon Source', 'blocksy' ), 'type' => 'ct-radio', 'value' => 'default', 'view' => 'text', 'design' => 'block', 'choices' => [ 'default' => __( 'Default', 'blocksy' ), 'custom' => __( 'Custom', 'blocksy' ), ] ], blocksy_rand_md5() => [ 'type' => 'ct-condition', 'condition' => ['icon_source' => 'custom'], 'options' => [ 'icon' => [ 'type' => 'icon-picker', 'label' => __('Icon', 'blocksy'), 'design' => 'inline', 'value' => [ 'icon' => 'fas fa-check' ] ] ] ], ]: [], 'item_title' => [ 'label' => __('Title', 'blocksy'), 'type' => 'text', 'design' => 'block', 'value' => 'Test text', 'disableRevertButton' => true, 'sync' => [ 'id' => 'woo_single_layout_skip' ] ], ] ] ]; if ($has_custom_icons) { foreach ($payment_method_options as $key => $method) { $payment_method_options[$key]['options'] = [ 'icon_source' => [ 'label' => __( 'Icon Source', 'blocksy' ), 'type' => 'ct-radio', 'value' => 'default', 'view' => 'text', 'design' => 'block', 'choices' => [ 'default' => __( 'Default', 'blocksy' ), 'custom' => __( 'Custom', 'blocksy' ), ] ], blocksy_rand_md5() => [ 'type' => 'ct-condition', 'condition' => ['icon_source' => 'custom'], 'options' => [ 'icon' => [ 'type' => 'icon-picker', 'label' => __('Icon', 'blocksy'), 'design' => 'inline', 'value' => [ 'icon' => 'blc blc-user' ] ] ] ] ]; } } /** * Filters the extra single product layer option definitions. * * @since 2.0.1 * * @param array $options Map of layer id => layer option definition. */ $options = apply_filters( 'blocksy_woo_single_options_layers:extra', [ 'product_breadcrumbs' => [ 'label' => __('Breadcrumbs', 'blocksy'), 'options' => [ 'spacing' => [ 'label' => __( 'Bottom Spacing', 'blocksy' ), 'type' => 'ct-slider', 'min' => 0, 'max' => 100, 'value' => 10, 'responsive' => true, 'sync' => [ 'id' => 'woo_single_layout_skip' ], ], ], ], 'product_title' => [ 'label' => __('Title', 'blocksy'), 'options' => [ 'spacing' => [ 'label' => __( 'Bottom Spacing', 'blocksy' ), 'type' => 'ct-slider', 'min' => 0, 'max' => 100, 'value' => 10, 'responsive' => true, 'sync' => [ 'id' => 'woo_single_layout_skip' ], ], ], ], 'product_rating' => [ 'label' => __('Star Rating', 'blocksy'), 'options' => [ 'spacing' => [ 'label' => __( 'Bottom Spacing', 'blocksy' ), 'type' => 'ct-slider', 'min' => 0, 'max' => 100, 'value' => 10, 'responsive' => true, 'sync' => [ 'id' => 'woo_single_layout_skip' ], ], ], ], 'product_price' => [ 'label' => __('Price', 'blocksy'), /** * Filters the options for the product price single product layer. * * @since 2.0.1 * * @param array $options List of option definitions. * @param string $icon The icon class used for the layer options. */ 'options' => apply_filters( 'blocksy:single-product-layer:options:product_price', [ [ 'spacing' => [ 'label' => __( 'Bottom Spacing', 'blocksy' ), 'type' => 'ct-slider', 'min' => 0, 'max' => 100, 'value' => 35, 'responsive' => true, 'sync' => [ 'id' => 'woo_single_layout_skip' ], ], ] ], 'blc blc-feather' ), ], 'product_desc' => [ 'label' => __('Short Description', 'blocksy'), 'options' => [ 'spacing' => [ 'label' => __( 'Bottom Spacing', 'blocksy' ), 'type' => 'ct-slider', 'min' => 0, 'max' => 100, 'value' => 35, 'responsive' => true, 'sync' => [ 'id' => 'woo_single_layout_skip' ], ], ], ], 'divider' => [ 'label' => __('Divider', 'blocksy'), 'clone' => 5, 'options' => [ 'spacing' => [ 'label' => __( 'Bottom Spacing', 'blocksy' ), 'type' => 'ct-slider', 'min' => 0, 'max' => 100, 'value' => 35, 'responsive' => true, 'sync' => [ 'id' => 'woo_single_layout_skip' ], ], ], ], 'product_add_to_cart' => [ 'label' => __('Add to Cart', 'blocksy'), 'options' => [ 'add_to_cart_layer_title' => [ 'label' => __('Title', 'blocksy'), 'type' => 'text', 'design' => 'block', 'value' => '', 'disableRevertButton' => true, 'sync' => [ 'id' => 'woo_card_layout_skip' ], ], 'has_ajax_add_to_cart' => [ 'label' => __('AJAX Add To Cart', 'blocksy'), 'type' => 'ct-switch', 'value' => 'yes', 'sync' => [ 'id' => 'woo_single_layout_skip' ], ], 'add_to_cart_button_width' => [ 'label' => __('Button Width', 'blocksy'), 'type' => 'ct-slider', 'value' => '100%', 'units' => blocksy_units_config([ ['unit' => '%', 'min' => 30, 'max' => 100], ]), 'responsive' => true, 'setting' => ['transport' => 'postMessage'], 'sync' => [ 'id' => 'woo_single_layout_skip' ], ], 'add_to_cart_button_height' => [ 'label' => __('Button Height', 'blocksy'), 'type' => 'ct-slider', 'min' => 20, 'max' => 100, 'value' => [ 'mobile' => 40, 'tablet' => 55, 'desktop' => 55, ], 'responsive' => true, 'setting' => [ 'transport' => 'postMessage' ], 'sync' => [ 'id' => 'woo_single_layout_skip' ], ], 'spacing' => [ 'label' => __( 'Bottom Spacing', 'blocksy' ), 'type' => 'ct-slider', 'min' => 0, 'max' => 100, 'value' => 35, 'responsive' => true, 'sync' => [ 'id' => 'woo_single_layout_skip' ], ], ], ], 'product_meta' => [ 'label' => __('Meta', 'blocksy'), 'options' => [ 'spacing' => [ 'label' => __( 'Bottom Spacing', 'blocksy' ), 'type' => 'ct-slider', 'min' => 0, 'max' => 100, 'value' => 10, 'responsive' => true, 'sync' => [ 'id' => 'woo_single_layout_skip' ], ], ], ], 'product_payment_methods' => [ 'label' => __('Payment Methods', 'blocksy'), 'sync' => [ 'id' => 'product_payment_methods', ], 'options' => [ 'payment_methods_title' => [ 'label' => __('Title', 'blocksy'), 'type' => 'text', 'design' => 'block', 'value' => __('Guaranteed Safe Checkout', 'blocksy'), 'disableRevertButton' => true, 'sync' => [ 'id' => 'woo_single_layout_skip' ], ], 'payment_items' => [ 'label' => false, 'type' => 'ct-layers', 'itemClass' => 'ct-inner-layer', 'value' => [ [ 'id' => 'item_visa', 'enabled' => true, 'label' => __('Visa', 'blocksy'), ], [ 'id' => 'item_mastercard', 'enabled' => true, 'label' => __('Mastercard', 'blocksy'), ], [ 'id' => 'item_amex', 'enabled' => true, 'label' => __('Amex', 'blocksy'), ], [ 'id' => 'item_discover', 'enabled' => true, 'label' => __('Discover', 'blocksy'), ], ], 'manageable' => true, 'sync' => 'live', 'settings' => $payment_method_options ], 'payment_icons_size' => [ 'label' => __( 'Icon Size', 'blocksy' ), 'type' => 'ct-slider', 'min' => 5, 'max' => 100, 'value' => 40, 'responsive' => true, 'sync' => [ 'id' => 'woo_single_layout_skip' ], ], 'payment_icons_color' => [ 'label' => __('Icons Color', 'blocksy'), 'type' => 'ct-radio', 'value' => 'default', 'view' => 'text', 'design' => 'block', 'choices' => [ 'default' => __( 'Default', 'blocksy' ), 'custom' => __( 'Custom', 'blocksy' ), ], 'sync' => [ 'id' => 'product_payment_methods', ], ], 'spacing' => [ 'label' => __( 'Bottom Spacing', 'blocksy' ), 'type' => 'ct-slider', 'min' => 0, 'max' => 100, 'value' => 10, 'responsive' => true, 'sync' => [ 'id' => 'woo_single_layout_skip' ], ], ], ], 'additional_info' => [ 'label' => __('Reasons to Buy', 'blocksy'), 'options' => [ 'product_additional_info_title' => [ 'label' => __('Title', 'blocksy'), 'type' => 'text', 'design' => 'block', 'value' => __('Extra Features', 'blocksy'), 'sync' => [ 'id' => 'woo_single_layout_skip' ], ], 'additional_info_items' => [ 'label' => __('Items', 'blocksy'), 'type' => 'ct-layers', 'itemClass' => 'ct-inner-layer', 'manageable' => false, 'forcedRevertButton' => true, 'value' => [ [ 'id' => 'additional_info_item', 'enabled' => true, 'item_title' => __('Premium Quality', 'blocksy') ], [ 'id' => 'additional_info_item', 'enabled' => true, 'item_title' => __('Secure Payments', 'blocksy') ], [ 'id' => 'additional_info_item', 'enabled' => true, 'item_title' => __('Satisfaction Guarantee', 'blocksy') ], [ 'id' => 'additional_info_item', 'enabled' => true, 'item_title' => __('Worldwide Shipping', 'blocksy') ], [ 'id' => 'additional_info_item', 'enabled' => true, 'item_title' => __('Money Back Guarantee', 'blocksy') ], ], 'settings' => $additional_info_options ], 'spacing' => [ 'label' => __( 'Bottom Spacing', 'blocksy' ), 'type' => 'ct-slider', 'min' => 0, 'max' => 100, 'value' => 10, 'responsive' => true, 'sync' => [ 'id' => 'woo_single_layout_skip' ], ], ] ], ] );
💾 Save Changes
❌ Cancel