PluginProbe
Property Hive / 1.4.50
Property Hive v1.4.50
2.4.0 2.3.1 2.3.0 2.2.6 2.2.5 2.2.4 2.2.3 2.2.2 1.4.46 1.4.47 1.4.48 1.4.49 1.4.5 1.4.50 1.4.51 1.4.52 1.4.53 1.4.54 1.4.55 1.4.56 1.4.57 1.4.58 1.4.59 1.4.6 1.4.60 All 262 releases
propertyhive / templates / emails / applicant-match-property.php

applicant-match-property.php in Property Hive 1.4.50, at templates/emails/applicant-match-property.php

28 lines 985 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" style="margin-bottom:10px;">
2 <tr>
3 <td width="25%"><?php
4 $image = $property->get_main_photo_src();
5 if ($image !== FALSE)
6 {
7 ?>
8 <a href="<?php echo get_the_permalink( $property->id ); ?>"><img src="<?php echo $image; ?>" style="max-width:100%" alt="<?php echo get_the_title( $property->id ); ?>"></a>
9 <?php
10 }
11 ?></td>
12 <td>
13 <h2><a href="<?php echo get_the_permalink( $property->id ); ?>"><?php echo get_the_title( $property->id ); ?></a></h2>
14 <p>
15 <strong><?php echo $property->get_formatted_price(); ?></strong> | <?php
16 if ( $property->department != 'commercial' )
17 {
18 echo $property->bedrooms . ' bed ';
19 }
20 else
21 {
22 echo $property->get_formatted_floor_area() . ' | ';
23 }
24 echo $property->get_property_type(); ?> | <?php echo $property->get_availability(); ?></p>
25 <p><?php echo $property->post_excerpt; ?></p>
26 </td>
27 </tr>
28 </table>