ThemeHunk Customizer - Version 2.6.7

Version Description

  • M-shop - Th all in one woo cart style issue fixed.
Download this release

Release Info

Developer themehunk
Plugin Icon 128x128 ThemeHunk Customizer
Version 2.6.7
Comparing to
See all releases

Code changes from version 2.6.6 to 2.6.7

big-store/big-store-admin/woo/big-store-admin.php CHANGED
@@ -224,8 +224,9 @@ function big_store_product_cat_filter_default_loop($term_id,$prdct_optn){
224
  big_store_whish_list_both($pid);
225
  }
226
  if(get_theme_mod( 'big_store_woo_quickview_enable', true )){
 
227
  ?>
228
- <div class="thunk-quickview">
229
  <span class="quik-view">
230
  <a href="#" class="opn-quick-view-text" data-product_id="<?php echo esc_attr($pid); ?>">
231
  <span><?php _e('Quick View','big-store');?></span>
@@ -341,8 +342,10 @@ function big_store_product_filter_loop($args){
341
 
342
 
343
  if(get_theme_mod( 'big_store_woo_quickview_enable', true )){
 
344
  ?>
345
- <div class="thunk-quickview">
 
346
  <span class="quik-view">
347
  <a href="#" class="opn-quick-view-text" data-product_id="<?php echo esc_attr($pid); ?>">
348
  <span><?php _e('Quick View','big-store');?></span>
@@ -491,4 +494,38 @@ class Big_Store_List_Category_Images extends Walker_Category {
491
  }
492
  }
493
  }
494
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
224
  big_store_whish_list_both($pid);
225
  }
226
  if(get_theme_mod( 'big_store_woo_quickview_enable', true )){
227
+ $big_store_quickview_tooltip = esc_html(get_theme_mod( 'big_store_quickview_tooltip_txt' ));
228
  ?>
229
+ <div class="thunk-quickview" th-tooltip="<?php echo $big_store_quickview_tooltip; ?>">
230
  <span class="quik-view">
231
  <a href="#" class="opn-quick-view-text" data-product_id="<?php echo esc_attr($pid); ?>">
232
  <span><?php _e('Quick View','big-store');?></span>
342
 
343
 
344
  if(get_theme_mod( 'big_store_woo_quickview_enable', true )){
345
+ $big_store_quickview_tooltip = esc_html(get_theme_mod( 'big_store_quickview_tooltip_txt' ));
346
  ?>
347
+
348
+ <div class="thunk-quickview" th-tooltip="<?php echo $big_store_quickview_tooltip; ?>">
349
  <span class="quik-view">
350
  <a href="#" class="opn-quick-view-text" data-product_id="<?php echo esc_attr($pid); ?>">
351
  <span><?php _e('Quick View','big-store');?></span>
494
  }
495
  }
496
  }
497
+ }
498
+
499
+
500
+ /**************************************/
501
+ //Below footer function
502
+ /**************************************/
503
+ if ( ! function_exists( 'big_store_below_footer_markup' ) ){
504
+ function big_store_shop_below_footer_markup(){ ?>
505
+ <div class="below-footer">
506
+ <div class="container">
507
+ <div class="below-footer-bar thnk-col-1">
508
+ <div class="below-footer-col1">
509
+ <p class="footer-copyright">&copy;
510
+ <?php
511
+ echo date_i18n(
512
+ /* translators: Copyright date format, see https://www.php.net/date */
513
+ _x( 'Y', 'copyright date format', 'm-shop' )
514
+ );
515
+ ?>
516
+ <a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a>
517
+ <span class="powered-by-wordpress">
518
+ <span><?php _e( 'Designed by', 'm-shop' ); ?></span>
519
+ <a href="<?php echo esc_url( __( 'https://themehunk.com/', 'm-shop' ) ); ?>" target="_blank">
520
+ <?php _e( 'Themehunk', 'm-shop' ); ?>
521
+ </a>
522
+ </span>
523
+ </p><!-- .footer-copyright -->
524
+ </div>
525
+ </div>
526
+ </div>
527
+ </div>
528
+
529
+ <?php }
530
+ }
531
+ add_action( 'big_store_shop_default_below_footer', 'big_store_shop_below_footer_markup' );
big-store/customizer/customizer.php CHANGED
@@ -37,5 +37,25 @@ require THEMEHUNK_CUSTOMIZER_PLUGIN_PATH . 'big-store/customizer/section/frontpa
37
  )
38
  );
39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  }
41
- add_action('customize_register','big_store_plugin_customize_register');
 
37
  )
38
  );
39
 
40
+
41
+
42
+ /*************************/
43
+ /* Footer Section for Pro*/
44
+ /*************************/
45
+
46
+ $wp_customize->add_setting('big-store-footer-pro-link', array(
47
+ 'sanitize_callback' => 'big_store_store_sanitize_text',
48
+ ));
49
+ $wp_customize->add_control(new Big_Store_Misc_Control( $wp_customize, 'big-store-footer-pro-link',
50
+ array(
51
+ 'section' => 'big-store-bottom-footer',
52
+ 'type' => 'pro-link',
53
+ 'url' => 'https://themehunk.com/product/big-store-pro/',
54
+ 'label' => esc_html__( 'Get Pro', 'big-store' ),
55
+ 'priority' =>100,
56
+ )));
57
+
58
+
59
  }
60
+ add_action('customize_register','big_store_plugin_customize_register');
61
+
m-shop/m-shop-admin/woo/m-shop-admin.php CHANGED
@@ -781,6 +781,7 @@ function m_shop_highlight_content($m_shop_highlight_content_id,$default){
781
  /**************************************/
782
  //Below footer function
783
  /**************************************/
 
784
  if ( ! function_exists( 'm_shop_below_footer_markup' ) ){
785
  function m_shop_below_footer_markup(){ ?>
786
  <div class="below-footer">
781
  /**************************************/
782
  //Below footer function
783
  /**************************************/
784
+
785
  if ( ! function_exists( 'm_shop_below_footer_markup' ) ){
786
  function m_shop_below_footer_markup(){ ?>
787
  <div class="below-footer">
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: ThemeHunk
3
  Author URI: : https://www.themehunk.com/
4
  Tags: themehunk, customizer, oneline-lite,Testimonial,Team, service
5
  Requires at least: 5.5
6
- Tested up to: 5.8.2
7
  Stable tag: 2.6.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -30,6 +30,9 @@ Just upload the `themehunk-customizer.zip` to the `/wp-content/plugins/` directo
30
 
31
  == Changelog ==
32
 
 
 
 
33
  = 2.6.6 =
34
  * M-shop category filter ajax function issue fixed.
35
  * M-Shop - Footer below copyright added.
3
  Author URI: : https://www.themehunk.com/
4
  Tags: themehunk, customizer, oneline-lite,Testimonial,Team, service
5
  Requires at least: 5.5
6
+ Tested up to: 5.8.3
7
  Stable tag: 2.6.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
30
 
31
  == Changelog ==
32
 
33
+ = 2.6.7 =
34
+ * M-shop - Th all in one woo cart style issue fixed.
35
+
36
  = 2.6.6 =
37
  * M-shop category filter ajax function issue fixed.
38
  * M-Shop - Footer below copyright added.
themehunk-customizer.php CHANGED
@@ -10,7 +10,7 @@
10
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
11
 
12
  // Version constant for easy CSS refreshes
13
- define('THEMEHUNK_CUSTOMIZER_VERSION', '2.6.5');
14
  define('THEMEHUNK_CUSTOMIZER_PLUGIN_URL', plugin_dir_url(__FILE__));
15
  define('THEMEHUNK_CUSTOMIZER_PLUGIN_PATH', plugin_dir_path(__FILE__) );
16
  include_once(plugin_dir_path(__FILE__) . 'notify/notify.php' );
10
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
11
 
12
  // Version constant for easy CSS refreshes
13
+ define('THEMEHUNK_CUSTOMIZER_VERSION', '2.6.6');
14
  define('THEMEHUNK_CUSTOMIZER_PLUGIN_URL', plugin_dir_url(__FILE__));
15
  define('THEMEHUNK_CUSTOMIZER_PLUGIN_PATH', plugin_dir_path(__FILE__) );
16
  include_once(plugin_dir_path(__FILE__) . 'notify/notify.php' );