1+ <?php
2+
3+ return [
4+
5+ /*
6+ |--------------------------------------------------------------------------
7+ | Theme Config
8+ |--------------------------------------------------------------------------
9+ |
10+ | The theme config allows you to configure how LittleLink Custom should treat your theme.
11+ | All settings can either be set to "true" or "false", unless stated otherwise.
12+ |
13+ | The settings below change how your buttons behave.
14+ |
15+ */
16+
17+ // Some themes may not be compatible with custom buttons created by the Button Editor.
18+ // If 'false' the default button CSS is used.
19+ 'allow_custom_buttons ' => 'false ' ,
20+
21+ 'open_links_in_same_tab ' => 'false ' ,
22+
23+
24+ /*
25+ |--------------------------------------------------------------------------
26+ | Custom Code
27+ |--------------------------------------------------------------------------
28+ |
29+ | Custom code allows you to inject customized Blade, PHP, HTML, JavaScript and CSS code.
30+ |
31+ | In your "extra" folder, you will find 3 separate files for injecting your code to
32+ | different places on the final page (head, body, at the end of the body).
33+ |
34+ | You may also attach custom assets like CSS, JS, or images.
35+ | You can find instructions for this in the files in your extra folder.
36+ |
37+ */
38+
39+ 'enable_custom_code ' => 'false ' ,
40+
41+ // Disable individual files (only applies if above is 'true').
42+ 'enable_custom_head ' => 'true ' ,
43+ 'enable_custom_body ' => 'true ' ,
44+ 'enable_custom_body_end ' => 'true ' ,
45+
46+
47+ /*
48+ |--------------------------------------------------------------------------
49+ | Custom Icons
50+ |--------------------------------------------------------------------------
51+ |
52+ | You may add custom icons to your theme.
53+ | These icons are stored under: .../extra/custom-icons.
54+ |
55+ | You can adjust the file extension types to use other files than just SVGs.
56+ |
57+ */
58+
59+ 'use_custom_icons ' => 'false ' ,
60+
61+ // Is not set correct this will cause errors.
62+ 'custom_icon_extension ' => '.svg ' , // (.png, .jpg ...)
63+
64+
65+
66+ ];
0 commit comments