View difference between Paste ID: pv2XVxrY and pSSqS5gC
SHOW: | | - or go back to the newest paste.
1
2
<?php
3
					   //$product is your current product 
4
if($_product->getTierPrice()) {
5
   echo "
6
   
7
   <div>
8
   <h5> BULK ORDERS </h5>
9
   <div class="Delivery_hover_details">?
10
   <span class='coupontooltip'>
11
                        <div>
12
                          <h5>What is the estimated delivery time?</h5>
13
                            
14
                            
15
                            <li>The destination to which you want the order shipped to and the Seller's location</li></p>
16
                        </div>
17
                    </span>
18
                </div>
19
                <ul>
20
                        <li>Bulk Order is available. it will deliver in 4  to 5 days</li>
21
            </ul>
22
   </div>
23
  
24
   </div>
25
   
26
   
27
   ";
28
}
29
else{
30
  echo "not available";
31
}
32
?>
33
34
35
36
<style>
37
38
39
40
.coupontooltip {
41
    display: none;
42
    background: #fffeeb none repeat scroll 0 0;
43
border-radius: 3px;
44
box-shadow: 0 2px 8px 2px #848484;
45
right: 0;
46
height: 300px;
47
line-height: 2;
48
margin-left: 0;
49
overflow-y: scroll;
50
padding: 10px;
51
position: absolute;
52
text-align: justify;
53
width: 300px;
54
z-index: 1000;
55
}
56
57
</style>