/** * Select3 Greek translation. * * @author Uriy Efremochkin */ (function ($) { "use strict"; $.fn.select3.locales['el'] = { formatNoMatches: function () { return "Δεν βρέθηκαν αποτελέσματα"; }, formatInputTooShort: function (input, min) { var n = min - input.length; return "Παρακαλούμε εισάγετε " + n + " περισσότερο" + (n > 1 ? "υς" : "") + " χαρακτήρ" + (n > 1 ? "ες" : "α"); }, formatInputTooLong: function (input, max) { var n = input.length - max; return "Παρακαλούμε διαγράψτε " + n + " χαρακτήρ" + (n > 1 ? "ες" : "α"); }, formatSelectionTooBig: function (limit) { return "Μπορείτε να επιλέξετε μόνο " + limit + " αντικείμεν" + (limit > 1 ? "α" : "ο"); }, formatLoadMore: function (pageNumber) { return "Φόρτωση περισσότερων…"; }, formatSearching: function () { return "Αναζήτηση…"; } }; $.extend($.fn.select3.defaults, $.fn.select3.locales['el']); })(jQuery);/* global FusionPageBuilderViewManager, fusionAllElements, FusionEvents, FusionApp */ var FusionPageBuilder = FusionPageBuilder || {}; ( function() { FusionPageBuilder.Navigator = Backbone.Model.extend( { defaults: { // see _getNavItemObject() function for this object format. navigatorItems: null, // An object with the views that are collapsed. collapsedItems: {}, // If is either a page/column/element... etc. library navigator. This will not display some buttons. navigatorType: '' }, verifiedNestedRowsForCollapse: {}, initialize: function() { this.update = _.debounce( this.update.bind( this ), 20 ); // Used for nested columns added. this.listenTo( FusionEvents, 'fusion-columns-added', this.update ); this.listenTo( FusionEvents, 'fusion-content-changed', this.update ); this.listenTo( FusionEvents, 'fusion-element-removed', this.update ); this.listenTo( FusionEvents, 'fusion-column-resized', this.update ); this.listenTo( FusionEvents, 'fusion-cancel-nested-row-changes', this.restoreNestedRowCollapsible ); }, /** * Update all the attributes. This will also trigger render if necessary. */ update: function() { var navigatorItems = this.getNavigatorItems(); this.setNavigatorType(); this.setNewNestedRowsToCollapsible( navigatorItems ); // this will render if it's changed. this.set( 'navigatorItems', navigatorItems ); }, getNavigatorItems: function() { var elementViews = FusionPageBuilderViewManager.getViews(), index, navItems = [], elType, isContainerView, isCheckoutForm, isNextPageView, isFormStep; this._updateModelsToViewsMap( elementViews ); for ( index in elementViews ) { if ( 'object' !== typeof elementViews[ index ] ) { continue; // eslint-disable-line no-continue } elType = elementViews[ index ].model.get( 'element_type' ); isContainerView = ( 'fusion_builder_container' === elType ); isNextPageView = ( 'fusion_builder_next_page' === elType ); isCheckoutForm = ( 'fusion_woo_checkout_form' === elType ); isFormStep = ( 'fusion_builder_form_step' === elType ); // Construct all the containers, with their children in order. // Only the children are in order, and not the containers themselves. if ( isContainerView || ( isNextPageView && ! elementViews[ index ].$el.hasClass( 'fusion-builder-next-page-last' ) ) || isCheckoutForm || isFormStep ) { navItems.push( this._getNavItemObject( elementViews[ index ] ) ); } } navItems = this._orderByDisplayedContainers( navItems ); return navItems; }, setNavigatorType: function() { this.set( 'navigatorType', FusionApp.data.fusion_element_type ); }, setNewNestedRowsToCollapsible( navigatorItems ) { var i, j, k, l, item, collapsedItems = this.get( 'collapsedItems' ); if ( ! Array.isArray( navigatorItems ) ) { return; } for ( i = 0; i < navigatorItems.length; i++ ) { // containers for ( j = 0; j < navigatorItems[ i ].children.length; j++ ) { // rows for ( k = 0; k < navigatorItems[ i ].children[ j ].children.length; k++ ) { // columns for ( l = 0; l < navigatorItems[ i ].children[ j ].children[ k ].children.length; l++ ) { // elements or nested rows. item = navigatorItems[ i ].children[ j ].children[ k ].children[ l ]; // eslint-disable-next-line max-depth if ( 'fusion_builder_row_inner' === item.type && 'undefined' === typeof this.verifiedNestedRowsForCollapse[ item.view.cid ] ) { this.verifiedNestedRowsForCollapse[ item.view.cid ] = true; collapsedItems[ item.view.cid ] = true; } } } } } this.set( 'collapsedItems', collapsedItems ); }, /** * When a nested row is canceled from editing, the view cid changes, * so that the collapsible refreshes to default state of collapsed. * */ restoreNestedRowCollapsible( data ) { var oldStatus, collapsedItems = this.get( 'collapsedItems' ); if ( 'object' !== typeof data.oldView || ! data.oldView.cid || 'object' !== typeof data.newView || ! data.newView.cid ) { return; } oldStatus = collapsedItems[ data.oldView.cid ] ? collapsedItems[ data.oldView.cid ] : false; if ( ! oldStatus ) { this.verifiedNestedRowsForCollapse[ data.newView.cid ] = true; } else { this.verifiedNestedRowsForCollapse[ data.newView.cid ] = true; collapsedItems[ data.newView.cid ] = true; } this.set( 'collapsedItems', collapsedItems ); }, _updateModelsToViewsMap: function( elementViews ) { var index; this.modelsToViewsMap = []; this.viewsCidToViewsMap = []; for ( index in elementViews ) { if ( 'object' !== typeof elementViews[ index ] ) { continue; // eslint-disable-line no-continue } this.modelsToViewsMap[ elementViews[ index ].model.cid ] = elementViews[ index ]; this.viewsCidToViewsMap[ elementViews[ index ].cid ] = elementViews[ index ]; } }, _getNavItemObject: function( view ) { return { view: view, model: view.model, name: this._getElementDisplayName( view ), type: view.model.get( 'element_type' ), // An array with items of the same type as this. children: this._getNavigationChildrenItems( view ) }; }, _getNavigationChildrenItems: function( view ) { var model, children = [], childView, i; if ( ! view.model || ! view.model.children || ! view.model.children.length ) { return children; } for ( i = 0; i < view.model.children.length; i++ ) { model = view.model.children.models[ i ]; if ( 'object' === typeof this.modelsToViewsMap[ model.cid ] && 'multi_element_child' !== model.get( 'multi' ) ) { childView = this.modelsToViewsMap[ model.cid ]; children.push( this._getNavItemObject( childView ) ); } } return children; }, _orderByDisplayedContainers: function( navItems ) { var previewIframe = jQuery( '#fb-preview' ), containers, orderedItems = [], j, index; if ( ! previewIframe.length ) { return navItems; } containers = previewIframe[ 0 ].contentWindow.jQuery( '#fusion_builder_container > .fusion-builder-container, #fusion_builder_container > .fusion-builder-next-page, #fusion_builder_container > .fusion-checkout-form, #fusion_builder_container > .fusion-builder-form-step' ); for ( index = 0; index < containers.length; index++ ) { for ( j = 0; j < navItems.length; j++ ) { if ( navItems[ j ].view.$el.is( containers.eq( index ) ) ) { orderedItems.push( navItems[ j ] ); } } } return orderedItems; }, _getElementDisplayName: function( view ) { var elType = view.model.get( 'element_type' ), params; params = view.model.get( 'params' ); if ( params && params.admin_label ) { return _.unescape( params.admin_label ); } // Return the element name. if ( fusionAllElements[ elType ] && fusionAllElements[ elType ].name ) { return fusionAllElements[ elType ].name; } return elType; } } ); }( jQuery ) ); function fusionInitStickyColumns(){"object"==typeof fusion&&"function"==typeof fusion.getHeight&&jQuery(".awb-sticky[data-sticky-offset]").each(function(){jQuery(this)[0].style.setProperty("--awb-sticky-offset",fusion.getHeight(jQuery(this).attr("data-sticky-offset"))+fusion.getAdminbarHeight()+"px")})}jQuery(document).ready(function(){jQuery(".fusion-image-hovers .hover-type-liftup.fusion-column-inner-bg").on({mouseenter:function(){var e=jQuery(this).closest(".fusion_builder_column");jQuery(this).css("z-index","4"),jQuery(this).siblings(".fusion-column-wrapper").css("z-index","5"),"none"!==e.css("filter")&&"auto"===e.css("z-index")&&(e.css("z-index","1"),e.attr("data-filter-zindex","true"))},mouseleave:function(){var e=jQuery(this).closest(".fusion_builder_column");jQuery(this).css("z-index",""),jQuery(this).siblings(".fusion-column-wrapper").css("z-index",""),"true"===e.data("filter-zindex")&&(e.css("z-index",""),e.removeAttr("data-filter-zindex"))}})}),jQuery(window).on("load fusion-sticky-change fusion-resize-horizontal",fusionInitStickyColumns); Shop – Zifer https://ahmedswarriorhub.shop Thu, 30 Jul 2026 22:41:59 +0000 en-US hourly 1 Privacy Screen Protector https://ahmedswarriorhub.shop/product/privacy-screen-protector/ Tue, 10 Mar 2026 16:19:43 +0000 https://ahmedswarriorhub.shop/?post_type=product&p=419 Handbag Flower Vase https://ahmedswarriorhub.shop/product/handbag-flower-vase/ https://ahmedswarriorhub.shop/product/handbag-flower-vase/#respond Fri, 26 Dec 2025 05:16:20 +0000 https://ahmedswarriorhub.shop/?post_type=product&p=376 Key Features:

  • Premium Construction: Built with high-quality metal components for lasting durability.

  • Artisan Finish: Features handsewn leather, offering unique character and a soft, tactile feel.

  • Timeless Design: A versatile blend of materials that ages gracefully with use.

]]>
Crafted for those who appreciate the enduring blend of strength and sophistication, this piece is a testament to meticulous craftsmanship. It begins with quality metal parts, selected for their durability and precise finish, forming a reliable foundation built to last.

This structure is then thoughtfully wrapped in handsewn leather, where every stitch is placed with intention. This artisan touch ensures not only superior durability but also gives each piece its own unique character and a soft, tactile feel that improves with age.

The result is a functional accessory that transcends trends—a harmonious balance of resilient metal and organic leather, made to be both used and admired.

]]>
https://ahmedswarriorhub.shop/product/handbag-flower-vase/feed/ 0
The Reflection Piece – Silver https://ahmedswarriorhub.shop/product/the-reflection-piece-silver/ https://ahmedswarriorhub.shop/product/the-reflection-piece-silver/#respond Fri, 26 Dec 2025 05:11:05 +0000 https://ahmedswarriorhub.shop/?post_type=product&p=369

Key Features:

  • Sleek & Seamless Design: A smooth, continuous form offering a clean, contemporary look.

  • Surface-Safe Base: Integrated anti-slip bottom prevents scratching on delicate finishes.

  • Premium Durability: Made from high-quality, sturdy ceramic for long-lasting use.

  • Luxurious Glossy Gold Finish: A radiant, hand-coated finish that adds a touch of opulence.

]]>
Introducing a ceramic piece where minimalist design meets luxurious durability. Crafted from premium ceramic, this item features a flawlessly smooth and seamless form, engineered for a sophisticated look that complements any modern aesthetic.

To ensure both beauty and function, it includes a discreet anti-slip bottom that protects your precious surfaces from scratches and marks. The crowning touch is a brilliant Glossy Gold finish, hand-applied to create a reflective, jewel-like luster that catches the light and elevates any tablescape, shelf, or countertop.

More than just an object, it’s a statement of polished, practical elegance for your home.

SILVER VERSION

]]>
https://ahmedswarriorhub.shop/product/the-reflection-piece-silver/feed/ 0
120 watt phone charger super fast charging USB-C USB-A wall charger https://ahmedswarriorhub.shop/product/charger-block/ https://ahmedswarriorhub.shop/product/charger-block/#respond Thu, 11 Sep 2025 11:45:28 +0000 https://ahmedswarriorhub.shop/?post_type=product&p=138 Effortlessly power up your devices with this versatile 120-watt phone charger, equipped to fast charge both Apple and Samsung devices. Its dual ports ensure that you can charge two devices simultaneously, with USB-A and USB-C connectivity options to fit a variety of cables. The sleek yellow wall charger is designed for convenience, allowing you to plug in and charge your phone or tablet without the hassle of cables tangling or looking for an outlet.The charger operates at a 9V voltage, providing a reliable and efficient charging experience. It comes with everything you need to get started, and its compact design means it can be easily mounted on a wall, saving you space and keeping your devices charged and protected. Whether at home or on the go, this unbranded wall charger is a must-have for anyone in need of a reliable and fast charging solution.

]]>
https://ahmedswarriorhub.shop/product/charger-block/feed/ 0
RGB Charging Cable ultra fast 66W USB-C USB-A Color Changing https://ahmedswarriorhub.shop/product/iphone-13-pro/ https://ahmedswarriorhub.shop/product/iphone-13-pro/#respond Thu, 11 Sep 2025 11:45:28 +0000 https://ahmedswarriorhub.shop/?post_type=product&p=139 Enhance your charging experience with the RGB Charging Cable, designed to deliver ultra-fast 66W power delivery. This versatile cable supports multiple connectors, including USB-A and USB-C, along with a special Lightning port for diverse compatibility. It’s the perfect charging solution for a wide range of devices, ensuring your gadgets are powered up in no time.Not just practical, but also a style statement, the cable features a vibrant, multicolor LED design that adds an interactive touch to your tech accessories. Its durable and flexible build, coupled with an adjustable angle and case-friendly attributes, ensures that your devices stay unscathed while charging. Whether you’re at home, in the office, or on the go, this cable is a sleek and functional addition to your tech toolkit.

]]>
https://ahmedswarriorhub.shop/product/iphone-13-pro/feed/ 0
Wood Base Vase https://ahmedswarriorhub.shop/product/amazfit-bip-5-unity/ https://ahmedswarriorhub.shop/product/amazfit-bip-5-unity/#respond Thu, 11 Sep 2025 11:45:28 +0000 https://ahmedswarriorhub.shop/?post_type=product&p=140
  • ✨ Stylish Dual-Material Design: Warm natural wood meets sleek colored glass for a high-end, organic aesthetic.

  • 💧 Waterproof & Durable: Perfect for fresh flowers, stems, pampas grass, or decorative branches.

  • 🏡 Versatile Home Décor: Adds character to modern homes, cozy spaces, event tables, or wedding arrangements.

  • 🌿 Designed for Real or Faux Florals: Ideal size and shape for creating full, balanced bouquets.

  • 🎁 A Thoughtful Gift Choice: Beautiful for housewarmings, birthdays, Mother’s Day, weddings, or holiday gifting.

  • ]]>
    Rustic Glass & Wood Flower Vase – Modern Elegance for Any Space

    Bring natural warmth and timeless style into your home with this beautifully crafted glass and wood vase. Featuring a unique blend of transparent tinted glass and a rich wooden top, this vase instantly elevates any arrangement—whether you’re displaying fresh blooms, dried botanicals, or premium faux stems.

    The waterproof glass base allows you to fill it with water for real flowers, while the wooden collar adds texture and a modern rustic charm that complements contemporary, farmhouse, Scandinavian, and minimalist interiors alike. Display it as a centerpiece on your dining table, entryway console, office desk, or living room shelf to create an effortless touch of elegance.

    ]]>
    https://ahmedswarriorhub.shop/product/amazfit-bip-5-unity/feed/ 0
    Tear Drop Glass And Wood Flower Vase https://ahmedswarriorhub.shop/product/oraimo-spacebuds-neo/ https://ahmedswarriorhub.shop/product/oraimo-spacebuds-neo/#respond Thu, 11 Sep 2025 11:45:28 +0000 https://ahmedswarriorhub.shop/?post_type=product&p=141 This elegantly sculpted Motten glass vase offers the perfect blend of natural beauty and modern design. Handcrafted to rest upon a genuine wood base, it brings organic warmth and rustic texture to any space. The seamless, waterproof glass is ideal for displaying fresh-cut flowers, elegant faux stems, or standing beautifully on its own. A statement piece that marries artisanal charm with contemporary style, it’s designed to elevate your home with timeless, earthy elegance.

    ]]>
    https://ahmedswarriorhub.shop/product/oraimo-spacebuds-neo/feed/ 0
    The Reflection Piece https://ahmedswarriorhub.shop/product/haylou-solar-5-smart-watch-with-metallic-strap/ https://ahmedswarriorhub.shop/product/haylou-solar-5-smart-watch-with-metallic-strap/#respond Thu, 11 Sep 2025 11:45:28 +0000 https://ahmedswarriorhub.shop/?post_type=product&p=142

    Key Features:

    • Sleek & Seamless Design: A smooth, continuous form offering a clean, contemporary look.

    • Surface-Safe Base: Integrated anti-slip bottom prevents scratching on delicate finishes.

    • Premium Durability: Made from high-quality, sturdy ceramic for long-lasting use.

    • Luxurious Glossy Gold Finish: A radiant, hand-coated finish that adds a touch of opulence.

    ]]>
    Introducing a ceramic piece where minimalist design meets luxurious durability. Crafted from premium ceramic, this item features a flawlessly smooth and seamless form, engineered for a sophisticated look that complements any modern aesthetic.

    To ensure both beauty and function, it includes a discreet anti-slip bottom that protects your precious surfaces from scratches and marks. The crowning touch is a brilliant Glossy Gold finish, hand-applied to create a reflective, jewel-like luster that catches the light and elevates any tablescape, shelf, or countertop.

    More than just an object, it’s a statement of polished, practical elegance for your home.

    ]]>
    https://ahmedswarriorhub.shop/product/haylou-solar-5-smart-watch-with-metallic-strap/feed/ 0