Skip to content

Commit

Permalink
Merge branch 'release/1.7.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
Misplon committed Sep 29, 2019
2 parents 30f6a32 + aa827da commit 0aa268e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Contributors: siteOrigin
Tags: one-column, two-columns, left-sidebar, right-sidebar, custom-background, custom-colors, custom-menu, custom-logo, featured-images, footer-widgets, full-width-template, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, blog, e-commerce
Requires at least: 4.7
Tested up to: 5.2.2
Tested up to: 5.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -100,6 +100,9 @@ Original design files are available on [Google Drive](https://drive.google.com/f

== Changelog ==

= 1.7.6 - 29 September 2019 =
* WooCommerce: Ensured related products and upsells are correctly displayed when the product has no short description.

= 1.7.5 - 21 August 2019 =
* Updated Customizer settings CSS output. Resolves main menu drop-down settings colors not being applied.

Expand Down
5 changes: 5 additions & 0 deletions sass/woocommerce/_product.scss
Original file line number Diff line number Diff line change
Expand Up @@ -159,4 +159,9 @@
#respond .comment-form-rating {
margin: 0 15px;
}

.up-sells.products,
.related.products {
clear: both;
}
}
4 changes: 4 additions & 0 deletions woocommerce.css

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

8 changes: 4 additions & 4 deletions woocommerce/single-product/meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
/**
* Single Product Meta
*
* @see http://docs.woothemes.com/document/template-structure/
* @author WooThemes
* @package WooCommerce/Templates
* @see http://docs.woothemes.com/document/template-structure/
* @author WooThemes
* @package WooCommerce/Templates
* @version 3.0.0
*/

Expand All @@ -20,7 +20,7 @@
<?php do_action( 'woocommerce_product_meta_start' ); ?>

<?php if ( function_exists( 'wc_get_product_tag_list' ) ) : ?>
<?php echo wc_get_product_tag_list( $product->get_id(), '', '<div class="tags-list">', '</div>' ); ?>
<?php echo wc_get_product_tag_list( $product->get_id(), '', '<div class="tags-list">', '</div>' ); ?>
<?php endif; ?>

<?php do_action( 'woocommerce_product_meta_end' ); ?>
Expand Down

0 comments on commit 0aa268e

Please sign in to comment.