Skip to content

Commit

Permalink
Merge branch 'release/1.19.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
Misplon committed Aug 27, 2022
2 parents 921b903 + 1379870 commit 720958b
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 14 deletions.
2 changes: 1 addition & 1 deletion inc/template-tags.php
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ function siteorigin_corp_post_meta( $cats = true, $post_id = '', $echo = true )
/* translators: used between list items, there is a space after the comma */
$categories_list = get_the_category_list( esc_html__( ', ', 'siteorigin-corp' ) );

if ( is_sticky() && is_home() && ! is_paged() ) {
if ( is_sticky() && ! is_paged() ) {
$output .= '<span class="featured-post">' . esc_html__( 'Sticky', 'siteorigin-corp' ) . '</span>';
}

Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Contributors: siteorigin

Tags: one-column, two-columns, left-sidebar, right-sidebar, grid-layout, 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

Tested up to: 5.9
Tested up to: 6.0
Requires at least: 4.7
Requires PHP: 5.6.20
License: GPLv2 or later
Expand Down Expand Up @@ -100,6 +100,9 @@ This theme makes use of the [SiteOrigin Settings Framework](https://github.com/s

== Changelog ==

= 1.19.7 - 27 August 2022 =
* Updated post sticky label to display in the Post Loop Widget, Archives, and search results.

= 1.19.6 - 09 July 2022 =
* WooCommerce: Improved variation drop-down sizing behavior.

Expand Down
2 changes: 1 addition & 1 deletion sass/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Author URI: https://siteorigin.com/
Theme URI: https://siteorigin.com/theme/corp/
Description: A modern business theme from SiteOrigin. Corp is versatile and quick to customize. Fast loading and fully stocked with all the modern theme features you've come to expect and enjoy. Convert visitors to customers with effective layouts and beautifuly presented landing pages. Corp offers seamless integration with Page Builder by SiteOrigin, a custom WooCommerce design, five unique blog layouts and a stunning Jetpack Portfolio layout.
Version: dev
Tested up to: 5.9
Tested up to: 6.0
Requires at least: 4.7
Requires PHP: 5.6.20
License: GNU General Public License v2 or later
Expand Down
3 changes: 2 additions & 1 deletion sass/woocommerce/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@

&.woocommerce-ordering,
.corp-variations-wrapper {

select {
font-size: 13px;
}
Expand All @@ -95,8 +96,8 @@
}

.ordering-selector-wrapper {
border: 1px solid $color__background-hr-dark;
border-radius: 2px;
border: 1px solid $color__background-hr-dark;
cursor: pointer;
font-size: 13px;
line-height: normal;
Expand Down
4 changes: 1 addition & 3 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Author URI: https://siteorigin.com/
Theme URI: https://siteorigin.com/theme/corp/
Description: A modern business theme from SiteOrigin. Corp is versatile and quick to customize. Fast loading and fully stocked with all the modern theme features you've come to expect and enjoy. Convert visitors to customers with effective layouts and beautifuly presented landing pages. Corp offers seamless integration with Page Builder by SiteOrigin, a custom WooCommerce design, five unique blog layouts and a stunning Jetpack Portfolio layout.
Version: dev
Tested up to: 5.9
Tested up to: 6.0
Requires at least: 4.7
Requires PHP: 5.6.20
License: GNU General Public License v2 or later
Expand Down Expand Up @@ -3196,5 +3196,3 @@ object {
font-size: 26px; } }
.featured-posts-slider .slides .slide .slide-content .entry-title a {
color: #fff; }

/*# sourceMappingURL=sass/maps/style.css.map */
2 changes: 1 addition & 1 deletion woocommerce.css

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

10 changes: 5 additions & 5 deletions woocommerce/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -166,11 +166,6 @@ function siteorigin_corp_woocommerce_archive_title() {
}
add_filter( 'woocommerce_show_page_title', 'siteorigin_corp_woocommerce_archive_title' );

/**
* Custom WooCommerce template tags.
*/
include get_template_directory() . '/woocommerce/template-tags.php';

/**
* Add SVG arrow to single product variation select.
*/
Expand All @@ -179,3 +174,8 @@ function siteorigin_corp_woocommerce_nest_variation_select( $html, $args ) {

}
add_filter( 'woocommerce_dropdown_variation_attribute_options_html', 'siteorigin_corp_woocommerce_nest_variation_select', 10, 2 );

/**
* Custom WooCommerce template tags.
*/
include get_template_directory() . '/woocommerce/template-tags.php';
2 changes: 1 addition & 1 deletion woocommerce/js/jquery.woocommerce.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jQuery( function( $ ) {
widest = Math.max( c.find( '.current' ).width(), widest );

} );

c.find( '.current' ).html( $$.find( ':selected' ).html() );
c.find( '.current' ).width( widest );

Expand Down

0 comments on commit 720958b

Please sign in to comment.