{"id":23867,"date":"2025-02-28T16:11:49","date_gmt":"2025-02-28T16:11:49","guid":{"rendered":"https:\/\/tendency.digital\/?page_id=23867"},"modified":"2025-02-28T17:12:16","modified_gmt":"2025-02-28T17:12:16","slug":"telegram-channel","status":"publish","type":"page","link":"https:\/\/tendency.ltd\/it\/home\/scale-ecommerce-ai-marketing\/launch-shopify-store-7-days\/telegram-channel\/","title":{"rendered":"Telegram Channel"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"23867\" class=\"elementor elementor-23867\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3cdd765 hero-section e-flex e-con-boxed e-con e-parent\" data-id=\"3cdd765\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-cc53305 e-con-full e-flex e-con e-child\" data-id=\"cc53305\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-e9034b6 e-con-full e-flex e-con e-child\" data-id=\"e9034b6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8644cd6 elementor-widget elementor-widget-html\" data-id=\"8644cd6\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script src=\"https:\/\/code.jquery.com\/jquery-3.6.0.min.js\"><\/script>\n<style>\n\/* Stile base per tutte le notifiche *\/\n.notification-popup {\n    position: fixed;\n    top: -100px; \/* Nasconde inizialmente la notifica sopra lo schermo *\/\n    left: 50%;\n    transform: translateX(-50%) scale(1);\n    width: 95%; \/* Mobile: 95% dello schermo *\/\n    max-width: 400px;\n    opacity: 0;\n    transition: top 0.5s ease-in-out, opacity 0.5s ease-in-out, transform 0.5s ease-in-out;\n    z-index: 99999;\n}\n\n\/* Riduzione dimensioni e abbassamento progressivo *\/\n.notification-popup.reduce-scale-90 {\n    transform: translateX(-50%) scale(0.9);\n    top: 25px; \/* Abbassa di 5px *\/\n    z-index: 99998;\n    opacity: 0.8;\n}\n\n.notification-popup.reduce-scale-80 {\n    transform: translateX(-50%) scale(0.8);\n    top: 30px; \/* Abbassa di altri 5px (totale 10px) *\/\n    z-index: 99997;\n    opacity: 0.6;\n}\n<\/style>\n\n<script>\n$(document).ready(function () {\n    var audio1 = new Audio('https:\/\/tendency.ltd\/wp-content\/sounds\/shopify.mp3'); \/\/ File audio MP3\n    var notifications = [];\n    var notificationPlayed = false; \/\/ Evita che il ciclo si ripeta pi\u00f9 volte\n    var soundPlayed = false; \/\/ Flag per riprodurre il suono una sola volta\n    var userInteracted = false; \/\/ Flag per dispositivi mobili\n\n    \/\/ Creiamo 3 notifiche e le aggiungiamo al body\n    for (var i = 0; i < 3; i++) {\n        var notification = $(\n            `<img decoding=\"async\" class=\"notification-popup\" src=\"https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/notification.png\">`\n        );\n        $(\"body\").append(notification);\n        notifications.push(notification);\n    }\n\n    \/\/ Funzione per mostrare ogni notifica con animazione e gestione delle immagini dietro\n    function showNotification(index, delay) {\n        setTimeout(function () {\n            if (index > 0) {\n                \/\/ Gestione della notifica precedente\n                if (index === 1) {\n                    notifications[index - 1].addClass(\"reduce-scale-90\"); \/\/ Immagine 1 si riduce e si abbassa di 5px\n                } else if (index === 2) {\n                    notifications[index - 1].addClass(\"reduce-scale-90\"); \/\/ Immagine 2 si riduce e si abbassa di 5px\n                    notifications[0].removeClass(\"reduce-scale-90\").addClass(\"reduce-scale-80\"); \/\/ Immagine 1 si riduce all'80% e si abbassa di altri 5px\n                }\n            }\n\n            \/\/ Mostra la notifica corrente con animazione\n            notifications[index].css({ top: \"20px\", opacity: \"1\" });\n\n            \/\/ Riproduce il suono SOLO per la prima immagine quando termina l'animazione\n            if (index === 0 && !soundPlayed && userInteracted) {\n                notifications[index][0].addEventListener(\"transitionend\", function playSoundOnce(event) {\n                    if (!soundPlayed && event.propertyName === \"top\") {\n                        audio1.play().catch(error => console.log(\"Errore audio:\", error));\n                        soundPlayed = true; \/\/ Impedisce ulteriori riproduzioni\n                        notifications[index][0].removeEventListener(\"transitionend\", playSoundOnce);\n                    }\n                });\n            }\n\n            \/\/ Se tutte le notifiche sono state mostrate, programma lo slide-up dopo 3 secondi\n            if (index === notifications.length - 1) {\n                setTimeout(function () {\n                    notifications.forEach((n, i) => {\n                        setTimeout(function () {\n                            n.css({ top: \"-100px\", opacity: \"0\" });\n                        }, i * 300);\n                    });\n                }, 3000);\n            }\n        }, delay);\n    }\n\n    \/\/ Abilitare la riproduzione su dispositivi mobili con il primo tocco\/click\n    function enableAudioPlayback() {\n        userInteracted = true;\n        audio1.play().catch(error => console.log(\"Errore iniziale audio:\", error)); \/\/ Avvia l'audio per sbloccarlo su mobile\n        document.removeEventListener(\"click\", enableAudioPlayback);\n        document.removeEventListener(\"touchstart\", enableAudioPlayback);\n    }\n\n    document.addEventListener(\"click\", enableAudioPlayback);\n    document.addEventListener(\"touchstart\", enableAudioPlayback);\n\n    \/\/ Funzione per avviare automaticamente le notifiche dopo 3 secondi dal caricamento della pagina\n    setTimeout(function () {\n        if (!notificationPlayed) {\n            showNotification(0, 0); \/\/ Prima notifica immediata\n            showNotification(1, 800); \/\/ Seconda notifica dopo 0.8 secondi\n            showNotification(2, 1600); \/\/ Terza notifica dopo 1.6 secondi\n            notificationPlayed = true;\n        }\n    }, 3000); \/\/ Attiva dopo 3 secondi\n\n});\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b4a3292 elementor-widget elementor-widget-image\" data-id=\"b4a3292\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"50\" height=\"50\" src=\"https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/icons8-shopify.svg\" class=\"attachment-large size-large wp-image-22582\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cd5d317 elementor-headline--style-highlight elementor-widget elementor-widget-animated-headline\" data-id=\"cd5d317\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;marker&quot;:&quot;underline&quot;,&quot;highlighted_text&quot;:&quot;For Free!&quot;,&quot;headline_style&quot;:&quot;highlight&quot;,&quot;loop&quot;:&quot;yes&quot;,&quot;highlight_animation_duration&quot;:1200,&quot;highlight_iteration_delay&quot;:8000,&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"animated-headline.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<h3 class=\"elementor-headline\">\n\t\t\t\t\t<span class=\"elementor-headline-plain-text elementor-headline-text-wrapper\">The Best Way To Learn Ecommerce.<\/span>\n\t\t\t\t<span class=\"elementor-headline-dynamic-wrapper elementor-headline-text-wrapper\">\n\t\t\t\t\t<span class=\"elementor-headline-dynamic-text elementor-headline-text-active\">For Free!<\/span>\n\t\t\t\t<\/span>\n\t\t\t\t<\/h3>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-076c73e animated-fast elementor-invisible elementor-widget elementor-widget-elementskit-heading\" data-id=\"076c73e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;css&quot;,&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:100}\" data-widget_type=\"elementskit-heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"ekit-wid-con\" ><div class=\"ekit-heading elementskit-section-title-wraper text_center   ekit_heading_tablet-   ekit_heading_mobile-\">\t\t\t\t<div class='ekit-heading__description'>\n\t\t\t\t\t<p class=\"p1\">We Have Decided to Put an <br \/><strong>End to the Fluff Gurus!<\/strong><\/p>\n\t\t\t\t<\/div>\n\t\t\t<\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1ada2fa e-con-full e-flex e-con e-child\" data-id=\"1ada2fa\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-9251771 e-flex e-con-boxed e-con e-child\" data-id=\"9251771\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-44d6342 elementor-widget elementor-widget-html\" data-id=\"44d6342\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script>\n  document.addEventListener(\"DOMContentLoaded\", function() {\n    var button = document.querySelector(\".free-ebook\");\n    if (button) {\n      button.addEventListener(\"click\", function() {\n        twq('event', 'tw-p2mpx-p3p2e', {\n          conversion_id: Date.now() \/\/ Genera un ID univoco per la conversione\n        });\n        console.log(\"Evento Twitter Pixel inviato con conversion_id!\");\n      });\n    } else {\n      console.log(\"Pulsante non trovato, verifica la classe CSS.\");\n    }\n  });\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7b3568e elementor-widget elementor-widget-elementskit-creative-button\" data-id=\"7b3568e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"elementskit-creative-button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"ekit-wid-con\" >\t\t<div class=\"ekit-btn-wraper\">\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/t.me\/ecommercedailynews\" download=\"10 Ways to Digitalise Your Business! by Tendency\" class=\"ekit_creative_button  free-ebook\" id=\"\" style=\"flex-direction: row;\" data-text=\"\">\n\t\t\t\t\t\t<span class=\"ekit_creative_button_icon_wrapper\">\n\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"ekit_creative_button_icon_before fab fa-telegram\"><\/i>\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t<span class=\"ekit_creative_button_text\">Join the Telegram Channel<\/span>\n\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t<\/div>\n        <\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a43066d elementor-widget elementor-widget-image\" data-id=\"a43066d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"248\" src=\"https:\/\/tendency.ltd\/wp-content\/uploads\/2024\/03\/shopify-logo-white-1024x248.png\" class=\"attachment-large size-large wp-image-964\" alt=\"\" srcset=\"https:\/\/tendency.ltd\/wp-content\/uploads\/2024\/03\/shopify-logo-white-1024x248.png 1024w, https:\/\/tendency.ltd\/wp-content\/uploads\/2024\/03\/shopify-logo-white-600x145.png 600w, https:\/\/tendency.ltd\/wp-content\/uploads\/2024\/03\/shopify-logo-white-300x73.png 300w, https:\/\/tendency.ltd\/wp-content\/uploads\/2024\/03\/shopify-logo-white-768x186.png 768w, https:\/\/tendency.ltd\/wp-content\/uploads\/2024\/03\/shopify-logo-white.png 1124w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0f2bd8d elementor-icon-list--layout-inline elementor-tablet-align-center elementor-widget__width-initial elementor-align-center animated-fast elementor-list-item-link-full_width elementor-invisible elementor-widget elementor-widget-icon-list\" data-id=\"0f2bd8d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:200,&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items elementor-inline-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"far fa-check-circle\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Free Channel!<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"far fa-check-circle\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">News, Tips, Strategy<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"far fa-check-circle\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Real eComm Owners<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1623ae9 e-con-full e-flex e-con e-child\" data-id=\"1623ae9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-1d0d240 e-con-full e-flex e-con e-child\" data-id=\"1d0d240\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-f0060bf e-flex e-con-boxed e-con e-child\" data-id=\"f0060bf\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1662d3f animated-fast elementor-invisible elementor-widget elementor-widget-image\" data-id=\"1662d3f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:200,&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"736\" height=\"934\" src=\"https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/f2bfa76808ae401e5bf8657abc120f04.jpg\" class=\"attachment-full size-full wp-image-23883\" alt=\"\" srcset=\"https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/f2bfa76808ae401e5bf8657abc120f04.jpg 736w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/f2bfa76808ae401e5bf8657abc120f04-236x300.jpg 236w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/f2bfa76808ae401e5bf8657abc120f04-9x12.jpg 9w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/f2bfa76808ae401e5bf8657abc120f04-710x901.jpg 710w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/f2bfa76808ae401e5bf8657abc120f04-600x761.jpg 600w\" sizes=\"(max-width: 736px) 100vw, 736px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-88ea72d e-flex e-con-boxed e-con e-child\" data-id=\"88ea72d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8840a02 animated-fast elementor-invisible elementor-widget elementor-widget-image\" data-id=\"8840a02\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInDown&quot;,&quot;_animation_delay&quot;:300,&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"736\" height=\"736\" src=\"https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/49914e956fc9061a8ffb4c5bb2424c5e.jpg\" class=\"attachment-full size-full wp-image-23881\" alt=\"\" srcset=\"https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/49914e956fc9061a8ffb4c5bb2424c5e.jpg 736w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/49914e956fc9061a8ffb4c5bb2424c5e-300x300.jpg 300w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/49914e956fc9061a8ffb4c5bb2424c5e-150x150.jpg 150w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/49914e956fc9061a8ffb4c5bb2424c5e-12x12.jpg 12w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/49914e956fc9061a8ffb4c5bb2424c5e-710x710.jpg 710w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/49914e956fc9061a8ffb4c5bb2424c5e-600x600.jpg 600w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/49914e956fc9061a8ffb4c5bb2424c5e-100x100.jpg 100w\" sizes=\"(max-width: 736px) 100vw, 736px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7a21f0f animated-fast elementor-invisible elementor-widget elementor-widget-image\" data-id=\"7a21f0f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:300,&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"720\" height=\"857\" src=\"https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/e6c16d43753af610306cc458e135b71c.jpg\" class=\"attachment-full size-full wp-image-23885\" alt=\"\" srcset=\"https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/e6c16d43753af610306cc458e135b71c.jpg 720w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/e6c16d43753af610306cc458e135b71c-252x300.jpg 252w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/e6c16d43753af610306cc458e135b71c-10x12.jpg 10w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/e6c16d43753af610306cc458e135b71c-710x845.jpg 710w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/e6c16d43753af610306cc458e135b71c-600x714.jpg 600w\" sizes=\"(max-width: 720px) 100vw, 720px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ce564ad e-flex e-con-boxed e-con e-child\" data-id=\"ce564ad\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-781420d animated-fast elementor-hidden-mobile elementor-invisible elementor-widget elementor-widget-image\" data-id=\"781420d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInDown&quot;,&quot;_animation_delay&quot;:300,&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"736\" height=\"920\" src=\"https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/3dbbe9c62b13ac84d8a0c35c24cb57d9.jpg\" class=\"attachment-full size-full wp-image-23882\" alt=\"\" srcset=\"https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/3dbbe9c62b13ac84d8a0c35c24cb57d9.jpg 736w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/3dbbe9c62b13ac84d8a0c35c24cb57d9-240x300.jpg 240w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/3dbbe9c62b13ac84d8a0c35c24cb57d9-10x12.jpg 10w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/3dbbe9c62b13ac84d8a0c35c24cb57d9-710x888.jpg 710w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/3dbbe9c62b13ac84d8a0c35c24cb57d9-600x750.jpg 600w\" sizes=\"(max-width: 736px) 100vw, 736px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4d2b94e animated-fast elementor-hidden-mobile elementor-invisible elementor-widget elementor-widget-image\" data-id=\"4d2b94e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:300,&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"736\" height=\"778\" src=\"https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/64342bd84e0725a79e024f80493ec6b7.jpg\" class=\"attachment-full size-full wp-image-23886\" alt=\"\" srcset=\"https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/64342bd84e0725a79e024f80493ec6b7.jpg 736w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/64342bd84e0725a79e024f80493ec6b7-284x300.jpg 284w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/64342bd84e0725a79e024f80493ec6b7-11x12.jpg 11w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/64342bd84e0725a79e024f80493ec6b7-710x751.jpg 710w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/64342bd84e0725a79e024f80493ec6b7-600x634.jpg 600w\" sizes=\"(max-width: 736px) 100vw, 736px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4c0f428 e-flex e-con-boxed e-con e-child\" data-id=\"4c0f428\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-14573c2 animated-fast elementor-hidden-mobile elementor-invisible elementor-widget elementor-widget-image\" data-id=\"14573c2\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:200,&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"445\" height=\"411\" src=\"https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/a0f05e843f68729016c6a2687ec67339.jpg\" class=\"attachment-full size-full wp-image-23884\" alt=\"\" srcset=\"https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/a0f05e843f68729016c6a2687ec67339.jpg 445w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/a0f05e843f68729016c6a2687ec67339-300x277.jpg 300w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/a0f05e843f68729016c6a2687ec67339-13x12.jpg 13w\" sizes=\"(max-width: 445px) 100vw, 445px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ede6e6c e-flex e-con-boxed e-con e-parent\" data-id=\"ede6e6c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-65e0914 e-con-full e-flex e-con e-child\" data-id=\"65e0914\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-68930dc animated-fast elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget-mobile__width-initial elementor-invisible elementor-widget elementor-widget-elementskit-heading\" data-id=\"68930dc\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;ekit_we_effect_on&quot;:&quot;css&quot;,&quot;_animation_delay&quot;:100}\" data-widget_type=\"elementskit-heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"ekit-wid-con\" ><div class=\"ekit-heading elementskit-section-title-wraper text_left   ekit_heading_tablet-   ekit_heading_mobile-\"><h6 class=\"elementskit-section-subtitle  \">\n\t\t\t\t\t\tOur Case Study!\n\t\t\t\t\t<\/h6><h2 class=\"ekit-heading--title elementskit-section-title \">From \u00a30 to <span>\u00a3248k<\/span> in Just 90 Days!<\/h2>\t\t\t\t<div class='ekit-heading__description'>\n\t\t\t\t\t<p>This store started from scratch and reached \u00a3248k in just 3 months. After creating the store, the client trusted us for full management, leveraging our proven strategies and expertise.<\/p>\n\t\t\t\t<\/div>\n\t\t\t<\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b45d977 keydesign-h6 animated-fast elementor-invisible elementor-widget elementor-widget-elementskit-stylish-list\" data-id=\"b45d977\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:200,&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"elementskit-stylish-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"ekit-wid-con\">\t\t<ul class=\"ekit-stylish-list \" >\n\t\t\t\t\t\t\t<li class=\"ekit-stylish-list-content-wrapper elementor-repeater-item-9176c3a\" >\n\t\t\t\t\t\t\t\t\t\t<div class=\"ekit-stylish-list-content\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"ekit-stylish-list-content-icon\">\n\t\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"icon icon-check\"><\/i>\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"ekit-stylish-list-content-text\">\n\t\t\t\t\t\t\t<span class=\"ekit-stylish-list-content-title\">Built a fast and scalable store.<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t\t\t\t<li class=\"ekit-stylish-list-content-wrapper elementor-repeater-item-aa8aca8\" >\n\t\t\t\t\t\t\t\t\t\t<div class=\"ekit-stylish-list-content\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"ekit-stylish-list-content-icon\">\n\t\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"icon icon-check\"><\/i>\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"ekit-stylish-list-content-text\">\n\t\t\t\t\t\t\t<span class=\"ekit-stylish-list-content-title\">Launched targeted marketing ads.<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t\t\t\t<li class=\"ekit-stylish-list-content-wrapper elementor-repeater-item-b4e5723\" >\n\t\t\t\t\t\t\t\t\t\t<div class=\"ekit-stylish-list-content\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"ekit-stylish-list-content-icon\">\n\t\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"icon icon-check\"><\/i>\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"ekit-stylish-list-content-text\">\n\t\t\t\t\t\t\t<span class=\"ekit-stylish-list-content-title\">Automated key business workflows.<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t\t<\/ul>\n\t<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-708a0b5 e-con-full e-flex e-con e-child\" data-id=\"708a0b5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-04d722b elementor-widget elementor-widget-elementskit-creative-button\" data-id=\"04d722b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"elementskit-creative-button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"ekit-wid-con\" >\t\t<div class=\"ekit-btn-wraper\">\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/t.me\/ecommercedailynews\" download=\"10 Ways to Digitalise Your Business! by Tendency\" class=\"ekit_creative_button  free-ebook\" id=\"\" style=\"flex-direction: row;\" data-text=\"\">\n\t\t\t\t\t\t<span class=\"ekit_creative_button_icon_wrapper\">\n\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"ekit_creative_button_icon_before fab fa-telegram\"><\/i>\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t<span class=\"ekit_creative_button_text\">Join the Telegram Channel<\/span>\n\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t<\/div>\n        <\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-28c0c7f e-con-full animated-fast e-flex elementor-invisible e-con e-child\" data-id=\"28c0c7f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInUp&quot;,&quot;animation_delay&quot;:200}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6f3f97f elementor-widget__width-inherit animated-fast elementor-invisible elementor-widget elementor-widget-image\" data-id=\"6f3f97f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:300,&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"1242\" height=\"1308\" src=\"https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/IMG_0560.jpg\" class=\"attachment-full size-full wp-image-22607\" alt=\"\" srcset=\"https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/IMG_0560.jpg 1242w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/IMG_0560-285x300.jpg 285w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/IMG_0560-972x1024.jpg 972w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/IMG_0560-768x809.jpg 768w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/IMG_0560-710x748.jpg 710w, https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/IMG_0560-600x632.jpg 600w\" sizes=\"(max-width: 1242px) 100vw, 1242px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-261473c7 e-flex e-con-boxed e-con e-parent\" data-id=\"261473c7\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-5dfb6187 e-con-full e-flex e-con e-child\" data-id=\"5dfb6187\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-208844ac e-con-full e-flex e-con e-child\" data-id=\"208844ac\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6c240ed7 animated-fast elementor-invisible elementor-widget elementor-widget-elementskit-heading\" data-id=\"6c240ed7\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;ekit_we_effect_on&quot;:&quot;css&quot;,&quot;_animation_delay&quot;:100}\" data-widget_type=\"elementskit-heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"ekit-wid-con\" ><div class=\"ekit-heading elementskit-section-title-wraper text_center   ekit_heading_tablet-   ekit_heading_mobile-\"><h6 class=\"elementskit-section-subtitle  \">\n\t\t\t\t\t\t+15 Years in Ecommerce Excellence\n\t\t\t\t\t<\/h6><h2 class=\"ekit-heading--title elementskit-section-title \">Real Stories from <span>Real Businesses<\/span><\/h2>\t\t\t\t<div class='ekit-heading__description'>\n\t\t\t\t\t<p>Our 15+ years of experience in ecommerce has helped businesses grow, succeed, and scale. Here\u2019s how our expertise has made a difference for our clients.\u201d<\/p>\n\t\t\t\t<\/div>\n\t\t\t<\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2a94c41f e-con-full e-flex e-con e-child\" data-id=\"2a94c41f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-4d96f8bd e-con-full e-flex e-con e-child\" data-id=\"4d96f8bd\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-601ec583 animated-fast elementor-invisible elementor-widget elementor-widget-elementskit-testimonial\" data-id=\"601ec583\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"elementskit-testimonial.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"ekit-wid-con\" ><div class=\"elementskit-testimonial-slider ekit-testimonia-style-4 arrow_inside slider-dotted\" data-config=\"{&quot;rtl&quot;:false,&quot;arrows&quot;:true,&quot;dots&quot;:true,&quot;pauseOnHover&quot;:true,&quot;autoplay&quot;:false,&quot;speed&quot;:1000,&quot;slidesPerGroup&quot;:1,&quot;slidesPerView&quot;:3,&quot;loop&quot;:true,&quot;spaceBetween&quot;:&quot;&quot;,&quot;breakpoints&quot;:{&quot;320&quot;:{&quot;slidesPerView&quot;:1,&quot;slidesPerGroup&quot;:1,&quot;spaceBetween&quot;:10},&quot;768&quot;:{&quot;slidesPerView&quot;:2,&quot;slidesPerGroup&quot;:1,&quot;spaceBetween&quot;:10},&quot;1024&quot;:{&quot;slidesPerView&quot;:3,&quot;slidesPerGroup&quot;:1,&quot;spaceBetween&quot;:15}}}\">\n\t<div class=\"ekit-main-swiper swiper\">\n\t\t<div class=\"swiper-wrapper\">\n\t\t\t\t\t\t\t<div class=\"swiper-slide\">\n\t\t\t\t\t<div class=\"swiper-slide-inner\">\n\t\t\t\t\t\t<div class=\"elementskit-single-testimonial-slider elementskit-testimonial-slider-block-style  elementor-repeater-item-8e240c3\" >\n\t\t\t\t\t\t\t<div class=\"elementskit-commentor-bio \">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementskit-commentor-image ekit-testimonial--avatar\">\n\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"100\" height=\"100\" src=\"https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/icons8-shopify-2.svg\" class=\"attachment-full size-full\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementskit-profile-info\">\n\t\t\t\t\t\t\t\t\t<strong class=\"elementskit-author-name\">Joseph T.<\/strong>\n\t\t\t\t\t\t\t\t\t<span class=\"elementskit-author-des\">TeleFans<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"elementskit-commentor-content\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Tendency became the growth partner we needed. They managed our ecommerce fully, boosting our conversion rate from 1% to 4-5%. Their professionalism and service quality are unmatched!<\/p>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ul class=\"elementskit-stars\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><a><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\" \/><\/svg><\/a><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><a><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\" \/><\/svg><\/a><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><a><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\" \/><\/svg><\/a><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><a><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\" \/><\/svg><\/a><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><a><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\" \/><\/svg><\/a><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div><!-- .commentor-content END -->\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"swiper-slide\">\n\t\t\t\t\t<div class=\"swiper-slide-inner\">\n\t\t\t\t\t\t<div class=\"elementskit-single-testimonial-slider elementskit-testimonial-slider-block-style  elementor-repeater-item-54f71e0\" >\n\t\t\t\t\t\t\t<div class=\"elementskit-commentor-bio \">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementskit-commentor-image ekit-testimonial--avatar\">\n\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"100\" height=\"100\" src=\"https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/icons8-shopify-2.svg\" class=\"attachment-full size-full\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementskit-profile-info\">\n\t\t\t\t\t\t\t\t\t<strong class=\"elementskit-author-name\">Giuseppe R. <\/strong>\n\t\t\t\t\t\t\t\t\t<span class=\"elementskit-author-des\">Stylitalia<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"elementskit-commentor-content\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Collaborating with Tendency LTD was fantastic. Their expertise and professionalism had a big impact on my ecommerce. Special thanks to Katio for making the process efficient. Thrilled with the results!<\/p>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ul class=\"elementskit-stars\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><a><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\" \/><\/svg><\/a><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><a><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\" \/><\/svg><\/a><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><a><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\" \/><\/svg><\/a><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><a><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\" \/><\/svg><\/a><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><a><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\" \/><\/svg><\/a><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div><!-- .commentor-content END -->\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"swiper-slide\">\n\t\t\t\t\t<div class=\"swiper-slide-inner\">\n\t\t\t\t\t\t<div class=\"elementskit-single-testimonial-slider elementskit-testimonial-slider-block-style  elementor-repeater-item-f373d65\" >\n\t\t\t\t\t\t\t<div class=\"elementskit-commentor-bio \">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementskit-commentor-image ekit-testimonial--avatar\">\n\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"100\" height=\"100\" src=\"https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/icons8-shopify-2.svg\" class=\"attachment-full size-full\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementskit-profile-info\">\n\t\t\t\t\t\t\t\t\t<strong class=\"elementskit-author-name\">Simon c.<\/strong>\n\t\t\t\t\t\t\t\t\t<span class=\"elementskit-author-des\">Eldura<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"elementskit-commentor-content\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>For a year, Tendency has been our go-to team. They\u2019re experts, always available, and their solutions fit every need. Their support improved our site design, functionality, and social marketing!<\/p>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ul class=\"elementskit-stars\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><a><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\" \/><\/svg><\/a><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><a><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\" \/><\/svg><\/a><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><a><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\" \/><\/svg><\/a><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><a><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\" \/><\/svg><\/a><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><a><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\" \/><\/svg><\/a><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div><!-- .commentor-content END -->\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"swiper-slide\">\n\t\t\t\t\t<div class=\"swiper-slide-inner\">\n\t\t\t\t\t\t<div class=\"elementskit-single-testimonial-slider elementskit-testimonial-slider-block-style testimonial-active elementor-repeater-item-909fac0\" >\n\t\t\t\t\t\t\t<div class=\"elementskit-commentor-bio \">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementskit-commentor-image ekit-testimonial--avatar\">\n\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"100\" height=\"100\" src=\"https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/icons8-shopify-2.svg\" class=\"attachment-full size-full\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementskit-profile-info\">\n\t\t\t\t\t\t\t\t\t<strong class=\"elementskit-author-name\">Cosmin M.<\/strong>\n\t\t\t\t\t\t\t\t\t<span class=\"elementskit-author-des\">uLash<\/span>\n\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"elementskit-commentor-content\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Tendency redesigned my store beyond expectations. From consultation to execution, their creativity, attention to detail, and constant communication made the process smooth. Highly recommended!<\/p>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<ul class=\"elementskit-stars\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><a><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\" \/><\/svg><\/a><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><a><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\" \/><\/svg><\/a><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><a><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\" \/><\/svg><\/a><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><a><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\" \/><\/svg><\/a><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li><a><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewbox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\" \/><\/svg><\/a><\/li>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div><!-- .commentor-content END -->\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div class=\"swiper-pagination\"><\/div>\n\t\t\n\t\t\t\t\t<div class=\"swiper-navigation-button swiper-button-prev\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"icon icon-left-arrow\"><\/i>\t\t\t<\/div>\n\t\t\t<div class=\"swiper-navigation-button swiper-button-next\">\n\t\t\t\t<i aria-hidden=\"true\" class=\"icon icon-right-arrow\"><\/i>\t\t\t<\/div>\n\t\t\t<\/div>\n<\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1ffd5a1 elementor-widget elementor-widget-text-editor\" data-id=\"1ffd5a1\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>verified on<img decoding=\"async\" class=\"verified\" src=\"https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/01\/KlufCMCzfydAvwTAd6HlrApTlpYG7DCgZVdmkYIc-e1738159168187-300x129.png\" width=\"130\" \/><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-96116d1 elementor-widget elementor-widget-menu-anchor\" data-id=\"96116d1\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"menu-anchor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-menu-anchor\" id=\"lead\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4827ecac e-flex e-con-boxed e-con e-parent\" data-id=\"4827ecac\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-7e37c94 e-con-full e-flex e-con e-child\" data-id=\"7e37c94\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-763210fa animated-fast elementor-invisible elementor-widget elementor-widget-elementskit-heading\" data-id=\"763210fa\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;ekit_we_effect_on&quot;:&quot;css&quot;,&quot;_animation_delay&quot;:100}\" data-widget_type=\"elementskit-heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"ekit-wid-con\" ><div class=\"ekit-heading elementskit-section-title-wraper text_center   ekit_heading_tablet-   ekit_heading_mobile-\"><h2 class=\"ekit-heading--title elementskit-section-title \">Ready to <span>Transform<\/span> Your Business?<\/h2>\t\t\t\t<div class='ekit-heading__description'>\n\t\t\t\t\t<p>Take advantage of our exclusive Shopify community. Read exclusive articles, guides, tips and more from Real Pros!<\/p>\n\t\t\t\t<\/div>\n\t\t\t<\/div><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4b69149 e-flex e-con-boxed e-con e-child\" data-id=\"4b69149\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-84726a2 elementor-widget elementor-widget-elementskit-creative-button\" data-id=\"84726a2\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"elementskit-creative-button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"ekit-wid-con\" >\t\t<div class=\"ekit-btn-wraper\">\n\t\t\t\t\t\t\t\t<a href=\"https:\/\/t.me\/ecommercedailynews\" download=\"10 Ways to Digitalise Your Business! by Tendency\" class=\"ekit_creative_button  free-ebook\" id=\"\" style=\"flex-direction: row;\" data-text=\"\">\n\t\t\t\t\t\t<span class=\"ekit_creative_button_icon_wrapper\">\n\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"ekit_creative_button_icon_before fab fa-telegram\"><\/i>\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t<span class=\"ekit_creative_button_text\">Join the Telegram Channel<\/span>\n\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t<\/div>\n        <\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>The Best Way To Learn Ecommerce. For Free! We Have Decided to Put an End to the Fluff Gurus! Join the Telegram Channel Free Channel! News, Tips, Strategy Real eComm Owners Our Case Study! From \u00a30 to \u00a3248k in Just 90 Days! This store started from scratch and reached \u00a3248k in just 3 months. After [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":22745,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-23867","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v28.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Telegram Channel - Tendency<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/tendency.ltd\/it\/home\/scale-ecommerce-ai-marketing\/launch-shopify-store-7-days\/telegram-channel\/\" \/>\n<meta property=\"og:locale\" content=\"it_IT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Telegram Channel\" \/>\n<meta property=\"og:description\" content=\"The Best Way To Learn Ecommerce. For Free! We Have Decided to Put an End to the Fluff Gurus! Join the Telegram Channel Free Channel! News, Tips, Strategy Real eComm Owners Our Case Study! From \u00a30 to \u00a3248k in Just 90 Days! This store started from scratch and reached \u00a3248k in just 3 months. After [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tendency.ltd\/it\/home\/scale-ecommerce-ai-marketing\/launch-shopify-store-7-days\/telegram-channel\/\" \/>\n<meta property=\"og:site_name\" content=\"Tendency\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/tendency.uk\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-28T17:12:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/icons8-shopify.svg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@TendencyUK\" \/>\n<meta name=\"twitter:label1\" content=\"Tempo di lettura stimato\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 minuti\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/tendency.ltd\\\/home\\\/scale-ecommerce-ai-marketing\\\/launch-shopify-store-7-days\\\/telegram-channel\\\/\",\"url\":\"https:\\\/\\\/tendency.ltd\\\/home\\\/scale-ecommerce-ai-marketing\\\/launch-shopify-store-7-days\\\/telegram-channel\\\/\",\"name\":\"Telegram Channel - Tendency\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/tendency.ltd\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/tendency.ltd\\\/home\\\/scale-ecommerce-ai-marketing\\\/launch-shopify-store-7-days\\\/telegram-channel\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/tendency.ltd\\\/home\\\/scale-ecommerce-ai-marketing\\\/launch-shopify-store-7-days\\\/telegram-channel\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/tendency.ltd\\\/wp-content\\\/uploads\\\/2025\\\/02\\\/icons8-shopify.svg\",\"datePublished\":\"2025-02-28T16:11:49+00:00\",\"dateModified\":\"2025-02-28T17:12:16+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/tendency.ltd\\\/home\\\/scale-ecommerce-ai-marketing\\\/launch-shopify-store-7-days\\\/telegram-channel\\\/#breadcrumb\"},\"inLanguage\":\"it-IT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/tendency.ltd\\\/home\\\/scale-ecommerce-ai-marketing\\\/launch-shopify-store-7-days\\\/telegram-channel\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\\\/\\\/tendency.ltd\\\/home\\\/scale-ecommerce-ai-marketing\\\/launch-shopify-store-7-days\\\/telegram-channel\\\/#primaryimage\",\"url\":\"https:\\\/\\\/tendency.ltd\\\/wp-content\\\/uploads\\\/2025\\\/02\\\/icons8-shopify.svg\",\"contentUrl\":\"https:\\\/\\\/tendency.ltd\\\/wp-content\\\/uploads\\\/2025\\\/02\\\/icons8-shopify.svg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/tendency.ltd\\\/home\\\/scale-ecommerce-ai-marketing\\\/launch-shopify-store-7-days\\\/telegram-channel\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/tendency.ltd\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Home\",\"item\":\"https:\\\/\\\/tendency.ltd\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Ecommerce Services for Growth | Tendency\",\"item\":\"https:\\\/\\\/tendency.ltd\\\/home\\\/scale-ecommerce-ai-marketing\\\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Your Shopify Store Ready in 7 Days\",\"item\":\"https:\\\/\\\/tendency.ltd\\\/home\\\/scale-ecommerce-ai-marketing\\\/launch-shopify-store-7-days\\\/\"},{\"@type\":\"ListItem\",\"position\":5,\"name\":\"Telegram Channel\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/tendency.ltd\\\/#website\",\"url\":\"https:\\\/\\\/tendency.ltd\\\/\",\"name\":\"Tendency\",\"description\":\"Boost Your Digital Business Now!\",\"publisher\":{\"@id\":\"https:\\\/\\\/tendency.ltd\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/tendency.ltd\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"it-IT\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/tendency.ltd\\\/#organization\",\"name\":\"Tendency LTD\",\"alternateName\":\"Tendency\",\"url\":\"https:\\\/\\\/tendency.ltd\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\\\/\\\/tendency.ltd\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/tendency.ltd\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/tendency-01-B.png\",\"contentUrl\":\"https:\\\/\\\/tendency.ltd\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/tendency-01-B.png\",\"width\":995,\"height\":306,\"caption\":\"Tendency LTD\"},\"image\":{\"@id\":\"https:\\\/\\\/tendency.ltd\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/tendency.uk\",\"https:\\\/\\\/x.com\\\/TendencyUK\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/tendency-ltd\",\"https:\\\/\\\/it.pinterest.com\\\/tendency_web\\\/\",\"https:\\\/\\\/www.instagram.com\\\/tendencyltd\\\/\"],\"description\":\"Tendency is a brand growth partner specializing in China manufacturing, global logistics, and performance advertising, helping businesses scale across the UK, Europe, and Asia.\",\"email\":\"info@tendency.digital\",\"legalName\":\"Tendency LTD\",\"foundingDate\":\"2022-09-05\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"1\",\"maxValue\":\"10\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Telegram Channel - Tendency","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/tendency.ltd\/it\/home\/scale-ecommerce-ai-marketing\/launch-shopify-store-7-days\/telegram-channel\/","og_locale":"it_IT","og_type":"article","og_title":"Telegram Channel","og_description":"The Best Way To Learn Ecommerce. For Free! We Have Decided to Put an End to the Fluff Gurus! Join the Telegram Channel Free Channel! News, Tips, Strategy Real eComm Owners Our Case Study! From \u00a30 to \u00a3248k in Just 90 Days! This store started from scratch and reached \u00a3248k in just 3 months. After [&hellip;]","og_url":"https:\/\/tendency.ltd\/it\/home\/scale-ecommerce-ai-marketing\/launch-shopify-store-7-days\/telegram-channel\/","og_site_name":"Tendency","article_publisher":"https:\/\/www.facebook.com\/tendency.uk","article_modified_time":"2025-02-28T17:12:16+00:00","og_image":[{"url":"https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/icons8-shopify.svg","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_site":"@TendencyUK","twitter_misc":{"Tempo di lettura stimato":"5 minuti"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/tendency.ltd\/home\/scale-ecommerce-ai-marketing\/launch-shopify-store-7-days\/telegram-channel\/","url":"https:\/\/tendency.ltd\/home\/scale-ecommerce-ai-marketing\/launch-shopify-store-7-days\/telegram-channel\/","name":"Telegram Channel - Tendency","isPartOf":{"@id":"https:\/\/tendency.ltd\/#website"},"primaryImageOfPage":{"@id":"https:\/\/tendency.ltd\/home\/scale-ecommerce-ai-marketing\/launch-shopify-store-7-days\/telegram-channel\/#primaryimage"},"image":{"@id":"https:\/\/tendency.ltd\/home\/scale-ecommerce-ai-marketing\/launch-shopify-store-7-days\/telegram-channel\/#primaryimage"},"thumbnailUrl":"https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/icons8-shopify.svg","datePublished":"2025-02-28T16:11:49+00:00","dateModified":"2025-02-28T17:12:16+00:00","breadcrumb":{"@id":"https:\/\/tendency.ltd\/home\/scale-ecommerce-ai-marketing\/launch-shopify-store-7-days\/telegram-channel\/#breadcrumb"},"inLanguage":"it-IT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tendency.ltd\/home\/scale-ecommerce-ai-marketing\/launch-shopify-store-7-days\/telegram-channel\/"]}]},{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/tendency.ltd\/home\/scale-ecommerce-ai-marketing\/launch-shopify-store-7-days\/telegram-channel\/#primaryimage","url":"https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/icons8-shopify.svg","contentUrl":"https:\/\/tendency.ltd\/wp-content\/uploads\/2025\/02\/icons8-shopify.svg"},{"@type":"BreadcrumbList","@id":"https:\/\/tendency.ltd\/home\/scale-ecommerce-ai-marketing\/launch-shopify-store-7-days\/telegram-channel\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/tendency.ltd\/"},{"@type":"ListItem","position":2,"name":"Home","item":"https:\/\/tendency.ltd\/"},{"@type":"ListItem","position":3,"name":"Ecommerce Services for Growth | Tendency","item":"https:\/\/tendency.ltd\/home\/scale-ecommerce-ai-marketing\/"},{"@type":"ListItem","position":4,"name":"Your Shopify Store Ready in 7 Days","item":"https:\/\/tendency.ltd\/home\/scale-ecommerce-ai-marketing\/launch-shopify-store-7-days\/"},{"@type":"ListItem","position":5,"name":"Telegram Channel"}]},{"@type":"WebSite","@id":"https:\/\/tendency.ltd\/#website","url":"https:\/\/tendency.ltd\/","name":"Tendency","description":"Boost Your Digital Business Now!","publisher":{"@id":"https:\/\/tendency.ltd\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/tendency.ltd\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"it-IT"},{"@type":"Organization","@id":"https:\/\/tendency.ltd\/#organization","name":"Tendency LTD","alternateName":"Tendency","url":"https:\/\/tendency.ltd\/","logo":{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/tendency.ltd\/#\/schema\/logo\/image\/","url":"https:\/\/tendency.ltd\/wp-content\/uploads\/2024\/02\/tendency-01-B.png","contentUrl":"https:\/\/tendency.ltd\/wp-content\/uploads\/2024\/02\/tendency-01-B.png","width":995,"height":306,"caption":"Tendency LTD"},"image":{"@id":"https:\/\/tendency.ltd\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/tendency.uk","https:\/\/x.com\/TendencyUK","https:\/\/www.linkedin.com\/company\/tendency-ltd","https:\/\/it.pinterest.com\/tendency_web\/","https:\/\/www.instagram.com\/tendencyltd\/"],"description":"Tendency is a brand growth partner specializing in China manufacturing, global logistics, and performance advertising, helping businesses scale across the UK, Europe, and Asia.","email":"info@tendency.digital","legalName":"Tendency LTD","foundingDate":"2022-09-05","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"1","maxValue":"10"}}]}},"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/tendency.ltd\/it\/wp-json\/wp\/v2\/pages\/23867","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tendency.ltd\/it\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/tendency.ltd\/it\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/tendency.ltd\/it\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tendency.ltd\/it\/wp-json\/wp\/v2\/comments?post=23867"}],"version-history":[{"count":0,"href":"https:\/\/tendency.ltd\/it\/wp-json\/wp\/v2\/pages\/23867\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/tendency.ltd\/it\/wp-json\/wp\/v2\/pages\/22745"}],"wp:attachment":[{"href":"https:\/\/tendency.ltd\/it\/wp-json\/wp\/v2\/media?parent=23867"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}