Skip to content

Commit

Permalink
Merge branch 'release/1.4.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
Misplon committed Apr 18, 2018
2 parents 3f0bebf + 43f409f commit dcd4816
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
== Changelog ==

= 1.4.6 - 18 April 2018 =
* Updated search form URL.
* Resolved WooCommerce single product PHP notice by removing meta variable no longer required.
* Minor WooCommerce single product style fix.

= 1.4.5 - 22 March 2018 =
* Updated settings framework to resolve font selection bug when body font not set.

Expand Down
7 changes: 5 additions & 2 deletions sass/woocommerce/_product.scss
Original file line number Diff line number Diff line change
Expand Up @@ -143,11 +143,11 @@
}

.product-under-title-meta {
margin-top: -0.5em;
color: $color__text_medium;
font-size: 0.8em;
margin-bottom: 1em;
line-height: 1.4em;
margin-top: -0.5em;
margin-bottom: 1em;
}

#comments h2 {
Expand All @@ -156,4 +156,7 @@
font-size: 1.3em;
}

#respond .comment-form-rating {
margin: 0 15px;
}
}
2 changes: 1 addition & 1 deletion searchform.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<form method="get" action="<?php echo esc_url( site_url() ) ?>">
<form method="get" action="<?php echo esc_url( home_url( '/' ) ) ?>">
<label for='s' class='screen-reader-text'><?php esc_html_e( 'Search for:', 'siteorigin-north' ); ?></label>
<input type="search" name="s" placeholder="<?php esc_attr_e('Search', 'siteorigin-north') ?>" value="<?php echo get_search_query() ?>" />
<button type="submit">
Expand Down
9 changes: 6 additions & 3 deletions woocommerce.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions woocommerce/single-product/meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@

global $post, $product;

// $cat_count = sizeof( get_the_terms( $post->ID, 'product_cat' ) );
$tag_count = sizeof( get_the_terms( $post->ID, 'product_tag' ) );

?>
<div class="product_meta">

Expand Down

0 comments on commit dcd4816

Please sign in to comment.