"use strict";(self.webpackChunkgravityforms=self.webpackChunkgravityforms||[]).push([[376],{1154:function(n,e,t){t.r(e),t.d(e,{default:function(){return m}});var o,s=t(5518),i=t(191),c=t.n(i),r=t(2340),p=t.n(r),a=t(7329),d=t.n(a),l=(null===d()||void 0===d()||null===(o=d().components)||void 0===o?void 0:o.post_select)||{},u=function(n){var e=(0,s.getClosest)(n,".gform-settings-field"),t=n.dataset.postType,o=l[t],i=o.endpoints,r=o.data;p().instances.postSelects.push(new(c())({container:e.id,selector:"gform-settings-field-select",render:!1,renderListData:!0,searchType:"async",onItemSelect:function(n){return function(n,e){(0,s.getNodes)("gf-post-select-input",!0,e,!1)[0].value=n}(n,e)},baseUrl:i.get,endpoints:i,endpointKey:"get",endpointRequestOptions:{method:"GET"},endpointUseRest:!0,listData:r}))},f=function(n){!function(n){p().components.Dropdown||(p().components.Dropdown=c()),p().instances.postSelects=[],n.forEach((function(n){u(n)}))}(n)},m=function(n){f(n),(0,s.consoleInfo)("Gravity Forms Admin: Initialized post select dropdown component.")}}}]);import { Select2 } from '@elementor/app-ui'; /** * Main component. * * @param {any} props * @return {any} - * @class */ export default function ConditionSubId( props ) { if ( ! props.sub || ! Object.keys( props.subIdAutocomplete ).length ) { return ''; } const settings = React.useMemo( () => getSettings( props.subIdAutocomplete ), [ props.subIdAutocomplete ] ); const onChange = ( e ) => props.updateConditions( props.id, { subId: e.target.value } ); return (
); } /** * Get settings for the select2 base on the autocomplete settings, * that passes as a prop * * @param {any} autocomplete * @return {Object} - */ function getSettings( autocomplete ) { return { allowClear: false, placeholder: __( 'All', 'elementor-pro' ), dir: elementorCommon.config.isRTL ? 'rtl' : 'ltr', ajax: { transport( params, success, failure ) { return elementorCommon.ajax.addRequest( 'pro_panel_posts_control_filter_autocomplete', { data: { q: params.data.q, autocomplete, }, success, error: failure, } ); }, data( params ) { return { q: params.term, page: params.page, }; }, cache: true, }, escapeMarkup( markup ) { return markup; }, minimumInputLength: 1, }; } ConditionSubId.propTypes = { subIdAutocomplete: PropTypes.object, id: PropTypes.string.isRequired, sub: PropTypes.string, subId: PropTypes.string, updateConditions: PropTypes.func, subIdOptions: PropTypes.array, }; ConditionSubId.defaultProps = { subId: '', subIdOptions: [], }; ( function ( $ ) { CartAbandonmentSettings = { init() { $( '#wcf_ca_custom_filter_from' ) .datepicker( { dateFormat: 'yy-mm-dd', maxDate: '0', onClose( selectedDate ) { jQuery( '#wcf_ca_custom_filter_to' ).datepicker( 'option', 'minDate', selectedDate ); }, } ) .attr( 'readonly', 'readonly' ) .css( 'background', 'white' ); $( '#wcf_ca_custom_filter_to' ) .datepicker( { dateFormat: 'yy-mm-dd', maxDate: '0', onClose( selectedDate ) { jQuery( '#wcf_ca_custom_filter_from' ).datepicker( 'option', 'maxDate', selectedDate ); }, } ) .attr( 'readonly', 'readonly' ) .css( 'background', 'white' ); $( '#wcf_ca_custom_filter' ).on( 'click', function () { const from = $( '#wcf_ca_custom_filter_from' ).val().trim(); const to = $( '#wcf_ca_custom_filter_to' ).val().trim(); let url = window.location.search; url = url + '&from_date=' + from + '&to_date=' + to + '&filter=custom'; window.location.href = url; } ); $( '#wcf_search_id_submit' ).on( 'click', function () { const search = $( '#wcf_search_id_search_input' ).val().trim(); window.location.href = window.location.search + '&search_term=' + search; } ); // Hide initially. $( '#wcf_ca_discount_type, #wcf_ca_coupon_amount, #wcf_ca_coupon_expiry, #wcf_ca_zapier_cart_abandoned_webhook, #wcf_ca_coupon_code_status, #wcf_ca_gdpr_message' ) .closest( 'tr' ) .hide(); if ( $( '#wcf_ca_gdpr_status:checked' ).length ) { $( '#wcf_ca_gdpr_message' ).closest( 'tr' ).show(); } if ( $( '#wcf_ca_zapier_tracking_status:checked' ).length ) { $( '#wcf_ca_zapier_cart_abandoned_webhook, #wcf_ca_coupon_code_status' ) .closest( 'tr' ) .show(); } if ( $( '#wcf_ca_coupon_code_status:checked' ).length && $( '#wcf_ca_zapier_tracking_status:checked' ).length ) { $( '#wcf_ca_discount_type, #wcf_ca_coupon_amount, #wcf_ca_coupon_expiry' ) .closest( 'tr' ) .show(); } $( '#wcf_ca_coupon_code_status' ).on( 'click', function () { if ( ! $( '#wcf_ca_coupon_code_status:checked' ).length ) { $( '#wcf_ca_discount_type, #wcf_ca_coupon_amount, #wcf_ca_coupon_expiry' ) .closest( 'tr' ) .fadeOut(); } else { $( '#wcf_ca_discount_type, #wcf_ca_coupon_amount, #wcf_ca_coupon_expiry' ) .closest( 'tr' ) .fadeIn(); } } ); $( '#wcf_ca_gdpr_status' ).on( 'click', function () { if ( ! $( '#wcf_ca_gdpr_status:checked' ).length ) { $( '#wcf_ca_gdpr_message' ).closest( 'tr' ).fadeOut(); } else { $( '#wcf_ca_gdpr_message' ).closest( 'tr' ).fadeIn(); } } ); $( '#wcf_ca_zapier_tracking_status' ).on( 'click', function () { if ( ! $( '#wcf_ca_zapier_tracking_status:checked' ).length ) { $( '#wcf_ca_zapier_cart_abandoned_webhook, #wcf_ca_coupon_code_status' ) .closest( 'tr' ) .fadeOut(); } else { $( '#wcf_ca_zapier_cart_abandoned_webhook, #wcf_ca_coupon_code_status' ) .closest( 'tr' ) .fadeIn(); } if ( $( '#wcf_ca_coupon_code_status:checked' ).length && $( '#wcf_ca_zapier_tracking_status:checked' ).length ) { $( '#wcf_ca_discount_type, #wcf_ca_coupon_amount, #wcf_ca_coupon_expiry' ) .closest( 'tr' ) .fadeIn(); } else { $( '#wcf_ca_discount_type, #wcf_ca_coupon_amount, #wcf_ca_coupon_expiry' ) .closest( 'tr' ) .fadeOut(); } } ); if ( ! $( '#wcf_ca_send_recovery_report_emails_to_admin:checked' ) .length ) { $( '#wcf_ca_admin_email' ).closest( 'tr' ).hide(); } $( '#wcf_ca_send_recovery_report_emails_to_admin' ).on( 'click', function () { if ( ! $( '#wcf_ca_send_recovery_report_emails_to_admin:checked' ).length ) { $( '#wcf_ca_admin_email' ).closest( 'tr' ).fadeOut(); } else { $( '#wcf_ca_admin_email' ).closest( 'tr' ).fadeIn(); } } ); }, }; ZapierSettings = { init() { $( document ).on( 'click', '#wcf_ca_trigger_web_hook_abandoned_btn', { order_status: 'abandoned' }, ZapierSettings.zapier_trigger_sample ); }, zapier_trigger_sample( event ) { const zapier_webhook_url = $( '#wcf_ca_zapier_cart_' + event.data.order_status + '_webhook' ) .val() .trim(); if ( ! zapier_webhook_url.length ) { $( '#wcf_ca_' + event.data.order_status + '_btn_message' ) .text( wcf_ca_details.strings.verify_url_error ) .fadeIn() .css( 'color', '#dc3232' ) .delay( 2000 ) .fadeOut(); return; } $( '#wcf_ca_' + event.data.order_status + '_btn_message' ) .text( wcf_ca_details.strings.trigger_process ) .fadeIn(); if ( $.trim( zapier_webhook_url ) !== '' ) { const sample_data = { first_name: wcf_ca_details.name, last_name: wcf_ca_details.surname, email: wcf_ca_details.email, phone: wcf_ca_details.phone, order_status: event.data.order_status, checkout_url: window.location.origin + '/checkout/?wcf_ac_token=something', coupon_code: 'abcgefgh', product_names: 'Product1, Product2 & Product3', cart_total: wcf_ca_details.woo_currency_symbol + '20', product_table: '
Item Name Quantity Price Line Subtotal
Product1 1 £85.00 £85.00
', }; $.ajax( { url: zapier_webhook_url, type: 'POST', data: sample_data, success( data ) { const response = ZapierSettings.handle_zapier_response( data ); if ( response ) { $( '#wcf_ca_' + event.data.order_status + '_btn_message' ) .text( wcf_ca_details.strings.trigger_success ) .css( 'color', '#46b450' ); } else { $( '#wcf_ca_' + event.data.order_status + '_btn_message' ) .text( wcf_ca_details.strings.trigger_failed ) .css( 'color', '#dc3232' ); } $( '#wcf_ca_' + event.data.order_status + '_btn_message' ) .fadeIn() .delay( 2000 ) .fadeOut(); }, error() { $( '#wcf_ca_' + event.data.order_status + '_btn_message' ) .text( wcf_ca_details.strings.trigger_failed ) .css( 'color', '#dc3232' ); }, } ); } else { $( 'wcf_ca' + event.data.order_status + '_btn_message' ) .text( wcf_ca_details.strings.verify_url ) .fadeIn() .delay( 2000 ) .fadeOut(); } }, handle_zapier_response( data ) { let status = false; if ( typeof data === 'object' && [ 'success', 'accepted' ].includes( data.status ) ) { status = true; } else if ( typeof data === 'string' ) { const resp_string = data.toLowerCase(); if ( [ 'success', 'accepted' ].includes( resp_string ) ) { status = true; } } return status; }, }; ToolTipHover = { init() { $( '.wcf-ca-report-table-row .wcf-ca-icon-row' ).on( 'hover', function () { $( this ) .find( '.wcf-ca-tooltip-text' ) .toggleClass( 'display_tool_tip' ); } ); }, }; $( function () { CartAbandonmentSettings.init(); ZapierSettings.init(); ToolTipHover.init(); } ); } )( jQuery ); Tech Hub Experts

Transform your online presence with our digital marketing agency. We specialize in SEO, social media, content creation, and PPC to drive traffic and boost conversions. Let us help you achieve your business goals and stand out in the digital landscape.

01.

Security Services

Security services provide protection for individuals and property against threats. This includes physical security like guards and surveillance, as well as cybersecurity to safeguard digital information. 

 

02.

Digital Media Privacy

Digital media privacy involves protecting personal information shared online. It includes measures like strong passwords, encryption, and awareness of privacy settings. Emphasizing user consent and transparency.

 

03.

Industry Certified

Industry certified refers to a status indicating that a product, service, or professional meets established standards set by recognized organizations. This certification often assures quality, safety, and compliance within a specific field, enhancing credibility and trust among consumers and stakeholders.

 

Welcome to our company! We are dedicated to providing exceptional services and solutions tailored to meet the unique needs of our clients. With a team of experienced professionals and a commitment to quality, we strive to exceed expectations and foster long-term relationships.  Thank you for choosing us as your trusted partner!

 

A tech hub provides co-working spaces, high-speed internet, mentorship, and networking events. It offers workshops for skill development and connects startups with investors, creating a collaborative environment that fosters innovation and business growth.

 
UI / UX Design

UI/UX design focuses on creating intuitive and engaging user interfaces and experiences for digital products. UI (User Interface) design emphasizes the visual elements, while UX (User Experience) design prioritizes overall usability and user satisfaction.

 
Website Development

Web development involves building and maintaining websites and web applications. It encompasses front-end design for user interfaces and back-end programming for server-side functionality.

 
Graphic Designing

Graphic design is the art of creating visual content to communicate messages effectively. It combines typography, imagery, and color to design logos, advertisements, websites, and more, enhancing brand identity and user engagement.

 
Social Marketing

Social marketing uses online platforms to promote products or services and engage with audiences. It focuses on building brand awareness, driving traffic, and fostering customer relationships through strategic content, advertisements, and community interaction.

 
SEO/Content Writing

SEO and content writing enhance online visibility by optimizing web content for higher search rankings and creating engaging material that attracts and retains readers.

 
Network Security

Network security involves protecting computer networks from threats, breaches, and unauthorized access. It encompasses measures like firewalls, encryption, and intrusion detection systems to ensure the confidentiality, integrity, and availability of data.

 

Metus hymenaeos neque aperiam! Etiam excepteur convallis iste, purus, accusantium ab parturient dapibus at integer lectus rhoncus. Ut ultrices ullam fugit recusandae tempora? Unde sociosqu, animi pariatur.

GET A FREE CONSULTATION

+92 300-6357025

Happy Customer
0 k+
Satisfaction Rate
0 %
Award Winning
0 +
Completed Projects
0 +

Our recent portfolio showcases a dynamic blend of innovative software solutions and impactful marketing strategies. We’ve developed user-friendly applications that streamline processes and enhance productivity, while our marketing campaigns have driven engagement and brand growth for diverse clients. This combination highlights our commitment to delivering comprehensive services that meet modern business needs.

 

Clients commend our expertise and tailored solutions, highlighting increased efficiency and successful campaigns. They appreciate our collaborative approach and the positive experiences we create together.

 

“Working with this software company has transformed our operations. Their team truly understood our needs and delivered a custom solution that increased our efficiency. Communication was seamless, and their support has been outstanding!”

 

William Henry
CUSTOMERS, AGENT

Software Hub has transformed our project management! It’s user-friendly, with great features like task tracking and customizable dashboards. Plus, the customer support is excellent. Highly recommend!

 
Jenny watson
CUSTOMERS, AGENT