diff --git a/admin/action-hook.php b/admin/action-hook.php index b60d44ad..42cce462 100644 --- a/admin/action-hook.php +++ b/admin/action-hook.php @@ -204,11 +204,11 @@ function wpt_configure_basic_part( $settings,$current_config_value,$field_name ) - + @@ -221,40 +221,43 @@ function wpt_configure_basic_part( $settings,$current_config_value,$field_name ) + - + - + + +

- + - + + -

+

Direct Checkout Page[for Add to cart Selected]

+ - + - + @@ -263,8 +266,8 @@ function wpt_configure_basic_part( $settings,$current_config_value,$field_name ) diff --git a/admin/admin-enqueue.php b/admin/admin-enqueue.php index ccf9b764..7a175a61 100644 --- a/admin/admin-enqueue.php +++ b/admin/admin-enqueue.php @@ -8,12 +8,12 @@ */ function wpt_admin_enqueue(){ - wp_enqueue_style( 'wpt-admin', WPT_Product_Table::getPath( 'BASE_URL' ) . 'assets/css/admin.css', array(), '1.0.0', 'all' ); + wp_enqueue_style( 'wpt-admin', WPT_Product_Table::getPath( 'BASE_URL' ) . 'assets/css/admin.css', array(), WPT_DEV_VERSION, 'all' ); /** * Including UltraAddons CSS form Style */ - wp_enqueue_style( 'ultraaddons-css', WPT_Product_Table::getPath( 'BASE_URL' ) . 'assets/css/admin-common.css', array(), '1.0.0', 'all' ); + wp_enqueue_style( 'ultraaddons-css', WPT_Product_Table::getPath( 'BASE_URL' ) . 'assets/css/admin-common.css', array(), WPT_DEV_VERSION, 'all' ); wp_enqueue_style('ultraaddons-css'); /** diff --git a/admin/post_metabox_form.php b/admin/post_metabox_form.php index 8c311a07..bcbe2e6d 100644 --- a/admin/post_metabox_form.php +++ b/admin/post_metabox_form.php @@ -147,7 +147,7 @@ class="button-primary button-primary primary button '); } ul#wpt_column_sortable li.wpt_sortable_peritem.enabled>span.handle{ - background-image: url(''); + background-image: url(''); } diff --git a/admin/tabs/inc-column/column-list.php b/admin/tabs/inc-column/column-list.php index 6a29227d..f1382f85 100644 --- a/admin/tabs/inc-column/column-list.php +++ b/admin/tabs/inc-column/column-list.php @@ -35,6 +35,7 @@ data-keyword="" class="colum_data_input " type="text" + title="" value="" > span.handle.checkbox_handle>input .enabled .wpt_shortable_data>input{ background: rgba(0, 118, 147, 0); + border: 1px solid transparent; +} +.enabled:hover .wpt_shortable_data>input{ border: 1px solid #00769324; } + .expanded_li.enabled .wpt_shortable_data>input { background: #00769314; border: 1px solid #00769324; @@ -433,7 +441,9 @@ span.wpt_keyword { cursor: pointer; opacity: 1; font-size: 11px; + display: none; } +ul#wpt_column_sortable>li.wpt_sortable_peritem:hover span.wpt_column_cross{display: inline-block;} .highlighted_text{color: #d00;} @@ -611,7 +621,7 @@ span.extra_all_on_off { li.wpt_sortable_peritem.enabled span.extra_all_on_off { - background: #007693; + background: #636161; color: white; } span.extra_all_on_off.off_now { @@ -1125,7 +1135,7 @@ ul#wpt_column_sortable>li.wpt_sortable_peritem.enabled{display: flex;} cursor: pointer; background: #e4e4e459; color: black; - border-radius: 9px; + border-radius: 5px; padding: 5px 8px; border: 1px solid #ddd; } diff --git a/assets/js/admin.js b/assets/js/admin.js index 31e6ea71..08dfe8cf 100644 --- a/assets/js/admin.js +++ b/assets/js/admin.js @@ -161,10 +161,10 @@ }); }); - $(document).on('click','.wpt_column_arrow',function(){ + $(document).on('click','ul#wpt_column_sortable>li.wpt_sortable_peritem.enabled .wpt_column_arrow',function(){ var target = $(this).attr('data-target'); var keyword = $(this).attr('data-keyword'); - var thisElement = $(this).parents('.wpt_sortable_peritem'); + var thisElement = $(this).closest('li.wpt_sortable_peritem.enabled'); var prev = thisElement.prev(); var prevClass = prev.attr('class'); var next = thisElement.next(); diff --git a/assets/js/custom.js b/assets/js/custom.js index ab7123ac..1f4a56d8 100644 --- a/assets/js/custom.js +++ b/assets/js/custom.js @@ -1208,7 +1208,12 @@ var temp_number = thisID.replace('single_keyword_',''); $('#wpt_query_search_button_' + temp_number).trigger('click'); })); - $('body').on('change,focus','.search_select,.query_box_direct_value',function(){ + $('body').on('change','.search_select',function(){ + var thisID = $(this).parents('.wpt_product_table_wrapper').attr('id'); + var temp_number = thisID.replace('table_id_',''); + $('#wpt_query_search_button_' + temp_number).trigger('click'); + }); + $('body').on('change,focus','.query_box_direct_value',function(){ var thisID = $(this).parents('.wpt_product_table_wrapper').attr('id'); var temp_number = thisID.replace('table_id_',''); $('#wpt_query_search_button_' + temp_number).trigger('click');