| Server IP : 146.59.209.152 / Your IP : 216.73.216.152 Web Server : Apache System : Linux webm009.cluster131.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : monpetu ( 144298) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/monpetu/www/ipprint/wp-content/plugins/order-tracking/assets/js/ |
Upload File : |
//NEW DASHBOARD MOBILE MENU AND WIDGET TOGGLING
jQuery(document).ready(function($){
$('#ewd-otp-dash-mobile-menu-open').click(function(){
$('.ewd-otp-admin-header-menu .nav-tab:nth-of-type(1n+2)').toggle();
$('#ewd-otp-dash-mobile-menu-up-caret').toggle();
$('#ewd-otp-dash-mobile-menu-down-caret').toggle();
return false;
});
$(function(){
$(window).resize(function(){
if($(window).width() > 785){
$('.ewd-otp-admin-header-menu .nav-tab:nth-of-type(1n+2)').show();
}
else{
$('.ewd-otp-admin-header-menu .nav-tab:nth-of-type(1n+2)').hide();
$('#ewd-otp-dash-mobile-menu-up-caret').hide();
$('#ewd-otp-dash-mobile-menu-down-caret').show();
}
}).resize();
});
$('#ewd-otp-dashboard-support-widget-box .ewd-otp-dashboard-new-widget-box-top').click(function(){
$('#ewd-otp-dashboard-support-widget-box .ewd-otp-dashboard-new-widget-box-bottom').toggle();
$('#ewd-otp-dash-mobile-support-up-caret').toggle();
$('#ewd-otp-dash-mobile-support-down-caret').toggle();
});
$('#ewd-otp-dashboard-optional-table .ewd-otp-dashboard-new-widget-box-top').click(function(){
$('#ewd-otp-dashboard-optional-table .ewd-otp-dashboard-new-widget-box-bottom').toggle();
$('#ewd-otp-dash-optional-table-up-caret').toggle();
$('#ewd-otp-dash-optional-table-down-caret').toggle();
});
});
/***********************************************
* ORDERS TABLE
***********************************************/
// REQUIRE CONFIRMATION BEFORE DELETING AN ORDER
jQuery( '.orders #the-list .delete' ).on( 'click', function() {
var order_id = jQuery( this ).data( 'id' );
var response = confirm( 'You are about to delete this order' );
if ( response ) {
var params = {
order_id: order_id,
nonce: ewd_otp_php_admin_data.nonce,
action: 'ewd_otp_delete_order'
};
var data = jQuery.param( params );
jQuery.post(ajaxurl, data, function(response) {});
setTimeout( function() { window.location.reload( true ) }, 150 );
}
});
// HIDE AN ORDER
jQuery( '.orders #the-list .hide' ).on( 'click', function() {
var order_id = jQuery( this ).data( 'id' );
var params = {
order_id: order_id,
nonce: ewd_otp_php_admin_data.nonce,
action: 'ewd_otp_hide_order'
};
var data = jQuery.param( params );
jQuery.post(ajaxurl, data, function(response) {});
setTimeout( function() { window.location.reload( true ) }, 150 );
});
// SUBMIT FORM ON 'include_hidden_orders' CHECKBOX TOGGLE
jQuery( '.ewd-otp-admin-table-filter-div input[name="include_hidden_orders"]' ).on( 'change', function() {
jQuery( '#ewd-otp-orders-table' ).submit();
});
/***********************************************
* CUSTOMERS TABLE
***********************************************/
// REQUIRE CONFIRMATION BEFORE DELETING A CUSTOMER
jQuery( '.customers #the-list .delete' ).on( 'click', function() {
var customer_id = jQuery( this ).data( 'id' );
var response = confirm( 'You are about to delete this customer' );
if ( response ) {
var params = {
customer_id: customer_id,
nonce: ewd_otp_php_admin_data.nonce,
action: 'ewd_otp_delete_customer'
};
var data = jQuery.param( params );
jQuery.post(ajaxurl, data, function(response) {});
setTimeout( function() { window.location.reload( true ) }, 150 );
}
});
/***********************************************
* SALES REPS TABLE
***********************************************/
// REQUIRE CONFIRMATION BEFORE DELETING A SALES REP
jQuery( '.salesreps #the-list .delete' ).on( 'click', function() {
var sales_rep_id = jQuery( this ).data( 'id' );
var response = confirm( 'You are about to delete this sales rep' );
if ( response ) {
var params = {
sales_rep_id: sales_rep_id,
nonce: ewd_otp_php_admin_data.nonce,
action: 'ewd_otp_delete_sales_rep'
};
var data = jQuery.param( params );
jQuery.post(ajaxurl, data, function(response) {});
setTimeout( function() { window.location.reload( true ) }, 150 );
}
});
/***********************************************
* EXPORT PAGE
***********************************************/
jQuery( '.ewd-otp-export-filters input[name="type-of-record"]' ).on( 'change', function() {
var record_type = jQuery( this ).val();
if ( record_type == 'order' ) {
jQuery( 'tr.by-status' ).removeClass( 'ewd-otp-hidden' );
jQuery( 'tr.date-range' ).removeClass( 'ewd-otp-hidden' );
jQuery( 'tr.customer-list' ).removeClass( 'ewd-otp-hidden' );
jQuery( 'tr.sales-rep-list' ).removeClass( 'ewd-otp-hidden' );
}
else {
jQuery( 'tr.by-status' ).addClass( 'ewd-otp-hidden' );
jQuery( 'tr.date-range' ).addClass( 'ewd-otp-hidden' );
jQuery( 'tr.customer-list' ).addClass( 'ewd-otp-hidden' );
jQuery( 'tr.sales-rep-list' ).addClass( 'ewd-otp-hidden' );
}
} );
/***********************************************
* CUSTOM FIELDS TABLE
***********************************************/
jQuery( document ).ready( function() {
ewd_otp_custom_field_delete_handlers();
jQuery( '.ewd-otp-custom-fields-add' ).on( 'click', function() {
var max_id = 1;
jQuery( 'input[name="ewd_otp_custom_field_id"]' ).each( function() {
max_id = Math.max( max_id, jQuery( this ).val() );
});
max_id += 1;
let _template = jQuery( '.ewd-otp-custom-field-template' ).clone();
_template.hide()
.removeClass()
.addClass( 'ewd-otp-custom-field' );
_template.find( 'input[name="ewd_otp_custom_field_id"]' ).val( max_id );
jQuery( this ).before( _template );
_template.fadeIn( 'fast' );
ewd_otp_custom_field_delete_handlers();
});
jQuery( '#ewd-otp-custom-fields-table' ).on( 'submit', function() {
var custom_fields = [];
jQuery( '.ewd-otp-custom-field' ).each( function() {
if ( jQuery( this ).find( 'input[name="ewd_otp_custom_field_id"]' ).val() == 0 ) { return; }
var custom_field = {};
custom_field.id = jQuery( this ).find( 'input[name="ewd_otp_custom_field_id"]' ).val();
custom_field.name = jQuery( this ).find( 'input[name="ewd_otp_custom_field_name"]' ).val();
custom_field.slug = jQuery( this ).find( 'input[name="ewd_otp_custom_field_slug"]' ).val();
custom_field.type = jQuery( this ).find( 'select[name="ewd_otp_custom_field_type"]' ).val();
custom_field.options = jQuery( this ).find( 'input[name="ewd_otp_custom_field_options"]' ).val();
custom_field.function = jQuery( this ).find( 'select[name="ewd_otp_custom_field_function"]' ).val();
custom_field.required = jQuery( this ).find( 'input[name="ewd_otp_custom_field_required"]' ).is( ':checked' );
custom_field.display = jQuery( this ).find( 'input[name="ewd_otp_custom_field_display"]' ).is( ':checked' );
custom_field.front_end_display = jQuery( this ).find( 'input[name="ewd_otp_custom_field_front_end_display"]' ).is( ':checked' );
custom_field.equivalent = jQuery( this ).find( 'select[name="ewd_otp_custom_field_equivalent"]' ).val();
custom_fields.push( custom_field );
});
jQuery( 'input[name="ewd-otp-custom-field-save-values"]' ).val( JSON.stringify( custom_fields ) );
});
if ( jQuery( '#ewd-otp-custom-fields-table' ).length ) {
jQuery( '#ewd-otp-custom-fields-table' ).sortable({
items: 'div.ewd-otp-custom-field',
cursor: 'move'
});
}
});
function ewd_otp_custom_field_delete_handlers() {
jQuery( '.ewd-otp-custom-field-delete' ).off( 'click' ).on( 'click', function() {
jQuery( this ).parent().parent().remove();
});
}
/***********************************************
* INFINITE TABLE IDs
***********************************************/
jQuery(document).ready(function($){
$( '.sap-new-admin-add-button' ).on( 'click', function() {
setTimeout( ewd_otp_field_added_handler, 300);
});
});
function ewd_otp_field_added_handler() {
var highest = 0;
jQuery( '.sap-infinite-table input[data-name="id"]' ).each( function() {
if ( ! isNaN( this.value ) ) { highest = Math.max( highest, this.value ); }
});
jQuery( '.sap-infinite-table tbody tr:last-of-type span.sap-infinite-table-hidden-value' ).html( highest + 1 );
jQuery( '.sap-infinite-table tbody tr:last-of-type input[data-name="id"]' ).val( highest + 1 );
}
// ORDERS TABLE SPECIFIC DATE FILTERING
jQuery(document).ready(function(){
jQuery( '#ewd-otp-date-filter-link' ).click( function() {
jQuery( '#ewd-otp-filters' ).toggleClass( 'date-filters-visible' );
});
});
// SHOW SEARCH AND INCLUDE HIDDEN ORDERS
jQuery(document).ready(function(){
jQuery( '#ewd-otp-table-header-search-filter' ).click( function() {
jQuery( '.ewd-otp-admin-table-filter-div' ).toggleClass( 'ewd-otp-hidden' );
});
});
/* Handle Trial Type Selection */
jQuery(document).ready(function($) {
jQuery( '.ewd-premium-helper-dashboard-new-trial-button' ).on('click', function() {
jQuery( '.ewd-otp-trial-version-select-modal-background, .ewd-otp-trial-version-select-modal' ).removeClass( 'ewd-otp-hidden' );
return false;
});
jQuery( '.ewd-otp-trial-version-select-modal-submit' ).on( 'click', function() {
var selected_version = jQuery( 'input[name="ewd-otp-trial-version"]:checked' ).val();
if ( selected_version == 'ultimate' ) { jQuery( 'input[name="plugin_name"]').val( 'OTPU' ); }
jQuery( '#ewd-trial-form' ).submit();
});
});
// About Us Page
jQuery( document ).ready( function( $ ) {
jQuery( '.ewd-otp-about-us-tab-menu-item' ).on( 'click', function() {
jQuery( '.ewd-otp-about-us-tab-menu-item' ).removeClass( 'ewd-otp-tab-selected' );
jQuery( '.ewd-otp-about-us-tab' ).addClass( 'ewd-otp-hidden' );
var tab = jQuery( this ).data( 'tab' );
jQuery( this ).addClass( 'ewd-otp-tab-selected' );
jQuery( '.ewd-otp-about-us-tab[data-tab="' + tab + '"]' ).removeClass( 'ewd-otp-hidden' );
} );
jQuery( '.ewd-otp-about-us-send-feature-suggestion' ).on( 'click', function() {
var feature_suggestion = jQuery( '.ewd-otp-about-us-feature-suggestion textarea' ).val();
var email_address = jQuery( '.ewd-otp-about-us-feature-suggestion input[name="feature_suggestion_email_address"]' ).val();
var params = {};
params.nonce = ewd_otp_php_admin_data.nonce;
params.action = 'ewd_otp_send_feature_suggestion';
params.feature_suggestion = feature_suggestion;
params.email_address = email_address;
var data = jQuery.param( params );
jQuery.post( ajaxurl, data, function() {} );
jQuery( '.ewd-otp-about-us-feature-suggestion' ).prepend( '<p>Thank you, your feature suggestion has been submitted.' );
} );
} );
//SETTINGS PREVIEW SCREENS
jQuery( document ).ready( function() {
jQuery( '.ewd-otp-settings-preview' ).prevAll( 'h2' ).hide();
jQuery( '.ewd-otp-settings-preview' ).prevAll( '.sap-tutorial-toggle' ).hide();
jQuery( '.ewd-otp-settings-preview .sap-tutorial-toggle' ).hide();
jQuery( 'h2' ).each( function(){
var thish2 = jQuery( this );
if ( thish2.is( ':contains("WooCommerce")' ) ) {
thish2.show();
}
} );
} );
// NEW PLUGIN NOTICE
jQuery( document ).ready( function( $ ) {
jQuery(document).on( 'click', '.ait-iat-new-plugin-notice .notice-dismiss', function( event ) {
var data = jQuery.param({
action: 'ewd_otp_hide_new_plugin_notice',
plugin: 'ait_iat',
nonce: ewd_otp_php_admin_data.nonce
});
jQuery.post( ajaxurl, data, function() {} );
});
});