PluginProbe
WP Directory Kit / 1.3.3
WP Directory Kit v1.3.3
1.5.6 1.5.5 1.5.4 1.5.3 trunk 1.1.0 1.1.6 1.1.8 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.8 1.4.0 1.4.1 All 35 releases
wpdirectorykit / elementor-elements / views / wdk-locations-grid-cover.php

wdk-locations-grid-cover.php in WP Directory Kit 1.3.3, at elementor-elements/views/wdk-locations-grid-cover.php

77 lines 4.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * The template for Element Locations Grid Cover.
4 * This is the template that elementor element locations, images, links
5 *
6 */
7
8 if ( ! defined( 'ABSPATH' ) ) {
9 exit; // Exit if accessed directly.
10 }
11
12 ?>
13
14 <?php
15 $results_page = wmvc_show_data('conf_link', $settings);
16 if(!is_array($results_page) && !empty($results_page)) {
17 $results_page = get_permalink($results_page);
18 } else {
19 $results_page = get_permalink(wdk_get_option('wdk_results_page'));
20 }
21 ?>
22
23 <div class="wdk-element" id="wdk_el_<?php echo esc_html($id_element);?>">
24 <div class="wdk-locations-grid-cover">
25 <div class="wdk-row">
26 <?php if(count($results) > 0):?>
27 <?php foreach ($results as $key => $value):?>
28 <div class="wdk-col">
29 <div class="wdk-locations-card-cover">
30 <?php if(wmvc_show_data('layout_image_type', $settings) == 'icon'):?>
31 <img src="<?php echo esc_url(wdk_image_src($value, 'full',NULL,'icon_id', 'icon_path'));?>" alt="<?php echo wmvc_show_data('location_title', $value);?>" class="wdk-icon">
32 <?php else:?>
33 <img src="<?php echo esc_url(wdk_image_src($value, 'full',NULL,'image_id', 'image_path'));?>" alt="<?php echo wmvc_show_data('location_title', $value);?>" class="wdk-image">
34 <?php endif;?>
35 <div class="wdk-locations-card-body">
36 <div class="wdk-action-left">
37 <?php if(wmvc_show_data('content_icon_type', $settings) == 'image' && wdk_image_src($value, 'full', NULL,'icon_id')):?>
38 <img src="<?php echo esc_url(wdk_image_src($value, 'full',NULL,'icon_id', 'icon_path'));?>" alt="<?php echo wmvc_show_data('category_title', $value);?>">
39 <?php elseif(wmvc_show_data('content_icon_type', $settings) == 'font'):?>
40 <i class="<?php echo wmvc_show_data('font_icon_code', $value,'');?>"></i>
41 <?php endif;?>
42 </div>
43 <div class="wdk-left-content">
44 <h3 class="wdk-title"><?php echo wmvc_show_data('location_title', $value);?></h3>
45 <span class="wdk-listings-count">
46 <?php
47 echo esc_html(wdk_sprintf(_nx(
48 '%1$s Listing',
49 '%1$s Listings',
50 wmvc_show_data('listings_counter', $value, '0'),
51 'profile listings count',
52 'wpdirectorykit'
53 ), wmvc_show_data('listings_counter', $value, '0')));
54 ?>
55 </span>
56 </div>
57 <div class="wdk-action-right">
58 <a class="wdk-location-btn" href="<?php echo esc_url(wdk_url_suffix($results_page,'search_location='.wmvc_show_data('idlocation', $value)));?>#results">
59 <?php \Elementor\Icons_Manager::render_icon( $settings['link_icon'], [ 'aria-hidden' => 'true' ] ); ?>
60 </a>
61 </div>
62 </div>
63 <a href="<?php echo esc_url(wdk_url_suffix($results_page,'search_location='.wmvc_show_data('idlocation', $value)));?>#results" class="wdk-link"></a>
64 <div class="mask"></div>
65 <div class="overlay"></div>
66 </div>
67 </div>
68 <?php endforeach;?>
69 <?php else:?>
70 <div class="wdk-col wdk-col-full wdk-col-full-always">
71 <p class="wdk_alert wdk_alert-danger"><?php echo esc_html__('Locations not found', 'wpdirectorykit');?></p>
72 </div>
73 <?php endif;?>
74 </div>
75 </div>
76 </div>
77