-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtpm_widget_spotlight_item.tpl.php
More file actions
executable file
·71 lines (58 loc) · 3.01 KB
/
tpm_widget_spotlight_item.tpl.php
File metadata and controls
executable file
·71 lines (58 loc) · 3.01 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
include('includes/getItem_spotlight.inc.php');
?>
<!-- The shortcode for this page is [tpm-item] -->
<?php if (isset($marketplace_items) AND !empty($marketplace_items)): ?>
<div id="tpm_page_item">
<div id="slides" class="clearfix">
<div class="pagination_outer clearfix"><div class="tpm-subhead-pager">Featured</div><div class="pagination top"></div>
</div>
<div class="tpm-dotted"> </div>
<!-- The seller profile -->
<div class="slides_container">
<?php foreach($marketplace_items as $marketplace_item) : ?>
<!-- Item info, pictures -->
<div class="slide">
<div class="tpm_caption">
<div class="tpm_slide_title"><a href="<?php echo bloginfo('url'); ?>/<?php echo TPM_PATH_MARKETPLACE; ?>/<?php echo TPM_PATH_ITEM; ?>/?item=<?php echo $marketplace_item->item_id; ?>"><?php echo $marketplace_item->title; ?></a></div>
<div class="tpm_slide_price <?php echo $marketplace_item->currency; ?>"> <?php echo $marketplace_item->price; ?></div>
</div>
<div class="image"><a href="<?php echo bloginfo('url'); ?>/<?php echo TPM_PATH_MARKETPLACE; ?>/<?php echo TPM_PATH_ITEM; ?>/?item=<?php echo $marketplace_item->item_id; ?>"><img src="<?php echo str_replace('s.jpg','m.jpg',$marketplace_item->image->small)?>"/></a></div>
<!-- Seller info here -->
<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 $marketplace_item->user->user_id; ?>">
<img src="<?php echo $marketplace_item->user->avatar; ?>"/></a>
</div>
<div class="tpm-info">
<div class="tpm-slide-name">by
<a href="<?php echo bloginfo('url'); ?>/<?php echo TPM_PATH_MARKETPLACE; ?>/<?php echo TPM_PATH_SELLER; ?>/?seller=<?php echo $marketplace_item->user->user_id; ?>">
<?php echo $marketplace_item->user->name; ?></a>
</div>
<div class="tpm-bio">
<?php echo $marketplace_item->user->bio; ?>
</div>
<div class="tpm-meta">
<div class="tpm-social">
<?php if (isset($marketplace_item->user->facebook)): ?>
<a class="tpm-facebook" target="_blank" href="<?php echo $marketplace_item->user->facebook; ?>">facebook</a>
<?php endif; ?>
<?php if (isset($marketplace_item->user->twitter)): ?>
<a class="tpm-twitter" target="_blank" href="<?php echo $marketplace_item->user->twitter; ?>">twitter</a>
<?php endif; ?>
<?php if (isset($marketplace_item->user->linkedin)): ?>
<a class="tpm-linkedin" target="_blank" href="<?php echo $marketplace_item->user->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_SHOPS; ?>/">All shops</a>
</div>
</div>
</div>
</div>
</div>
<?php endforeach;?>
</div>
</div>
</div>
<?php endif; ?>