Skip to content

Commit

Permalink
nMerge branch 'release/2.3.9'
Browse files Browse the repository at this point in the history
  • Loading branch information
MdAsifHossainNadim committed Apr 29, 2024
2 parents afe385b + 6392d9c commit cc7e788
Show file tree
Hide file tree
Showing 11 changed files with 270 additions and 276 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ node_modules
config.codekit
build
package-lock.json
.idea
25 changes: 12 additions & 13 deletions archive-product.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,20 +37,19 @@
<h1 class="page-title"><?php woocommerce_page_title(); ?></h1>

<?php endif; ?>

<?php
if ( woocommerce_product_loop() ) {
/**
* woocommerce_before_shop_loop hook
*
* @hooked woocommerce_result_count - 20
* @hooked woocommerce_catalog_ordering - 30
*/
do_action( 'woocommerce_before_shop_loop' );
}
?>

</div>

<?php
if ( woocommerce_product_loop() ) {
/**
* woocommerce_before_shop_loop hook
*
* @hooked woocommerce_result_count - 20
* @hooked woocommerce_catalog_ordering - 30
*/
do_action( 'woocommerce_before_shop_loop' );
}
?>

<?php do_action( 'woocommerce_archive_description' );

Expand Down
16 changes: 15 additions & 1 deletion assets/less/menu.less
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@
// color: #ccc;
color: #555;

&:hover {
&:hover,
&:focus {
color: #111;
}
}
Expand Down Expand Up @@ -114,6 +115,12 @@
}
}

&:after {
display: table;
content: "";
clear: both;
}


}

Expand Down Expand Up @@ -194,6 +201,13 @@
.dokan-cart-amount-top {
color: #aaa;
}

li.open {

.dokan-cart-amount-top {
color: #fff;
}
}
}

.navbar-default {
Expand Down
2 changes: 1 addition & 1 deletion assets/less/responsive.less
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
}

.site-header ul, .site-header li {
float: none
float: none;
overflow: hidden;
}

Expand Down
2 changes: 1 addition & 1 deletion assets/less/style.less
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Theme URI: http://wedevs.com/theme/dokan/
Author: Tareq Hasan
Author URI: http://tareq.weDevs.com
Description: An e-commerce theme for Dokan
Version: 2.3.4
Version: 2.3.8
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
Expand Down
10 changes: 10 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
v2.3.9 -> Apr 29, 2024
---------------------
- [fix] Enqueue wc-cart-fragments scripts for mini cart rendering issue.
- [update] Product archive page template updated.

v2.3.8 -> Sep 05, 2022
---------------------
- [fix] Updated outdated templates
- [fix] Nav area cart button price focus color

v2.3.7 -> May 28, 2020
---------------------
- [fix] Updated outdated templates
Expand Down
2 changes: 2 additions & 0 deletions functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,8 @@ function scripts() {
wp_enqueue_script( 'flexslider', $template_directory . '/assets/js/jquery.flexslider-min.js', array( 'jquery' ) );

wp_enqueue_script( 'dokan-theme-scripts', $template_directory . '/assets/js/script.js', false, null, true );

wp_enqueue_script( 'wc-cart-fragments' );
}

/**
Expand Down
Loading

0 comments on commit cc7e788

Please sign in to comment.