PluginProbe
Elementor Website Builder – more than just a page builder / 3.4.8
Elementor Website Builder – more than just a page builder v3.4.8
4.3.0-beta3 4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 All 452 releases
← All changes | includes/widgets/image-carousel.php +64 -370 4.1.0-dev23.4.8 View file →
@@ -5,9 +5,8 @@
5 5 exit; // Exit if accessed directly.
6 6 }
7 7
8 8 use Elementor\Core\Kits\Documents\Tabs\Global_Colors;
9 -use Elementor\Modules\Promotions\Controls\Promotion_Control;
10 9
11 10 /**
12 11 * Elementor image carousel widget.
13 12 *
@@ -73,66 +72,9 @@
73 72 public function get_keywords() {
74 73 return [ 'image', 'photo', 'visual', 'carousel', 'slider' ];
75 74 }
76 75
77 - protected function is_dynamic_content(): bool {
78 - return false;
79 - }
80 -
81 76 /**
82 - * Get style dependencies.
83 - *
84 - * Retrieve the list of style dependencies the widget requires.
85 - *
86 - * @since 3.24.0
87 - * @access public
88 - *
89 - * @return array Widget style dependencies.
90 - */
91 - public function get_style_depends(): array {
92 - return [ 'e-swiper', 'widget-image-carousel' ];
93 - }
94 -
95 - /**
96 - * Get script dependencies.
97 - *
98 - * Retrieve the list of script dependencies the widget requires.
99 - *
100 - * @since 3.27.0
101 - * @access public
102 - *
103 - * @return array Widget script dependencies.
104 - */
105 - public function get_script_depends(): array {
106 - return [ 'swiper' ];
107 - }
108 -
109 - public function has_widget_inner_wrapper(): bool {
110 - return ! Plugin::$instance->experiments->is_feature_active( 'e_optimized_markup' );
111 - }
112 -
113 - /**
114 - * Get widget upsale data.
115 - *
116 - * Retrieve the widget promotion data.
117 - *
118 - * @since 3.18.0
119 - * @access protected
120 - *
121 - * @return array Widget promotion data.
122 - */
123 - protected function get_upsale_data() {
124 - return [
125 - 'condition' => ! Utils::has_pro(),
126 - 'image' => esc_url( ELEMENTOR_ASSETS_URL . 'images/go-pro.svg' ),
127 - 'image_alt' => esc_attr__( 'Upgrade', 'elementor' ),
128 - 'description' => esc_html__( 'Gain complete freedom to design every slide with Elementor"s Pro Carousel.', 'elementor' ),
129 - 'upgrade_url' => esc_url( 'https://go.elementor.com/go-pro-image-carousel-widget/' ),
130 - 'upgrade_text' => esc_html__( 'Upgrade Now', 'elementor' ),
131 - ];
132 - }
133 -
134 - /**
135 77 * Register image carousel widget controls.
136 78 *
137 79 * Adds different input fields to allow the user to change and customize the widget settings.
138 80 *
@@ -147,17 +89,8 @@
147 89 ]
148 90 );
149 91
150 92 $this->add_control(
151 - 'carousel_name',
152 - [
153 - 'label' => esc_html__( 'Carousel Name', 'elementor' ),
154 - 'type' => Controls_Manager::TEXT,
155 - 'default' => esc_html__( 'Image Carousel', 'elementor' ),
156 - ]
157 - );
158 -
159 - $this->add_control(
160 93 'carousel',
161 94 [
162 95 'label' => esc_html__( 'Add Images', 'elementor' ),
163 96 'type' => Controls_Manager::GALLERY,
@@ -172,8 +105,9 @@
172 105 $this->add_group_control(
173 106 Group_Control_Image_Size::get_type(),
174 107 [
175 108 'name' => 'thumbnail', // Usage: `{name}_size` and `{name}_custom_dimension`, in this case `thumbnail_size` and `thumbnail_custom_dimension`.
109 + 'separator' => 'none',
176 110 ]
177 111 );
178 112
179 113 $slides_to_show = range( 1, 10 );
@@ -191,9 +125,8 @@
191 125 'render_type' => 'template',
192 126 'selectors' => [
193 127 '{{WRAPPER}}' => '--e-image-carousel-slides-to-show: {{VALUE}}',
194 128 ],
195 - 'content_classes' => 'elementor-control-field-select-small',
196 129 ]
197 130 );
198 131
199 132 $this->add_responsive_control(
@@ -208,9 +141,8 @@
208 141 'condition' => [
209 142 'slides_to_show!' => '1',
210 143 ],
211 144 'frontend_available' => true,
212 - 'content_classes' => 'elementor-control-field-select-small',
213 145 ]
214 146 );
215 147
216 148 $this->add_control(
@@ -242,118 +174,8 @@
242 174 ]
243 175 );
244 176
245 177 $this->add_control(
246 - 'navigation_previous_icon',
247 - [
248 - 'label' => esc_html__( 'Previous Arrow Icon', 'elementor' ),
249 - 'type' => Controls_Manager::ICONS,
250 - 'fa4compatibility' => 'icon',
251 - 'skin' => 'inline',
252 - 'label_block' => false,
253 - 'skin_settings' => [
254 - 'inline' => [
255 - 'none' => [
256 - 'label' => 'Default',
257 - 'icon' => 'eicon-chevron-left',
258 - ],
259 - 'icon' => [
260 - 'icon' => 'eicon-star',
261 - ],
262 - ],
263 - ],
264 - 'recommended' => [
265 - 'fa-regular' => [
266 - 'arrow-alt-circle-left',
267 - 'caret-square-left',
268 - ],
269 - 'fa-solid' => [
270 - 'angle-double-left',
271 - 'angle-left',
272 - 'arrow-alt-circle-left',
273 - 'arrow-circle-left',
274 - 'arrow-left',
275 - 'caret-left',
276 - 'caret-square-left',
277 - 'chevron-circle-left',
278 - 'chevron-left',
279 - 'long-arrow-alt-left',
280 - ],
281 - ],
282 - 'conditions' => [
283 - 'relation' => 'or',
284 - 'terms' => [
285 - [
286 - 'name' => 'navigation',
287 - 'operator' => '=',
288 - 'value' => 'both',
289 - ],
290 - [
291 - 'name' => 'navigation',
292 - 'operator' => '=',
293 - 'value' => 'arrows',
294 - ],
295 - ],
296 - ],
297 - ]
298 - );
299 -
300 - $this->add_control(
301 - 'navigation_next_icon',
302 - [
303 - 'label' => esc_html__( 'Next Arrow Icon', 'elementor' ),
304 - 'type' => Controls_Manager::ICONS,
305 - 'fa4compatibility' => 'icon',
306 - 'skin' => 'inline',
307 - 'label_block' => false,
308 - 'skin_settings' => [
309 - 'inline' => [
310 - 'none' => [
311 - 'label' => 'Default',
312 - 'icon' => 'eicon-chevron-right',
313 - ],
314 - 'icon' => [
315 - 'icon' => 'eicon-star',
316 - ],
317 - ],
318 - ],
319 - 'recommended' => [
320 - 'fa-regular' => [
321 - 'arrow-alt-circle-right',
322 - 'caret-square-right',
323 - ],
324 - 'fa-solid' => [
325 - 'angle-double-right',
326 - 'angle-right',
327 - 'arrow-alt-circle-right',
328 - 'arrow-circle-right',
329 - 'arrow-right',
330 - 'caret-right',
331 - 'caret-square-right',
332 - 'chevron-circle-right',
333 - 'chevron-right',
334 - 'long-arrow-alt-right',
335 - ],
336 - ],
337 - 'conditions' => [
338 - 'relation' => 'or',
339 - 'terms' => [
340 - [
341 - 'name' => 'navigation',
342 - 'operator' => '=',
343 - 'value' => 'both',
344 - ],
345 - [
346 - 'name' => 'navigation',
347 - 'operator' => '=',
348 - 'value' => 'arrows',
349 - ],
350 - ],
351 - ],
352 - ]
353 - );
354 -
355 - $this->add_control(
356 178 'link_to',
357 179 [
358 180 'label' => esc_html__( 'Link', 'elementor' ),
359 181 'type' => Controls_Manager::SELECT,
@@ -370,15 +192,13 @@
370 192 'link',
371 193 [
372 194 'label' => esc_html__( 'Link', 'elementor' ),
373 195 'type' => Controls_Manager::URL,
196 + 'placeholder' => esc_html__( 'https://your-link.com', 'elementor' ),
374 197 'condition' => [
375 198 'link_to' => 'custom',
376 199 ],
377 200 'show_label' => false,
378 - 'dynamic' => [
379 - 'active' => true,
380 - ],
381 201 ]
382 202 );
383 203
384 204 $this->add_control(
@@ -385,14 +205,8 @@
385 205 'open_lightbox',
386 206 [
387 207 'label' => esc_html__( 'Lightbox', 'elementor' ),
388 208 'type' => Controls_Manager::SELECT,
389 - 'description' => sprintf(
390 - /* translators: 1: Link open tag, 2: Link close tag. */
391 - esc_html__( 'Manage your site’s lightbox settings in the %1$sLightbox panel%2$s.', 'elementor' ),
392 - '<a href="javascript: $e.run( \'panel/global/open\' ).then( () => $e.route( \'panel/global/settings-lightbox\' ) )">',
393 - '</a>'
394 - ),
395 209 'default' => 'default',
396 210 'options' => [
397 211 'default' => esc_html__( 'Default', 'elementor' ),
398 212 'yes' => esc_html__( 'Yes', 'elementor' ),
@@ -418,8 +232,17 @@
418 232 ],
419 233 ]
420 234 );
421 235
236 + $this->add_control(
237 + 'view',
238 + [
239 + 'label' => esc_html__( 'View', 'elementor' ),
240 + 'type' => Controls_Manager::HIDDEN,
241 + 'default' => 'traditional',
242 + ]
243 + );
244 +
422 245 $this->end_controls_section();
423 246
424 247 $this->start_controls_section(
425 248 'section_additional_options',
@@ -428,25 +251,17 @@
428 251 ]
429 252 );
430 253
431 254 $this->add_control(
432 - 'lazyload',
433 - [
434 - 'label' => esc_html__( 'Lazyload', 'elementor' ),
435 - 'type' => Controls_Manager::SWITCHER,
436 - 'frontend_available' => true,
437 - ]
438 - );
439 -
440 - $this->add_control(
441 255 'autoplay',
442 256 [
443 257 'label' => esc_html__( 'Autoplay', 'elementor' ),
444 - 'type' => Controls_Manager::SWITCHER,
445 - 'label_on' => esc_html__( 'Yes', 'elementor' ),
446 - 'label_off' => esc_html__( 'No', 'elementor' ),
447 - 'return_value' => 'yes',
258 + 'type' => Controls_Manager::SELECT,
448 259 'default' => 'yes',
260 + 'options' => [
261 + 'yes' => esc_html__( 'Yes', 'elementor' ),
262 + 'no' => esc_html__( 'No', 'elementor' ),
263 + ],
449 264 'frontend_available' => true,
450 265 ]
451 266 );
452 267
@@ -453,13 +268,14 @@
453 268 $this->add_control(
454 269 'pause_on_hover',
455 270 [
456 271 'label' => esc_html__( 'Pause on Hover', 'elementor' ),
457 - 'type' => Controls_Manager::SWITCHER,
458 - 'label_on' => esc_html__( 'Yes', 'elementor' ),
459 - 'label_off' => esc_html__( 'No', 'elementor' ),
460 - 'return_value' => 'yes',
272 + 'type' => Controls_Manager::SELECT,
461 273 'default' => 'yes',
274 + 'options' => [
275 + 'yes' => esc_html__( 'Yes', 'elementor' ),
276 + 'no' => esc_html__( 'No', 'elementor' ),
277 + ],
462 278 'condition' => [
463 279 'autoplay' => 'yes',
464 280 ],
465 281 'render_type' => 'none',
@@ -470,13 +286,14 @@
470 286 $this->add_control(
471 287 'pause_on_interaction',
472 288 [
473 289 'label' => esc_html__( 'Pause on Interaction', 'elementor' ),
474 - 'type' => Controls_Manager::SWITCHER,
475 - 'label_on' => esc_html__( 'Yes', 'elementor' ),
476 - 'label_off' => esc_html__( 'No', 'elementor' ),
477 - 'return_value' => 'yes',
290 + 'type' => Controls_Manager::SELECT,
478 291 'default' => 'yes',
292 + 'options' => [
293 + 'yes' => esc_html__( 'Yes', 'elementor' ),
294 + 'no' => esc_html__( 'No', 'elementor' ),
295 + ],
479 296 'condition' => [
480 297 'autoplay' => 'yes',
481 298 ],
482 299 'frontend_available' => true,
@@ -501,13 +318,14 @@
501 318 $this->add_control(
502 319 'infinite',
503 320 [
504 321 'label' => esc_html__( 'Infinite Loop', 'elementor' ),
505 - 'type' => Controls_Manager::SWITCHER,
506 - 'label_on' => esc_html__( 'Yes', 'elementor' ),
507 - 'label_off' => esc_html__( 'No', 'elementor' ),
508 - 'return_value' => 'yes',
322 + 'type' => Controls_Manager::SELECT,
509 323 'default' => 'yes',
324 + 'options' => [
325 + 'yes' => esc_html__( 'Yes', 'elementor' ),
326 + 'no' => esc_html__( 'No', 'elementor' ),
327 + ],
510 328 'frontend_available' => true,
511 329 ]
512 330 );
513 331
@@ -593,17 +411,17 @@
593 411 ],
594 412 ]
595 413 );
596 414
597 - $this->add_responsive_control(
415 + $this->add_control(
598 416 'arrows_size',
599 417 [
600 418 'label' => esc_html__( 'Size', 'elementor' ),
601 419 'type' => Controls_Manager::SLIDER,
602 - 'size_units' => [ 'px', 'em', 'rem', 'custom' ],
603 420 'range' => [
604 421 'px' => [
605 - 'max' => 100,
422 + 'min' => 20,
423 + 'max' => 60,
606 424 ],
607 425 ],
608 426 'selectors' => [
609 427 '{{WRAPPER}} .elementor-swiper-button.elementor-swiper-button-prev, {{WRAPPER}} .elementor-swiper-button.elementor-swiper-button-next' => 'font-size: {{SIZE}}{{UNIT}};',
@@ -620,9 +438,8 @@
620 438 'label' => esc_html__( 'Color', 'elementor' ),
621 439 'type' => Controls_Manager::COLOR,
622 440 'selectors' => [
623 441 '{{WRAPPER}} .elementor-swiper-button.elementor-swiper-button-prev, {{WRAPPER}} .elementor-swiper-button.elementor-swiper-button-next' => 'color: {{VALUE}};',
624 - '{{WRAPPER}} .elementor-swiper-button.elementor-swiper-button-prev svg, {{WRAPPER}} .elementor-swiper-button.elementor-swiper-button-next svg' => 'fill: {{VALUE}};',
625 442 ],
626 443 'condition' => [
627 444 'navigation' => [ 'arrows', 'both' ],
628 445 ],
@@ -631,9 +448,9 @@
631 448
632 449 $this->add_control(
633 450 'heading_style_dots',
634 451 [
635 - 'label' => esc_html__( 'Pagination', 'elementor' ),
452 + 'label' => esc_html__( 'Dots', 'elementor' ),
636 453 'type' => Controls_Manager::HEADING,
637 454 'separator' => 'before',
638 455 'condition' => [
639 456 'navigation' => [ 'dots', 'both' ],
@@ -657,37 +474,17 @@
657 474 ],
658 475 ]
659 476 );
660 477
661 - $this->add_responsive_control(
662 - 'dots_gap',
663 - [
664 - 'label' => esc_html__( 'Space Between Dots', 'elementor' ),
665 - 'type' => Controls_Manager::SLIDER,
666 - 'size_units' => [ 'px', 'em', 'rem', 'custom' ],
667 - 'range' => [
668 - 'px' => [
669 - 'max' => 20,
670 - ],
671 - ],
672 - 'selectors' => [
673 - '{{WRAPPER}} .swiper-pagination-bullet' => '--swiper-pagination-bullet-horizontal-gap: {{SIZE}}{{UNIT}}; --swiper-pagination-bullet-vertical-gap: {{SIZE}}{{UNIT}};',
674 - ],
675 - 'condition' => [
676 - 'navigation' => [ 'dots', 'both' ],
677 - ],
678 - ]
679 - );
680 -
681 - $this->add_responsive_control(
478 + $this->add_control(
682 479 'dots_size',
683 480 [
684 481 'label' => esc_html__( 'Size', 'elementor' ),
685 482 'type' => Controls_Manager::SLIDER,
686 - 'size_units' => [ 'px', 'em', 'rem', 'custom' ],
687 483 'range' => [
688 484 'px' => [
689 - 'max' => 20,
485 + 'min' => 5,
486 + 'max' => 10,
690 487 ],
691 488 ],
692 489 'selectors' => [
693 490 '{{WRAPPER}} .swiper-pagination-bullet' => 'width: {{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}};',
@@ -698,28 +495,13 @@
698 495 ]
699 496 );
700 497
701 498 $this->add_control(
702 - 'dots_inactive_color',
499 + 'dots_color',
703 500 [
704 501 'label' => esc_html__( 'Color', 'elementor' ),
705 502 'type' => Controls_Manager::COLOR,
706 503 'selectors' => [
707 - // The opacity property will override the default inactive dot color which is opacity 0.2.
708 - '{{WRAPPER}} .swiper-pagination-bullet:not(.swiper-pagination-bullet-active)' => 'background: {{VALUE}}; opacity: 1',
709 - ],
710 - 'condition' => [
711 - 'navigation' => [ 'dots', 'both' ],
712 - ],
713 - ]
714 - );
715 -
716 - $this->add_control(
717 - 'dots_color',
718 - [
719 - 'label' => esc_html__( 'Active Color', 'elementor' ),
720 - 'type' => Controls_Manager::COLOR,
721 - 'selectors' => [
722 504 '{{WRAPPER}} .swiper-pagination-bullet' => 'background: {{VALUE}};',
723 505 ],
724 506 'condition' => [
725 507 'navigation' => [ 'dots', 'both' ],
@@ -780,14 +562,13 @@
780 562 ],
781 563 ]
782 564 );
783 565
784 - $this->add_responsive_control(
566 + $this->add_control(
785 567 'image_spacing_custom',
786 568 [
787 569 'label' => esc_html__( 'Image Spacing', 'elementor' ),
788 570 'type' => Controls_Manager::SLIDER,
789 - 'size_units' => [ 'px' ],
790 571 'range' => [
791 572 'px' => [
792 573 'max' => 100,
793 574 ],
@@ -794,8 +575,9 @@
794 575 ],
795 576 'default' => [
796 577 'size' => 20,
797 578 ],
579 + 'show_label' => false,
798 580 'condition' => [
799 581 'image_spacing' => 'custom',
800 582 'slides_to_show!' => '1',
801 583 ],
@@ -812,14 +594,14 @@
812 594 'selector' => '{{WRAPPER}} .elementor-image-carousel-wrapper .elementor-image-carousel .swiper-slide-image',
813 595 ]
814 596 );
815 597
816 - $this->add_responsive_control(
598 + $this->add_control(
817 599 'image_border_radius',
818 600 [
819 601 'label' => esc_html__( 'Border Radius', 'elementor' ),
820 602 'type' => Controls_Manager::DIMENSIONS,
821 - 'size_units' => [ 'px', '%', 'em', 'rem', 'custom' ],
603 + 'size_units' => [ 'px', '%' ],
822 604 'selectors' => [
823 605 '{{WRAPPER}} .elementor-image-carousel-wrapper .elementor-image-carousel .swiper-slide-image' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
824 606 ],
825 607 ]
@@ -837,16 +619,16 @@
837 619 ],
838 620 ]
839 621 );
840 622
841 - $this->add_responsive_control(
623 + $this->add_control(
842 624 'caption_align',
843 625 [
844 626 'label' => esc_html__( 'Alignment', 'elementor' ),
845 627 'type' => Controls_Manager::CHOOSE,
846 628 'options' => [
847 - 'start' => [
848 - 'title' => esc_html__( 'Start', 'elementor' ),
629 + 'left' => [
630 + 'title' => esc_html__( 'Left', 'elementor' ),
849 631 'icon' => 'eicon-text-align-left',
850 632 ],
851 633 'center' => [
852 634 'title' => esc_html__( 'Center', 'elementor' ),
@@ -851,10 +633,10 @@
851 633 'center' => [
852 634 'title' => esc_html__( 'Center', 'elementor' ),
853 635 'icon' => 'eicon-text-align-center',
854 636 ],
855 - 'end' => [
856 - 'title' => esc_html__( 'End', 'elementor' ),
637 + 'right' => [
638 + 'title' => esc_html__( 'Right', 'elementor' ),
857 639 'icon' => 'eicon-text-align-right',
858 640 ],
859 641 'justify' => [
860 642 'title' => esc_html__( 'Justified', 'elementor' ),
@@ -860,13 +642,8 @@
860 642 'title' => esc_html__( 'Justified', 'elementor' ),
861 643 'icon' => 'eicon-text-align-justify',
862 644 ],
863 645 ],
864 - 'classes' => 'elementor-control-start-end',
865 - 'selectors_dictionary' => [
866 - 'left' => is_rtl() ? 'end' : 'start',
867 - 'right' => is_rtl() ? 'start' : 'end',
868 - ],
869 646 'default' => 'center',
870 647 'selectors' => [
871 648 '{{WRAPPER}} .elementor-image-carousel-caption' => 'text-align: {{VALUE}};',
872 649 ],
@@ -903,21 +680,10 @@
903 680 'selector' => '{{WRAPPER}} .elementor-image-carousel-caption',
904 681 ]
905 682 );
906 683
907 - $this->add_responsive_control(
908 - 'caption_space',
909 - [
910 - 'label' => esc_html__( 'Spacing', 'elementor' ),
911 - 'type' => Controls_Manager::SLIDER,
912 - 'size_units' => [ 'px', '%', 'em', 'rem', 'custom' ],
913 - 'selectors' => [
914 - '{{WRAPPER}} .elementor-image-carousel-caption' => 'margin-block-start: {{SIZE}}{{UNIT}};',
915 - ],
916 - ]
917 - );
684 + $this->end_controls_section();
918 685
919 - $this->end_controls_section();
920 686 }
921 687
922 688 /**
923 689 * Render image carousel widget output on the frontend.
@@ -929,10 +695,8 @@
929 695 */
930 696 protected function render() {
931 697 $settings = $this->get_settings_for_display();
932 698
933 - $lazyload = 'yes' === $settings['lazyload'];
934 -
935 699 if ( empty( $settings['carousel'] ) ) {
936 700 return;
937 701 }
938 702
@@ -944,13 +708,9 @@
944 708 if ( ! $image_url && isset( $attachment['url'] ) ) {
945 709 $image_url = $attachment['url'];
946 710 }
947 711
948 - if ( $lazyload ) {
949 - $image_html = '<img class="swiper-slide-image swiper-lazy" data-src="' . esc_attr( $image_url ) . '" alt="' . esc_attr( Control_Media::get_image_alt( $attachment ) ) . '" />';
950 - } else {
951 - $image_html = '<img class="swiper-slide-image" src="' . esc_attr( $image_url ) . '" alt="' . esc_attr( Control_Media::get_image_alt( $attachment ) ) . '" />';
952 - }
712 + $image_html = '<img class="swiper-slide-image" src="' . esc_attr( $image_url ) . '" alt="' . esc_attr( Control_Media::get_image_alt( $attachment ) ) . '" />';
953 713
954 714 $link_tag = '';
955 715
956 716 $link = $this->get_link_url( $attachment, $settings );
@@ -972,29 +732,10 @@
972 732 }
973 733
974 734 $image_caption = $this->get_image_caption( $attachment );
975 735
976 - $slide_count = $index + 1;
977 - $slide_setting_key = 'swiper_slide_' . $index;
736 + $slide_html = '<div class="swiper-slide">' . $link_tag . '<figure class="swiper-slide-inner">' . $image_html;
978 737
979 - $this->add_render_attribute( $slide_setting_key, [
980 - 'class' => 'swiper-slide',
981 - 'role' => 'group',
982 - 'aria-roledescription' => 'slide',
983 - 'aria-label' => sprintf(
984 - /* translators: 1: Slide count, 2: Total slides count. */
985 - esc_html__( '%1$s of %2$s', 'elementor' ),
986 - $slide_count,
987 - count( $settings['carousel'] )
988 - ),
989 - ] );
990 -
991 - $slide_html = '<div ' . $this->get_render_attribute_string( $slide_setting_key ) . '>' . $link_tag . '<figure class="swiper-slide-inner">' . $image_html;
992 -
993 - if ( $lazyload ) {
994 - $slide_html .= '<div class="swiper-lazy-preloader"></div>';
995 - }
996 -
997 738 if ( ! empty( $image_caption ) ) {
998 739 $slide_html .= '<figcaption class="elementor-image-carousel-caption">' . wp_kses_post( $image_caption ) . '</figcaption>';
999 740 }
1000 741
@@ -1013,21 +754,14 @@
1013 754 if ( empty( $slides ) ) {
1014 755 return;
1015 756 }
1016 757
1017 - $swiper_class = 'swiper';
1018 - $has_autoplay_enabled = 'yes' === $this->get_settings_for_display( 'autoplay' );
1019 -
1020 758 $this->add_render_attribute( [
1021 759 'carousel' => [
1022 760 'class' => 'elementor-image-carousel swiper-wrapper',
1023 - 'aria-live' => $has_autoplay_enabled ? 'off' : 'polite',
1024 761 ],
1025 762 'carousel-wrapper' => [
1026 - 'class' => 'elementor-image-carousel-wrapper ' . $swiper_class,
1027 - 'role' => 'region',
1028 - 'aria-roledescription' => 'carousel',
1029 - 'aria-label' => $settings['carousel_name'],
763 + 'class' => 'elementor-image-carousel-wrapper swiper-container',
1030 764 'dir' => $settings['direction'],
1031 765 ],
1032 766 ] );
1033 767
@@ -1038,27 +772,29 @@
1038 772 $this->add_render_attribute( 'carousel', 'class', 'swiper-image-stretch' );
1039 773 }
1040 774
1041 775 $slides_count = count( $settings['carousel'] );
776 +
1042 777 ?>
1043 778 <div <?php $this->print_render_attribute_string( 'carousel-wrapper' ); ?>>
1044 779 <div <?php $this->print_render_attribute_string( 'carousel' ); ?>>
1045 - <?php // PHPCS - $slides contains the slides content, all the relevant content is escaped above. ?>
780 + <?php // PHPCS - $slides contains the slides content, all the relevent content is escaped above. ?>
1046 781 <?php echo implode( '', $slides ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
1047 782 </div>
1048 783 <?php if ( 1 < $slides_count ) : ?>
784 + <?php if ( $show_dots ) : ?>
785 + <div class="swiper-pagination"></div>
786 + <?php endif; ?>
1049 787 <?php if ( $show_arrows ) : ?>
1050 - <div class="elementor-swiper-button elementor-swiper-button-prev" role="button" tabindex="0">
1051 - <?php $this->render_swiper_button( 'previous' ); ?>
788 + <div class="elementor-swiper-button elementor-swiper-button-prev">
789 + <i class="eicon-chevron-left" aria-hidden="true"></i>
790 + <span class="elementor-screen-only"><?php echo esc_html__( 'Previous', 'elementor' ); ?></span>
1052 791 </div>
1053 - <div class="elementor-swiper-button elementor-swiper-button-next" role="button" tabindex="0">
1054 - <?php $this->render_swiper_button( 'next' ); ?>
792 + <div class="elementor-swiper-button elementor-swiper-button-next">
793 + <i class="eicon-chevron-right" aria-hidden="true"></i>
794 + <span class="elementor-screen-only"><?php echo esc_html__( 'Next', 'elementor' ); ?></span>
1055 795 </div>
1056 796 <?php endif; ?>
1057 -
1058 - <?php if ( $show_dots ) : ?>
1059 - <div class="swiper-pagination"></div>
1060 - <?php endif; ?>
1061 797 <?php endif; ?>
1062 798 </div>
1063 799 <?php
1064 800 }
@@ -1068,9 +804,9 @@
1068 804 *
1069 805 * @since 1.0.0
1070 806 * @access private
1071 807 *
1072 - * @param array $attachment
808 + * @param array $attachment
1073 809 * @param object $instance
1074 810 *
1075 811 * @return array|string|false An array/string containing the attachment URL, or false if no link.
1076 812 */
@@ -1110,12 +846,8 @@
1110 846 }
1111 847
1112 848 $attachment_post = get_post( $attachment['id'] );
1113 849
1114 - if ( Utils::has_invalid_post_permissions( $attachment_post ) ) {
1115 - return '';
1116 - }
1117 -
1118 850 if ( 'caption' === $caption_type ) {
1119 851 return $attachment_post->post_excerpt;
1120 852 }
1121 853
@@ -1122,45 +854,7 @@
1122 854 if ( 'title' === $caption_type ) {
1123 855 return $attachment_post->post_title;
1124 856 }
1125 857
1126 - if ( empty( $attachment_post->post_content ) ) {
1127 - return '';
1128 - }
1129 -
1130 858 return $attachment_post->post_content;
1131 - }
1132 -
1133 - private function render_swiper_button( $type ) {
1134 - $direction = 'next' === $type ? 'right' : 'left';
1135 - $icon_settings = $this->get_settings_for_display( 'navigation_' . $type . '_icon' );
1136 -
1137 - if ( empty( $icon_settings['value'] ) ) {
1138 - $icon_settings = [
1139 - 'library' => 'eicons',
1140 - 'value' => 'eicon-chevron-' . $direction,
1141 - ];
1142 - }
1143 -
1144 - Icons_Manager::render_icon( $icon_settings, [ 'aria-hidden' => 'true' ] );
1145 - }
1146 -
1147 - public function render_markdown(): string {
1148 - $settings = $this->get_settings_for_display();
1149 - if ( empty( $settings['carousel'] ) ) {
1150 - return '';
1151 - }
1152 - $images = [];
1153 - foreach ( $settings['carousel'] as $item ) {
1154 - $url = $item['url'] ?? '';
1155 - if ( empty( $url ) ) {
1156 - continue;
1157 - }
1158 - $alt = '';
1159 - if ( ! empty( $item['id'] ) ) {
1160 - $alt = get_post_meta( $item['id'], '_wp_attachment_image_alt', true );
1161 - }
1162 - $images[] = '![' . $alt . '](' . esc_url( $url ) . ')';
1163 - }
1164 - return implode( "\n\n", $images );
1165 859 }
1166 860 }