Skip to content

Commit

Permalink
Merge pull request #413 from Invizo/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
code-with-mehedi authored Sep 17, 2024
2 parents 6a41780 + cdcef2d commit 1938db9
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ jobs:
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
SLUG: storegrowth-sales-booster
VERSION: 1.28.9
VERSION: 1.28.10
2 changes: 0 additions & 2 deletions Includes/Modules/QuickView/Includes/CommonHooks.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,6 @@ public function content_loader_hooks() {
* @since 1.0.0
*/
public function show_single_product_description() {
global $product;
$description = $product->get_description();
include __DIR__ . '/../templates/description-template.php';
}
/**
Expand Down
2 changes: 1 addition & 1 deletion Includes/Modules/QuickView/Includes/EnqueueScript.php
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ private function inline_styles() {
$settings = get_option( 'sgsb_quick_view_settings' );

$modal_bg_color = sgsb_find_option_setting( $settings, 'modal_background_color', '#ffffff' );
$button_color = sgsb_find_option_setting( $settings, 'button_color', '#ffffff' );
$button_color = sgsb_find_option_setting( $settings, 'button_color', '#000000' );
$button_text_color = sgsb_find_option_setting( $settings, 'button_text_color', '#ffffff' );
$button_border_radius = sgsb_find_option_setting( $settings, 'button_border_radius', 4 );
$show_image = sgsb_find_option_setting( $settings, 'show_image', 4 );
Expand Down
18 changes: 10 additions & 8 deletions Includes/Modules/QuickView/templates/description-template.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
<div class="description-container">
<div class="description-heading">
<h3 class="heading">Description</h3>
</div>
<div class="description-content">
<?php echo esc_attr( $description ); ?>
</div>
</div>
<?php
global $post;
$heading = apply_filters( 'sgsb_product_description_heading', __( 'Description', 'woocommerce' ) );
?>

<?php if ( $heading ) : ?>
<h2><?php echo esc_html( $heading ); ?></h2>
<?php endif; ?>

<?php the_content(); ?>
5 changes: 4 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: upsell, sliding cart, side cart, checkout optimization, notification bar,

Requires at least: 5.4
Tested up to: 6.5.3
Stable tag: 1.28.9
Stable tag: 1.28.10
Requires PHP: 7.0
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -267,6 +267,9 @@ StoreGrowth floating notification bar displays ongoing offers and discounts whil

== Changelog ==

= 1.28.10 - 17 Sep, 2024 =
fix: quick view issue

= 1.28.9 - 02 June, 2024 =

fix: paypal checkout button issue
Expand Down
2 changes: 1 addition & 1 deletion storegrowth-sales-booster.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: StoreGrowth - Sales Booster For WooCommerce Lite
* Description: Best WooCommerce Direct Checkout, Fly Cart, BOGO, Quick View, Live Sales Notifications, Floating Notification Bar and More Essential Features for Every WooCommerce Site!
* Version: 1.28.9
* Version: 1.28.10
* Author: Invizo
* Author URI: https://invizo.io/
* License: GPL-2.0+
Expand Down

0 comments on commit 1938db9

Please sign in to comment.