ab42f182 by Jeff Balicki

eee

1 parent 5365a8ac
...@@ -186,3 +186,6 @@ function send_planner_notice() ...@@ -186,3 +186,6 @@ function send_planner_notice()
186 186
187 die; 187 die;
188 } 188 }
189
190
191 add_filter( 'wpsl_include_post_content', '__return_true' );
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -138,14 +138,23 @@ margin-top:-2px; ...@@ -138,14 +138,23 @@ margin-top:-2px;
138 text-decoration: underline; 138 text-decoration: underline;
139 } 139 }
140 .start_a_contact{ 140 .start_a_contact{
141 color:#fff !important; 141 color: #fff !important;
142 background-color:#012169; 142 background-color: #012169;
143 padding: 5px 25px 5px 25px; 143 padding: 5px 25px 5px 25px;
144 display: block !important; 144 display: block !important;
145 width: 120px; 145 width: 220px;
146 margin-top: 20px; 146 margin-top: 20px;
147 margin-bottom: 30px; 147 margin-bottom: 30px;
148 text-align: center;
148 } 149 }
150 .wpsl-info-window .start_a_contact{
151 width: unset;
152 }
153 .description p{
154 padding-top: 10px;
155 padding-bottom: 0px;
156 font-size:14px !important;
157 }
149 158
150 .address{ 159 .address{
151 margin-top: 10px; 160 margin-top: 10px;
......
...@@ -8,9 +8,9 @@ $listing_template .= "\t\t" . '<table class="wpsl-store-location">' . "\r\n"; ...@@ -8,9 +8,9 @@ $listing_template .= "\t\t" . '<table class="wpsl-store-location">' . "\r\n";
8 $listing_template .= '<tr><th></th><tr> 8 $listing_template .= '<tr><th></th><tr>
9 <tr class="results_row_top"> 9 <tr class="results_row_top">
10 10
11 <td width="320" class="location"> 11 <td width="500" class="location">
12 <div class="address"> 12 <div class="address">
13 <span class="location_name" ><%= first_name %> <%= last_name %></span>,<%= wpsl-designation % </br> 13 <span class="location_name" ><%= first_name %> <%= last_name %></span>, <%= designation %> </br>
14 <span>' . wpsl_store_header_template('listing') . '</span> 14 <span>' . wpsl_store_header_template('listing') . '</span>
15 </br> 15 </br>
16 <span class="slp_result_address slp_result_street"><%= address %></span> 16 <span class="slp_result_address slp_result_street"><%= address %></span>
...@@ -19,7 +19,7 @@ $listing_template .= '<tr><th></th><tr> ...@@ -19,7 +19,7 @@ $listing_template .= '<tr><th></th><tr>
19 19
20 </div>' . wpsl_more_info_template() . ''; 20 </div>' . wpsl_more_info_template() . '';
21 21
22 $listing_template .= "\t\t\t" . ' '; 22 $listing_template .= "\t\t\t" . '<div class="description"><%= description %></div>';
23 23
24 $listing_template .= '<% if ( email ) { %><a href="#" class="start_a_contact" data-id="<%= id %>" id="<%= id %>">BOOK A CONVERSATION</a><% } %>'; 24 $listing_template .= '<% if ( email ) { %><a href="#" class="start_a_contact" data-id="<%= id %>" id="<%= id %>">BOOK A CONVERSATION</a><% } %>';
25 25
......