testimonial-1.php
2 years ago
testimonial-10.php
2 years ago
testimonial-11.php
2 years ago
testimonial-2.php
2 years ago
testimonial-3.php
2 years ago
testimonial-4.php
2 years ago
testimonial-5.php
2 years ago
testimonial-6.php
2 years ago
testimonial-7.php
2 years ago
testimonial-8.php
2 years ago
testimonial-9.php
2 years ago
testimonial-10.php
70 lines
| 1 | <?php |
| 2 | if (!defined('ABSPATH')) { |
| 3 | exit; // Exit if accessed directly. |
| 4 | } |
| 5 | ?> |
| 6 | <div class="feedback-section-four"> |
| 7 | <div class="d-flex"> |
| 8 | <div class="ezd-xl-col-5 ezd-lg-col-6 ezd-ms-auto ezd-order-lg-last"> |
| 9 | |
| 10 | </div> |
| 11 | <div class="col-xxl-7 col-lg-6 order-lg-first"> |
| 12 | <div class="bg-wrapper position-relative me-xxl-4 md-mt-40 md-mb-40"> |
| 13 | <div class="icon ezd-d-flex ezd-align-items-center ezd-justify-content-center ezd-rounded-circle"> |
| 14 | <?php spel_dynamic_image($settings[ 'quote_img' ], 'full', [ 'class' => 'lazy-img' ]) ?> |
| 15 | </div> |
| 16 | <div class="feedback-slider-three-a"> |
| 17 | <?php |
| 18 | if (!empty($testimonials10)) { |
| 19 | foreach ( $testimonials10 as $item ) { |
| 20 | ?> |
| 21 | <div class="item"> |
| 22 | <?php |
| 23 | if (!empty($item[ 'review_content' ])) { ?> |
| 24 | <p><?php echo esc_html($item[ 'review_content' ]) ?></p> |
| 25 | <?php |
| 26 | } |
| 27 | if (!empty($item[ 'author_name' ])) { ?> |
| 28 | <div class="name text-md"> |
| 29 | <?php echo esc_html($item[ 'author_name' ]); ?> |
| 30 | <span class="opacity-50"><?php echo esc_html($item[ 'author_position' ]); ?></span> |
| 31 | </div> |
| 32 | <?php |
| 33 | } |
| 34 | ?> |
| 35 | </div> |
| 36 | <?php |
| 37 | } |
| 38 | } |
| 39 | ?> |
| 40 | </div> |
| 41 | <ul class="slider-arrows d-flex justify-content-between justify-content-lg-center style-none"> |
| 42 | <li class="prev_d slick-arrow"> |
| 43 | <?php \Elementor\Icons_Manager::render_icon( $settings['prev_arrow_icon'], [ 'aria-hidden' => 'true' ] ); ?> |
| 44 | </li> |
| 45 | <li class="next_d slick-arrow"> |
| 46 | <?php \Elementor\Icons_Manager::render_icon( $settings['next_arrow_icon'], [ 'aria-hidden' => 'true' ] ); ?> |
| 47 | </li> |
| 48 | </ul> |
| 49 | </div> |
| 50 | <!-- /.bg-wrapper --> |
| 51 | </div> |
| 52 | </div> |
| 53 | <div class="slider-wrapper"> |
| 54 | <div class="feedback-slider-three-b"> |
| 55 | <?php |
| 56 | if (!empty($testimonials10)) { |
| 57 | foreach ( $testimonials10 as $item ) { |
| 58 | if (!empty($item[ 'author_image' ][ 'id' ])) { |
| 59 | ?> |
| 60 | <div class="item"> |
| 61 | <?php spel_dynamic_image($item[ 'author_image' ], 'full', [ 'class' => 'lazy-img' ]) ?> |
| 62 | </div> |
| 63 | <?php |
| 64 | } |
| 65 | } |
| 66 | } |
| 67 | ?> |
| 68 | </div> |
| 69 | </div> |
| 70 | </div> |