2 |
7 |
8 |
9 |
10 | Posted on by = the_author_posts_link() ?>
11 |
12 |
13 |
Read More
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/French/InflectorFactory.php:
--------------------------------------------------------------------------------
1 | from = $from;
18 | $this->to = $to;
19 | }
20 |
21 | public function getFrom(): Word
22 | {
23 | return $this->from;
24 | }
25 |
26 | public function getTo(): Word
27 | {
28 | return $this->to;
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/inc/fields/shared/responsive-hiding.php:
--------------------------------------------------------------------------------
1 | addGroup('responsive_hiding')
8 | ->addTrueFalse('hide_mobile', [
9 | 'instructions' => 'Hide this section on mobiles',
10 | 'default_value' => 0,
11 | ])
12 | ->addTrueFalse('hide_tablet', [
13 | 'instructions' => 'Hide this section on tablets',
14 | 'default_value' => 0,
15 | ])
16 | ->addTrueFalse('hide_desktop', [
17 | 'instructions' => 'Hide this section on desktops',
18 | 'default_value' => 0,
19 | ]);
20 |
21 |
22 | return $responsive_hide;
23 |
--------------------------------------------------------------------------------
/assets/js/utilities/heightMatcher.js:
--------------------------------------------------------------------------------
1 | const heightMatcher = (elem, breakpoint) => {
2 | breakpoint = typeof breakpoint === 'undefined' ? 0 : breakpoint;
3 |
4 | const elements = document.querySelectorAll(elem);
5 | const windowWidth = document.body.clientWidth;
6 | let height = 0;
7 |
8 | if (windowWidth > breakpoint) {
9 | elements.forEach((el) => {
10 | const thisHeight = el.clientHeight;
11 |
12 | if (thisHeight > height) {
13 | height = thisHeight;
14 | }
15 | });
16 | }
17 |
18 | let i;
19 | for (i = 0; i < elements.length; i++) {
20 | elements[i].style.height = height + 'px';
21 | }
22 | };
23 |
24 | export default heightMatcher;
25 |
--------------------------------------------------------------------------------
/inc/woocommerce/_config.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
12 |
13 | $name,
21 | 'operator' => $operator,
22 | 'value' => $value,
23 | ];
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/vendor/doctrine/inflector/lib/Doctrine/Inflector/CachedWordInflector.php:
--------------------------------------------------------------------------------
1 | wordInflector = $wordInflector;
18 | }
19 |
20 | public function inflect(string $word): string
21 | {
22 | return $this->cache[$word] ?? $this->cache[$word] = $this->wordInflector->inflect($word);
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/template-parts/flex/logos/logos.php:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 | $logo) {
10 | ?>
11 |
16 |
19 |
20 |
21 |
22 | This has been kept for the options to be translated for Swiper
18 | // const ocOptions = oc.data('carousel-options');
19 | // const defaults = {
20 | // items: 1,
21 | // loop: true,
22 | // autoplay: true,
23 | // autoplayHoverPause: true,
24 | // checkVisible: false
25 | // };
26 |
--------------------------------------------------------------------------------
/footer.php:
--------------------------------------------------------------------------------
1 |
11 |
12 |
13 |
14 |
15 |
16 |
20 |
25 |
26 |