a97a50d6 by Jeff Balicki

qa

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent ecfdf989
...@@ -18799,6 +18799,8 @@ ul.sf_date_field .sf-datepicker { ...@@ -18799,6 +18799,8 @@ ul.sf_date_field .sf-datepicker {
18799 .call-out-block h2, .call-out-block .h2 { 18799 .call-out-block h2, .call-out-block .h2 {
18800 padding-top: 32px; 18800 padding-top: 32px;
18801 color: #fff; 18801 color: #fff;
18802 font-family: "PT Sans", sans-serif;
18803 font-weight: 700;
18802 } 18804 }
18803 @media screen and (max-width: 48rem) { 18805 @media screen and (max-width: 48rem) {
18804 .call-out-block h2, .call-out-block .h2 { 18806 .call-out-block h2, .call-out-block .h2 {
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
...@@ -152,4 +152,5 @@ function getName() { ...@@ -152,4 +152,5 @@ function getName() {
152 } 152 }
153 153
154 return $randomString; 154 return $randomString;
155 }
...\ No newline at end of file ...\ No newline at end of file
155 }
156
......
...@@ -104,7 +104,7 @@ function delete_exclude_from_search() ...@@ -104,7 +104,7 @@ function delete_exclude_from_search()
104 foreach ( $pages as $page ){ 104 foreach ( $pages as $page ){
105 $exclude_from_search = get_post_meta($page->ID, 'exclude_from_search', true); 105 $exclude_from_search = get_post_meta($page->ID, 'exclude_from_search', true);
106 if($exclude_from_search == '0'){ 106 if($exclude_from_search == '0'){
107 wp_delete_attachment( $page->ID, true ); 107 wp_update_post(get_post( $page->ID) );
108 //error_log($page->ID); 108 //error_log($page->ID);
109 } 109 }
110 } 110 }
......
...@@ -89,6 +89,6 @@ if ($thumbnail_image && isset($thumbnail_image[0])) { ...@@ -89,6 +89,6 @@ if ($thumbnail_image && isset($thumbnail_image[0])) {
89 </div><!-- #content --> 89 </div><!-- #content -->
90 90
91 </div><!-- #full-width-page-wrapper --> 91 </div><!-- #full-width-page-wrapper -->
92 92 <?php the_field('pre_footer', 'option'); ?>
93 <?php 93 <?php
94 get_footer(); 94 get_footer();
......
...@@ -20,6 +20,8 @@ ...@@ -20,6 +20,8 @@
20 h2{ 20 h2{
21 padding-top: 32px; 21 padding-top: 32px;
22 color: #fff; 22 color: #fff;
23 font-family: "PT Sans",sans-serif;
24 font-weight: 700;
23 @media screen and (max-width: 48rem) { 25 @media screen and (max-width: 48rem) {
24 font-size: 22px; 26 font-size: 22px;
25 line-height: 25px; 27 line-height: 25px;
......
...@@ -2,5 +2,5 @@ ...@@ -2,5 +2,5 @@
2 Theme Name: MSF CA Child 2 Theme Name: MSF CA Child
3 Author: Tenzing Communications 3 Author: Tenzing Communications
4 Template: msf-ca 4 Template: msf-ca
5 Version: 1.0.5310 5 Version: 1.0.5311
6 */ 6 */
...\ No newline at end of file ...\ No newline at end of file
......