;(function($){ $( document ).on( 'change', '#report_type,#report_period,#input_based', function(){ var url = quads_localize_data.rest_url + 'quads-adsense/get_report_adsense'; var report_type = $('#report_type').val(); var report_period = $('#report_period').val(); var input_based = (typeof $('#input_based').val() !== "undefined")?$('#input_based').val():''; var pub_id = $('#pub_id').val(); var data ={account_id:pub_id,report_type:report_type,report_period:report_period,input_based:input_based}; if($.trim(report_type) !='' & $.trim(report_period) !='' ) { $('#quads_reports_canvas').html('
'); $.ajax({ url: url, type: 'post', data: JSON.stringify(data), headers: { 'Accept': 'application/json', 'Content-Type': 'application/json', 'X-WP-Nonce': quads_localize_data.nonce, }, success: function (response, status, XHR) { quads_display_report(response); }, error: function (request, status, error) { }, }); }else{ $('#quads_reports_canvas').html('

Please select Report type and Duration

'); } } ); $( document ).on( 'click', '#quads-connect-adsense', function(){ if ( $( this ).hasClass( 'disabled_adsense_link' ) ) return; if ( 'undefined' != typeof window.quadsMapiConnect ) { window.quadsMapiConnect(); } } ); // Unique instance of "quadsMapiConnectClass" var INSTANCE = null; var quadsMapiConnectClass = function( content, options ) { this.options = {}; this.AUTH_WINDOW = null; this.modal = $( '#gadsense-modal' ); this.frame = null; if ( 'undefined' == typeof content || ! content ) { content = 'confirm-code'; } this.setOptions( options ); this.init(); this.show( content ); return this; }; quadsMapiConnectClass.prototype = { constructor: quadsMapiConnectClass, // Set options, for re-use of existing instance for a different purpose. setOptions: function( options ) { var defaultOptions = { autoads: false, onSuccess: false, onError: false, }; if ( 'undefined' == typeof options ) { options = defaultOptions; } this.options = $.extend( {}, defaultOptions, options); }, // Tasks to do after a successful connection. exit: function(){ if ( this.options.onSuccess ) { if ( 'function' == typeof this.options.onSuccess ) { this.options.onSuccess( this ); } } else { window.location.reload(); } }, // Initialization - mostly binding events. init: function(){ var that = this; // Close the modal and hide errors. $( document ).on( 'click', '#gadsense-modal .dashicons-dismiss', function(){ $( '#mapi-code' ).val( '' ); $( '#gadsense-modal, #gadsense-modal-error' ).css( 'display', 'none' ); } ); // Confirm code for account connection. $( document ).on( 'click', '#quads-mapi-confirm-code', function(){ var code = $( '#mapi-code' ).val(); if ( '' == code ) return; $( '.gadsense-overlay' ).css( 'display', 'block' ); $( '#gadsense-modal-error' ).hide(); var data = { action: 'quads_gadsense_mapi_confirm_code', code: code, nonce: quads.nonce, }; $.ajax({ url: ajaxurl, type: 'post', data: data, success:function(response, status, XHR){ if ( null !== that.AUTH_WINDOW ) { that.AUTH_WINDOW.close(); } $( '#mapi-code' ).val( '' ); if ( response.status && true === response.status && response['token_data'] ) { that.getAccountDetails( response['token_data'] ); } else { /** * Connection error handling. */ $( '.gadsense-overlay' ).css( 'display', 'none' ); $( '#mapi-code' ).val( '' ); $( '#mapi-autoads' ).prop( 'checked', false ); $( '#gadsense-modal-content-inner .dashicons-dismiss' ).trigger( 'click' ); if ($.parseJSON(response.response_body).error === 'invalid_grant') { $('#gadsense-modal-error').show(); $('#gadsense-reopen-connect').one('click', function (event) { event.preventDefault(); $('#gadsense-modal-error').hide(); that.show(); }); } } }, error:function(request, status, error){ $( '#gadsense-loading-overlay' ).css( 'display', 'none' ); }, }); } ); // Account selection $( document ).on( 'click', '.gadsense-modal-content-inner[data-content="account-selector"] button', function( ev ) { var adsenseID = $( '#mapi-select-account' ).val(); var tokenData = false; var tokenString = $( '.gadsense-modal-content-inner[data-content="account-selector"] input.token-data' ).val(); var details = false; var detailsString = $( '.gadsense-modal-content-inner[data-content="account-selector"] input.accounts-details' ).val(); try { tokenData = JSON.parse( tokenString ); } catch ( Ex ) { console.error( 'Bad token data : ' + tokenString ); } try { details = JSON.parse( detailsString ); } catch ( Ex ) { console.error( 'Bad account details : ' + detailsString ); } if ( details && JSON ) { $( '.gadsense-overlay' ).css( 'display', 'block' ); var data = { action: 'quads_gadsense_mapi_select_account', nonce: quads.nonce, account : details[ adsenseID ], 'token_data': tokenData, }; if ( $( '#mapi-autoads' ).prop( 'checked' ) ) { data['autoads'] = 1; } $.ajax({ url: ajaxurl, type: 'post', data: data, success:function(response, status, XHR){ if ( response.status && true === response.status ) { INSTANCE.exit(); } else { console.log( response ); } }, error:function(request, status, error){ $( '#gadsense-loading-overlay' ).css( 'display', 'none' ); }, }); } } ); }, show: function( content ) { if ( 'undefined' == typeof content ) { content = 'confirm-code'; } this.switchContent( content ); if ( 'confirm-code' == content ) { // Open Google authentication in a child window. this.modal.css( 'display', 'block' ); var oW = $( window ).width(), oH = $( window ).height(), w = Math.min( oW, oH ) * 0.8, h = Math.min( oW, oH ) * 0.8, l = (oW - w) / 2, t = (oH - h) / 2, args = 'resize=1,titlebar=1,width=' + w + ',height=' + h + ',left=' + l + ',top=' + t; this.AUTH_WINDOW = window.open( quads_adsense.auth_url, 'quadsOAuth2', args ); } }, // Get account info based on a newly obtained token. getAccountDetails: function( tokenData ){ var data = { action: 'quads_gadsense_mapi_get_details', nonce: quads.nonce, }; data['token_data'] = tokenData; if ( $( '#mapi-autoads' ).prop( 'checked' ) ) { data['autoads'] = 1; } $.ajax({ url: ajaxurl, type: 'post', data: data, success:function(response, status, XHR){ if ( response.status && true === response.status ) { if ( response['adsense_id'] ) { INSTANCE.exit(); } else if ( response['token_data'] ) { INSTANCE.switchContent( 'account-selector' ); INSTANCE.frame.find( 'select' ).html( response.html ); INSTANCE.frame.find( 'input.token-data' ).val( JSON.stringify( response['token_data'] ) ); INSTANCE.frame.find( 'input.accounts-details' ).val( JSON.stringify( response['details'] ) ); } else { INSTANCE.switchContent( 'error' ); INSTANCE.frame.find( '.error-message' ).text( JSON.stringify( response ) ); } } else { if ( response['raw']['errors'][0]['message'] ) { INSTANCE.switchContent( 'error' ); INSTANCE.frame.find( '.error-message' ).text( response['raw']['errors'][0]['message'] ); if ( 'undefined' != typeof quads.connectErrorMsg[response['raw']['errors'][0]['reason']] ) { INSTANCE.frame.find( '.error-description' ).html( quads.connectErrorMsg[response['raw']['errors'][0]['reason']] ); } else { INSTANCE.frame.find( '.error-message' ).append( ' (' + response['raw']['errors'][0]['reason'] + ')' ); } } else if ( response['raw']['message'] ) { INSTANCE.frame.find( '.error-message' ).text( response['raw']['errors'][0]['message'] ); } } }, error:function(request, status, error){ $( '#gadsense-loading-overlay' ).css( 'display', 'none' ); }, }); }, // Switch between frames in the modal container. switchContent: function( content ) { if ( this.modal.find( '.gadsense-modal-content-inner[data-content="' + content + '"]' ).length ) { this.modal.find( '.gadsense-modal-content-inner' ).css( 'display', 'none' ); this.frame = this.modal.find( '.gadsense-modal-content-inner[data-content="' + content + '"]' ); this.frame.css( 'display', 'block' ); $( '.gadsense-overlay' ).css( 'display', 'none' ); } }, // Show the modal frame with a given content. // Hide the modal frame hide: function(){ this.switchContent( 'confirm-code' ); this.modal.css( 'display', 'none' ); }, }; window.quadsMapiConnectClass = quadsMapiConnectClass; // Shortcut function. window.quadsMapiConnect = function( content, options ) { if ( 'undefined' == typeof content || ! content ) { content = 'confirm-code'; } if ( 'undefined' == typeof options ) { options = {}; } if ( null === INSTANCE ) { INSTANCE = new quadsMapiConnectClass( content, options ); } else { INSTANCE.show( content, options ); } } $(function(){ // Move the the pop-up outside of any form. $( '#wpwrap' ).append( $( '#gadsense-modal' ) ); }); })(window.jQuery); function quads_display_report(response){ var report_type = document.getElementById('report_type').value; if(report_type == 'top_device_type') { var data_length = response.length; var datasets =[]; var dates_array = []; var desktop_total =0; var tablet_total =0; var mobile_total =0; for (index = 0; index < data_length; ++index) { if(!dates_array.includes(response[index][0]) ) { dates_array.push(response[index][0]); } if (response[index][1] == 'Desktop') { desktop_total += parseFloat(response[index][2]); } else if (response[index][1] == 'Tablet') { tablet_total += parseFloat(response[index][2]); } else if (response[index][1] == 'HighEndMobile') { mobile_total += parseFloat(response[index][2]); } } datasets= [{ data: [ desktop_total.toFixed(2),tablet_total.toFixed(2),mobile_total.toFixed(2) ], backgroundColor: [ 'red', 'green', 'blue', ], label: 'Top Earning Device type' }]; var config = { type: 'pie', data: { datasets: datasets, labels: [ 'Desktop', 'Tablet', 'Mobile', ] }, options: { legend: { position: 'bottom', }, hover: { mode: 'nearest', intersect: true }, responsive: true } }; }else { var data_length = response.length; var dates_array = []; var data = []; for (index = 0; index < data_length; ++index) { var date = new Date((response[index][0])); var month = date.toLocaleString('default', { month: 'short' }); var New_date_formate = date.getDate()+' '+month+' '+date.getUTCFullYear(); if (!dates_array.includes(New_date_formate)) { dates_array.push(New_date_formate); } data.push(response[index][1]); } datasets = [{ label: 'Earnings', backgroundColor: 'red', borderColor: 'red', data: data, fill: false, }]; var config = { type: 'line', data: { labels: dates_array, datasets: datasets }, options: { legend: { position: 'bottom', }, hover: { mode: 'nearest', intersect: true }, responsive: true, tooltips: { mode: 'index', intersect: false, }, plugins: { title: { display: true, text: 'Chart.js Line Chart' }, }, scales: { xAxes: { display: true, scaleLabel: { display: true, labelString: 'Month' } }, yAxes: { display: true, scaleLabel: { display: true, labelString: 'Value' } } } } }; } quadsDrawChart(config); } function quadsDrawChart(config){ if(document.getElementById("quads_canvas")) document.getElementById("quads_canvas").outerHTML = ""; var new_canvas = "" + " "; document.getElementById('quads_reports_canvas').innerHTML = new_canvas; if(window.myPieChart ) { window.myPieChart.update(); } // Get the context of the canvas element we want to select var ctx = document.getElementById('quads_canvas'); // ctx.clearRect(0, 0, canvas.width, canvas.height); window.myPieChart = new Chart(ctx, config); }import countryTranslations from "./countries.js"; import interfaceTranslations from "./interface.js"; export { countryTranslations, interfaceTranslations }; const allTranslations = { ...countryTranslations, ...interfaceTranslations }; export default allTranslations; .redux-container-datetime .redux-datetime-container .input_wrapper, .redux-container-datetime .redux-datetime-container .single_wrapper { display: block; position: relative; margin: 0 4px 0 5px; padding: 0; width: 25%; max-width: 25%; min-width: 70px; float: left; clear: none; height: 57px; -webkit-box-sizing: border-box; box-sizing: border-box; vertical-align: baseline; } .redux-container-datetime .redux-datetime-container .single_wrapper { width: 50% !important; max-width: 50% !important; } .redux-container-datetime .redux-datetime-container label { display: block; position: relative; font-size: 12px !important; text-align: left; color: #999999; margin: 4px 0 2px 0 !important; cursor: default; } .redux-container-datetime .redux-datetime-container .redux-date-picker { width: 100%; } .redux-container-datetime .redux-datetime-container .redux-time-picker { width: 100%; } .ui-tpicker-grid-label { background: none; border: none; margin: 0; padding: 0; } .ui-timepicker-div .ui-widget-header { margin-bottom: 8px; } .ui-timepicker-div dl { text-align: left; } .ui-timepicker-div dl dt { float: left; clear: left; padding: 0 0 0 5px; } .ui-timepicker-div dl dd { margin: 0 10px 10px 40%; } .ui-timepicker-div td { font-size: 90%; } .ui-timepicker-div .ui_tpicker_unit_hide { display: none; } .ui-timepicker-div .ui_tpicker_time .ui_tpicker_time_input { background: none; color: inherit; border: none; outline: none; border-bottom: solid 1px #555; width: 95%; } .ui-timepicker-div .ui_tpicker_time .ui_tpicker_time_input:focus { border-bottom-color: #aaa; } .ui-timepicker-div.ui-timepicker-oneLine { padding-right: 2px; } .ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_time, .ui-timepicker-div.ui-timepicker-oneLine dt { display: none; } .ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_time_label { display: block; padding-top: 2px; } .ui-timepicker-div.ui-timepicker-oneLine dl { text-align: right; } .ui-timepicker-div.ui-timepicker-oneLine dl dd, .ui-timepicker-div.ui-timepicker-oneLine dl dd > div { display: inline-block; margin: 0; } .ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_millisec:before, .ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_microsec:before { content: "."; display: inline-block; } .ui-timepicker-div.ui-timepicker-oneLine dd.ui_tpicker_minute:before, .ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_second:before { content: ":"; display: inline-block; } .ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_unit_hide, .ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_unit_hide:before { display: none; } .ui-timepicker-div .ui-widget-header { margin-bottom: 8px; } .ui-timepicker-div .ui-slider { position: relative; text-align: left; } .ui-timepicker-div .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; -ms-touch-action: none; touch-action: none; } .ui-timepicker-div .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: 0.7em; display: block; border: 0; background-position: 0 0; } .ui-timepicker-div .ui-slider.ui-state-disabled .ui-slider-handle, .ui-timepicker-div .ui-slider.ui-state-disabled .ui-slider-range { -webkit-filter: inherit; filter: inherit; } .ui-timepicker-div .ui-slider-horizontal { height: 0.8em; } .ui-timepicker-div .ui-slider-horizontal .ui-slider-handle { top: -0.3em; margin-left: -0.6em; } .ui-timepicker-div .ui-slider-horizontal .ui-slider-handle { top: -0.3em; margin-left: -0.6em; } .ui-timepicker-div .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } .ui-timepicker-div .ui-slider-horizontal .ui-slider-range-min { left: 0; } .ui-timepicker-div .ui-slider-horizontal .ui-slider-range-max { right: 0; } .ui-timepicker-div .ui-slider-vertical { width: 0.8em; height: 100px; } .ui-timepicker-div .ui-slider-vertical .ui-slider-handle { left: -0.3em; margin-left: 0; margin-bottom: -0.6em; } .ui-timepicker-div .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } .ui-timepicker-div .ui-slider-vertical .ui-slider-range-min { bottom: 0; } .ui-timepicker-div .ui-slider-vertical .ui-slider-range-max { top: 0; } .ui-timepicker-rtl { direction: rtl; } .ui-timepicker-rtl dl { text-align: right; padding: 0 5px 0 0; } .ui-timepicker-rtl dl dt { float: right; clear: right; } .ui-timepicker-rtl dl dd { margin: 0 40% 10px 10px; } /*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInJlZHV4LWRhdGV0aW1lLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRVE7QUFBQTtDQUVJO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7Q0FDQTs7QUFHSjtDQUNJO0NBQ0E7O0FBR0o7Q0FDRTtDQUNBO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7Q0FDQTs7QUFHRjtDQUNJOztBQUdKO0NBQ0k7OztBQU1aO0NBQ0k7Q0FDQTtDQUNBO0NBQ0E7OztBQUlBO0NBQ0k7O0FBR0o7Q0FDSTs7QUFFQTtDQUNJO0NBQ0E7Q0FDQTs7QUFHSjtDQUNJOztBQUlSO0NBQ0k7O0FBR0o7Q0FDSTs7QUFHSjtDQUNHO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7Q0FDQTs7QUFFQTtDQUNJOztBQUlQO0NBQ0k7O0FBRUE7QUFBQTtDQUVJOztBQUdKO0NBQ0k7Q0FBZ0I7O0FBR3BCO0NBQ0k7O0FBRUE7QUFBQTtDQUVJO0NBQ0E7O0FBR0o7QUFBQTtDQUVJO0NBQ0E7O0FBS1I7QUFBQTtDQUVJO0NBQ0E7O0FBR0o7QUFBQTtDQUVJOztBQUlSO0NBQ0k7O0FBR0E7Q0FDSTtDQUNBOztBQUVBO0NBQ0k7Q0FDQTtDQUNBO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7O0FBR0o7Q0FDSTtDQUNBO0NBQ0E7Q0FDQTtDQUNBO0NBQ0E7O0FBR0o7Q0FFSTs7QUFJUjtDQUNJOztBQUVBO0NBQ0k7Q0FDQTs7QUFHSjtDQUNJO0NBQ0E7O0FBR0o7Q0FDSTtDQUNBOztBQUdKO0NBQ0k7O0FBR0o7Q0FDSTs7QUFJWjtDQUNJO0NBQ0E7O0FBRUE7Q0FDSTtDQUNBO0NBQ0E7O0FBR0o7Q0FDSTtDQUNBOztBQUdKO0NBQ0k7O0FBR0o7Q0FDSTs7O0FBS1o7Q0FDSTs7QUFFQTtDQUNJO0NBQ0E7O0FBRUE7Q0FDSTtDQUNBOztBQUdKO0NBQ0kiLCJmaWxlIjoicmVkdXgtZGF0ZXRpbWUuY3NzIn0= */ /*# sourceMappingURL=redux-datetime.css.map */ Smart Door Locks – CompareInsight https://compareinsight.com Your Shortcut to the Best Deals. Tue, 15 Jul 2025 10:41:25 +0000 en-US hourly 1 https://compareinsight.com/wp-content/uploads/2025/04/Favicon-100x100.png Smart Door Locks – CompareInsight https://compareinsight.com 32 32 Keypad Smart Door Lock with Handle: Kucacci Keyless Entry Door Lock – Smart Lock for Front Door – Electronic Door Lock with Keypad for Exterior Door – Deadbolt Lever Alternative – Easy Installation https://compareinsight.com/product/keypad-smart-door-lock-with-handle-kucacci-keyless-entry-door-lock-smart-lock-for-front-door-electronic-door-lock-with-keypad-for-exterior-door-deadbolt-lever-alternative-easy-installation/ https://compareinsight.com/product/keypad-smart-door-lock-with-handle-kucacci-keyless-entry-door-lock-smart-lock-for-front-door-electronic-door-lock-with-keypad-for-exterior-door-deadbolt-lever-alternative-easy-installation/#respond Tue, 15 Jul 2025 10:36:04 +0000 https://compareinsight.com/?post_type=product&p=6259

Veise Keyless Entry Door Lock with 2 Handles ‎Set, Keypad Deadbolt Smart Door Locks, Electronic Digital Lock for Home Front Door Easy Installation-Satin Nickel

5.0
$79.99 $109.99
in stock
Walmart.com
Upgrade your security with this advanced veise Keypad Door Lock, combining cutting-edge technology and user-centric design. Enjoy Keyless Entry via a customizable backlit Keypad (with Backlit illumination for low-light use) or generate a secure One Time Code for temporary access. The...

User reviews

Love it!!! This works so well %26 looks fantastic on my door. Good quality. I like that they give you options... like being able to turn off the auto lock. Easy to use %26 easy to install. I love that it is backlit too!
Great Lock! This combination was such a quick install (with help) and very sturdy and love the color and lock pad!!! So happy with this purchase ! I'll be ordering another for my back door! I feel much more secure than I dis with the old knobs and lock!
works as it should, a little bit of a pain setting codes but it works.
Keyless entry. Easy to put together and programming was easy
Keyless deadbolt entry. Elegant design for front door. Nice feature to have. Thank you.
Easy to use
Frustration at its best. The product of itself was good but the box appears to have been opened from the bottom and taped back (It was supposed to be new). I was a bit worried since this is an external door lock then, i paid for expert set up and it was worse than pulling a tooth. I kept calling Walmart customer service , which gave me a number to call Angies, i called that number several times and was sent back to Walmart customer service.

Bitiwend Fingerprint Keyless Entry Door Lock with 2 Handles, Security Keypad Deadbolt Lock, Electronic Smart Door Locks, Auto Lock, Easy Installation- Matte...

4.0
$49.99
out of stock
Walmart.com
Keyless Entry Door Lock with Handle - Fingerprint Door Lock for Front Door - Smart Deadbolt Lock - Electronic Digital Keypad Lock Set with Code - Auto Lock - Easy Installation - Matte Black ➨ Product Description: ◆ 【Keyless Entry Door Lock with Handle】 --- This Fingerprint Door Lock offers a...

User reviews

Code lock. The code lock works perfectly. And looks so good.
great value. This is a great value .It looks very elegent installed
Great product for the price. It will only let you program 2 codes, but its nice! Highly recommend
The best. Amazing
Ding dong. The door bell works great. A whole symphony of melodies but I chose the default ring. The plug in chimes flash too, big attention getter.
great item nice loud chime and works even when in. we did not know when someone was at the front door if we were in some areas of the house or on the back deck this unit fixed that problem
Not such an easy installation as it said
it didn't fit my door

TEEHO Keyless Entry Door Lock with 2 Knobs ‎Set, Keypad Deadbolt Smart Door Locks, Electronic Digital Lock for Home Front Door Easy Installation-Matte Black

4.0
$59.99 $179.99
out of stock
Walmart.com
The TEEHO fingerprint keyless entry door lock offers advanced security and convenience for your home or office. With a 99.99% recognition rate, the fingerprint sensor unlocks your door in just 0.3 seconds. You can also use the keypad to enter up to 20 unique passcodes or assign temporary...

User reviews

There When Needed to. Outstanding customer support. Ordered 2 for the house. Installed both in less than two hours with no issues and then received an email stating they were there if needed.
Love it!! Best thing we could have bought. No need to go searching in your bag for the keys. Just enter the code and you're in your home. Highly recommend this product.
Numeric code locks. Deluxe came very well package and they were very easy to install. The overall quality of the locks themselves looks sturdy. Overall placed with the purchase.s
Happy with purchase. Perfect for elderly parents that lose house keys-better than other brands
4 stars. Very good appearance. So far works great. A little tricky to learn how to use; only complaint. A handy person would have no trouble.
A breeze to install! ease of installation - arrived undamaged - packaged professionally.
Great but has a major flaw. The unit looks awesome and is good for my shed. The bad, the two main bolts holding the inner and outer parts of pieces together have bad threads to go into! One bolt I was able to get in with force, the other not all the way, leaving the unit vulnerable for intruders.
Looks like a nice unit and i was looking forward to installing it but on opening it up is immediately noticed that although i ordered satin nickel finish the door knob was satin nickel on one side and an antique bronze on the other! So back it goes. Poor quality control, and the box kind of looked like it had been opened before (it was not sealed)
this is just not what i expected so its probably my fault. i thought i was getting door lock knobs, and 3 deadbolk code things
Didn't use them yet can't get my new doors made

Fingerprint Door Lock with Handle Set, Keyless Entry Deadbolt, Smart Digital Keypad Lock for Front Door, Auto-Lock & One Touch Locking, Black

5.0
$99.99
out of stock
Walmart.com
Keyless Entry Door Lock with Handle, Fingerprint Door Lock, Electronic Keypad Deadbolt with Door Knob, Keypad Door Lock with Handle, Smart Lock for Front Door, Auto-Lock & One Touch Locking Specification: Model: DS10 Keypad Type: Mechanical Material: Aluminum Unlock...

User reviews

Worth the Money Spent. Easy to install. Comes with written and video instructions.

🔥【Easy DIY Installation】Easily upgrade your front door, experience hassle-free installation with just a screwdriver in 10 mintues– no additional drilling or specialized tools needed. Its compact design seamlessly allow to quick replace your door levers, knobs, deadbolts, or locksets. The reversible handle fits for both left and right door opening.
🔥【Multiple Keyless Access】Enjoy fingerprint + pin code + smartphone app + key fob + mechanical keys, what’s more, you still can use Alexa voice (Wi-Fi Gateway required) and remote unlock (Wi-Fi Gateway required) for your door. This multifunctional smart lock provides personalized access for your children, elderly family members. Versatility at its finest!
🔥【Effortless App Control】 Command your exterior door from your phone. Authorize permissions for family or friends by app. Generate one-time or permanent code remotely. Real-time access tracking keeps you in the loop even you’re outside. Auto lock feature keeps your back always safe.

]]>
https://compareinsight.com/product/keypad-smart-door-lock-with-handle-kucacci-keyless-entry-door-lock-smart-lock-for-front-door-electronic-door-lock-with-keypad-for-exterior-door-deadbolt-lever-alternative-easy-installation/feed/ 0
Smart Door Lock Keyless Entry with Fingerprint Touchscreen Keypad APP IC Card Key Type-C Charging Unlocking 6 In 1 Electric Biometric Digital Deadbolt for Front Doors Home Apartment Auto-Locking https://compareinsight.com/product/smart-door-lock-keyless-entry-with-fingerprint-touchscreen-keypad-app-ic-card-key-type-c-charging-unlocking-6-in-1-electric-biometric-digital-deadbolt-for-front-doors-home-apartment-auto-locking/ https://compareinsight.com/product/smart-door-lock-keyless-entry-with-fingerprint-touchscreen-keypad-app-ic-card-key-type-c-charging-unlocking-6-in-1-electric-biometric-digital-deadbolt-for-front-doors-home-apartment-auto-locking/#respond Tue, 15 Jul 2025 10:31:16 +0000 https://compareinsight.com/?post_type=product&p=6253

WEILAILIFE Smart Lock Keyless Entry Fingerprint Home Door, WEILAILIFE Touchscreen Keypad with APP Control, Phone, Passcode Bluetooth Door Lock for Hotel...

5.0
$29.99 $300.00
in stock
Walmart.com
The smart fingerprint key-less door lock will make a great guard to you and your family. This smart lock has multiple ways of unlocking with Smartphone, Keypad, Passcode and Mechanical Key. It is simple to install only a screwdriver is all that is required Plus, it is set out to provide extra...

User reviews

Worth it for the price. Fairly easy to install. Don't get the door opening position wrong. The controls will be backwards. Works perfectly. Good buy for the price.
NICE STURDY. I love it easy to install and works perfectly
very easy installation
Great quality! Heavyweight, great quality, it even comes with a rubber backing to make it waterproof.
Easy install and works great. Easy to install and setup and is working great! I would recommend. Good price too.
2 year lifespan. I had this since January 2022 and yesterday (5/3/2024) the fingerprint scanner stopped working. I thought it would last longer

Smart Lock, Electronic Bluetooth with Biometric Fingerprint, Keys, IC Card, Touchscreen Keypad, Auto Lock, Remote Share, APP Control for Home Office Apartment

5.0
$29.99 $44.99
out of stock
Walmart.com
Keypad side 139*66*17mm, back side 168mm*67*28mm, Bluetooth 5.0. Please purchase additional Wifi-gateway for remote control to achieve real time status of smart code door locks. Weight 2.16 pounds, made of ultra thick aluminum alloy, front door deadbolt lock is not easy to damage and keeps you...

Highly Accurate Fingerprint Recognition Rate: 0.1 seconds fast unlocking, recognition rate up to 99.99%. Smart door lock for front door support up to 150 password users, 100 fingerprint users, 100 IC card users (include 2 IC cards), unlimited APP user sharing. The touch screen button of keyless entry smart door lock adopts backlight design (automatically light up after touching), so that you can intuitively grasp the opening status of the keypad door lock through the light feedback.

]]>
https://compareinsight.com/product/smart-door-lock-keyless-entry-with-fingerprint-touchscreen-keypad-app-ic-card-key-type-c-charging-unlocking-6-in-1-electric-biometric-digital-deadbolt-for-front-doors-home-apartment-auto-locking/feed/ 0
Veise RZ07 Smart Lock, Fingerprint Door Lock, 7-in-1 Keyless Entry with App Control, Electronic Touchscreen Keypad Deadbolt, Biometric Smart Locks for Front Door, Matte Black https://compareinsight.com/product/veise-rz07-smart-lock-fingerprint-door-lock-7-in-1-keyless-entry-with-app-control-electronic-touchscreen-keypad-deadbolt-biometric-smart-locks-for-front-door-matte-black/ https://compareinsight.com/product/veise-rz07-smart-lock-fingerprint-door-lock-7-in-1-keyless-entry-with-app-control-electronic-touchscreen-keypad-deadbolt-biometric-smart-locks-for-front-door-matte-black/#respond Tue, 15 Jul 2025 10:30:36 +0000 https://compareinsight.com/?post_type=product&p=6243

Veise Smart Lock, Fingerprint Door Lock, 7-in-1 Keyless Entry with App Control, Electronic Touchscreen Keypad Deadbolt, Biometric Smart Locks for Front Door,...

5.0
$69.99 $89.99
out of stock
Walmart.com
Enhance your home security with the Veise 7-in-1 Fingerprint Bluetooth Door Lock. This intelligent lock features auto-lock, one-touch locking, and an anti-peeping keypad for added peace of mind. You can manage up to 50 fingerprints and 250 user codes while remotely generating access codes for...

Veise Smart Lock, Fingerprint Door Lock, 7-in-1 Keyless Entry with App Control, Electronic Touchscreen Keypad Deadbolt, Biometric Smart Locks for Front Door,...

5.0
$69.99 $99.99
out of stock
Walmart.com
Enhance your home security with the Veise 7-in-1 Fingerprint Bluetooth Door Lock. This intelligent lock features auto-lock, one-touch locking, and an anti-peeping keypad for added peace of mind. You can manage up to 50 fingerprints and 250 user codes while remotely generating access codes for...

User reviews

directions a little iffy but figured it out love the completed system.

Veise Smart Lock for Front Door with App Control, Keyless Entry, Electronic Digital Deadbolt with Touchscreen Keypad Set, Smart Deadbolt, Auto Lock, Easy...

4.0
$69.99
out of stock
Walmart.com
The Veise Smart Lock offers quick and convenient security. Set automatic locking from 1 to 900 seconds or use one-click locking for easy access. It supports over 250 unique passwords, making it great for homes and vacation rentals. Enjoy keyless entry with app control, a remote key, a keypad, or...

Veise Keyless Entry Door Lock with 2 Lever Handles - Electronic Keypad Deadbolt, Easy Installation Digital Smart Front Door Lock Set, Oil Rubbed Bronze

5.0
$79.99 $109.99
in stock
Walmart.com
Upgrade your security with this advanced veise Keypad Door Lock, combining cutting-edge technology and user-centric design. Enjoy Keyless Entry via a customizable backlit Keypad (with Backlit illumination for low-light use) or generate a secure One Time Code for temporary access. The...

User reviews

Love it!!! This works so well %26 looks fantastic on my door. Good quality. I like that they give you options... like being able to turn off the auto lock. Easy to use %26 easy to install. I love that it is backlit too!
Great Lock! This combination was such a quick install (with help) and very sturdy and love the color and lock pad!!! So happy with this purchase ! I'll be ordering another for my back door! I feel much more secure than I dis with the old knobs and lock!
works as it should, a little bit of a pain setting codes but it works.
Keyless entry. Easy to put together and programming was easy
Keyless deadbolt entry. Elegant design for front door. Nice feature to have. Thank you.
Easy to use
Frustration at its best. The product of itself was good but the box appears to have been opened from the bottom and taped back (It was supposed to be new). I was a bit worried since this is an external door lock then, i paid for expert set up and it was worse than pulling a tooth. I kept calling Walmart customer service , which gave me a number to call Angies, i called that number several times and was sent back to Walmart customer service.

7-in-1 Smart Door Lock: Access your smart lock via Fingerprint + App + Web portal + Fobs +Code + eKey sharing + Mechanical key
App & Web Portal Control: You can control the smart lock via smartphone, remotely generate eKey and grant access, manage users, and view records in the app and website management system. The App & Web is free and can be used forever
Intelligent Management: With 50 fingerprints and 250+ multiple user codes, you can remotely generate and share one-time, permanent, scheduled, and recurring code with your house sitters and guests. Ideal for house, apartment, office, and hotel
Enhanced Security: The intelligent lock features auto-lock, one-touch locking, privacy mode, passage mode, and low battery alert, made with an anti-peeping and anti-hacking touchscreen keypad, keeping your home secure
Smart Home Integration: With the Veise G2 gateway(sold separately), you can remotely access your smart deadbolt and voice control with Alexa and Google Home, view real-time access logs, monitor smart lock status, etc

]]>
https://compareinsight.com/product/veise-rz07-smart-lock-fingerprint-door-lock-7-in-1-keyless-entry-with-app-control-electronic-touchscreen-keypad-deadbolt-biometric-smart-locks-for-front-door-matte-black/feed/ 0