-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtpm_widget_seller_spotlight.tpl.php
More file actions
executable file
·56 lines (44 loc) · 2.32 KB
/
tpm_widget_seller_spotlight.tpl.php
File metadata and controls
executable file
·56 lines (44 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php include('includes/getUserSpotlight.inc.php'); ?>
<!-- The shortcode for this page is [tpm-user-profile] -->
<?php if (isset($seller_spotlight_info) AND !empty($seller_spotlight_info)): ?>
<div class="tpm-page-wrapper">
<div class="tpm-subhead-wrapper clearfix">
<div class="tpm-subhead-left">[ DE SPOTLIGHT ]</div>
<div class="tpm-more"><a href="<?php echo bloginfo('url'); ?>/<?php echo TPM_PATH_MARKETPLACE; ?>/<?php echo TPM_PATH_SHOPS; ?>">Bekijk andere shops</a></div>
</div>
<div class="tpm-dotted"></div>
<div class="tpm-profile">
<div class="tpm-avatar">
<a href="<?php echo bloginfo('url'); ?>/<?php echo TPM_PATH_MARKETPLACE; ?>/<?php echo TPM_PATH_SELLER; ?>/?seller=<?php echo $seller_spotlight_info->user_id; ?>">
<img src="<?php echo $seller_spotlight_info->avatar; ?>"/></a>
</div>
<div class="tpm-info">
<div class="tpm-name">
<a href="<?php echo bloginfo('url'); ?>/<?php echo TPM_PATH_MARKETPLACE; ?>/<?php echo TPM_PATH_SELLER; ?>/?seller=<?php echo $seller_spotlight_info->user_id; ?>">
<?php echo $seller_spotlight_info->name; ?></a>
</div>
<div class="tpm-bio">
<?php echo $seller_spotlight_info->bio; ?>
</div>
<div class="tpm-meta">
<div class="tpm-social">
<?php if (isset($seller_spotlight_info->facebook)): ?>
<a class="tpm-facebook" target="_blank" href="<?php echo $seller_spotlight_info->facebook; ?>">facebook</a>
<?php endif; ?>
<?php if (isset($seller_spotlight_info->user->twitter)): ?>
<a class="tpm-twitter" target="_blank" href="<?php echo $seller_spotlight_info->twitter; ?>">twitter</a>
<?php endif; ?>
<?php if (isset($seller_spotlight_info->user->linkedin)): ?>
<a class="tpm-linkedin" target="_blank" href="<?php echo $seller_spotlight_info->linkedin; ?>">linkedin</a>
<?php endif; ?>
</div>
<div class="tpm-more">
<a href="<?php echo bloginfo('url'); ?>/<?php echo TPM_PATH_MARKETPLACE; ?>/<?php echo TPM_PATH_SELLER; ?>/?seller=
<?php echo $seller_spotlight_info->user_id; ?>">View this shop</a>
</div>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<?php endif; ?>