From 28a1022a90ecd778043846d7ff6879589781da5e Mon Sep 17 00:00:00 2001 From: markAking Date: Thu, 30 Jun 2016 13:35:49 -0400 Subject: [PATCH 1/3] comments not showing. this is a two part bug. The first is a php change. the second you need to check in admin under projects. click on quick edit and make sure comments are open! --- .../backer/includes/overrides/project-edit.php | 2 +- .../themes/backer/single-ignition_product.php | 15 ++++----------- 2 files changed, 5 insertions(+), 12 deletions(-) diff --git a/wordpress/wp-content/themes/backer/includes/overrides/project-edit.php b/wordpress/wp-content/themes/backer/includes/overrides/project-edit.php index 494db0a7..fd29460c 100644 --- a/wordpress/wp-content/themes/backer/includes/overrides/project-edit.php +++ b/wordpress/wp-content/themes/backer/includes/overrides/project-edit.php @@ -33,7 +33,7 @@ function override_ign_create_post_type() { 'query_var' => true, 'rewrite' => array( 'slug' => $slug, 'with_front' => true ), 'has_archive' => $slug, - 'supports' => array('title', 'author', 'thumbnail'), + 'supports' => array('title', 'author', 'thumbnail', 'comments'), 'taxonomies' => array('category', 'post_tag', 'project_category'), ) ); diff --git a/wordpress/wp-content/themes/backer/single-ignition_product.php b/wordpress/wp-content/themes/backer/single-ignition_product.php index 40b5add0..9cfe65fd 100644 --- a/wordpress/wp-content/themes/backer/single-ignition_product.php +++ b/wordpress/wp-content/themes/backer/single-ignition_product.php @@ -396,27 +396,20 @@ +
-

Comments

- - -
- - - - - - - +
+
+ -- GitLab From 1d84fcef326fe369fd9c035267553cec7c7a90e4 Mon Sep 17 00:00:00 2001 From: markAking Date: Thu, 30 Jun 2016 13:58:41 -0400 Subject: [PATCH 2/3] carousel images show befor carousel starts. Fixed this with making them hidden until carousel is loaded. basically is an onload time event that we saw the flicker --- .../wp-content/themes/backer/single-ignition_product.php | 2 +- wordpress/wp-content/themes/backer/style1.css | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/wordpress/wp-content/themes/backer/single-ignition_product.php b/wordpress/wp-content/themes/backer/single-ignition_product.php index 9cfe65fd..bf7bd4c3 100644 --- a/wordpress/wp-content/themes/backer/single-ignition_product.php +++ b/wordpress/wp-content/themes/backer/single-ignition_product.php @@ -73,7 +73,7 @@ if ( $slide != '' ) { $img = aq_resize( $slide, $retina === 'true' ? 1690 : 845, $retina === 'true' ? 561 : 281, true, false ); - echo '
'; + echo '
'; } } ?> diff --git a/wordpress/wp-content/themes/backer/style1.css b/wordpress/wp-content/themes/backer/style1.css index de6d445f..4829cee5 100644 --- a/wordpress/wp-content/themes/backer/style1.css +++ b/wordpress/wp-content/themes/backer/style1.css @@ -10,6 +10,13 @@ section#banner { margin:0; min-height: 100px; } +#demo1 .item img{ + width: 100%; + visibility: hidden; +} +#demo1 .owl-item .item img{ + visibility: visible; +} #banner .owl-item.active{ border-bottom:0;} #banner .owl-controls{text-align:center; margin:0; border-radius:25px; border:1px solid #dfdfdf; padding:7px 0 5px; z-index:999999999; position:absolute; bottom:30px; left:25%; background:#fff; border:0; height:30px; padding:6px 40px;} #banner .owl-controls .owl-nav .owl-prev, -- GitLab From 9f7639a6d576646f34fee633d42c2004023238ca Mon Sep 17 00:00:00 2001 From: markAking Date: Thu, 30 Jun 2016 14:18:38 -0400 Subject: [PATCH 3/3] fixing padding on checkout box, the side bar bug was created by me when i was making it look good on mobile --- wordpress/wp-content/themes/backer/style.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wordpress/wp-content/themes/backer/style.css b/wordpress/wp-content/themes/backer/style.css index a8e135da..7bcf85ed 100644 --- a/wordpress/wp-content/themes/backer/style.css +++ b/wordpress/wp-content/themes/backer/style.css @@ -1925,7 +1925,7 @@ input.terms-checkbox-input { .memberdeck .right-column { width: 25%; - float: left; + float: right; } .memberdeck .left-column { @@ -1974,6 +1974,9 @@ input.terms-checkbox-input { width: auto; } +.memberdeck #id-main-submit{ + margin: 50px 0 0; +} /* Notices */ -- GitLab