Diff: STRATO-apps/wordpress_03/app/wp-content/themes/blocksy/inc/panel-builder/header/cart/config.php
Keine Baseline-Datei – Diff nur gegen leer.
1
-
1
+
<?php
2
+
3
+
$config = [
4
+
'name' => __('Cart', 'blocksy'),
5
+
'enabled' => (
6
+
function_exists('is_woocommerce')
7
+
),
8
+
'typography_keys' => ['cart_total_font'],
9
+
'selective_refresh' => [
10
+
'has_cart_dropdown',
11
+
'mini_cart_type',
12
+
'icon_source',
13
+
'icon',
14
+
'image_size'
15
+
]
16
+
];
17
+