404 Not Found
Looks like you have taken a wrong turn. Dont worry it happens to the best of us.
{"translation-revision-date":"2025-01-09T15:10:54+00:00","generator":"WP-CLI\/2.11.0","source":"src\/Components\/Dashboard\/WelcomeContainer.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en","plural-forms":"nplurals=2; plural=(n != 1);"},"Welcome to Ultimate Addons for Elementor!":["Bienvenue dans Ultimate Addons pour Elementor !"],"We're excited to help you supercharge your website-building experience. Effortlessly design stunning websites with our comprehensive range of free and premium widgets and features.":["Nous sommes ravis de vous aider \u00e0 dynamiser votre exp\u00e9rience de cr\u00e9ation de site Web. Concevez sans effort des sites Web \u00e9poustouflants avec notre gamme compl\u00e8te de widgets et de fonctionnalit\u00e9s gratuits et premium."],"Create Header\/Footer":["Cr\u00e9er un en-t\u00eate\/pied de page"],"Create New Page":["Cr\u00e9er une nouvelle page"],"Read full guide":["Lire le guide complet"]}}}export class ConditionsConfig extends $e.modules.CommandData { static signature = 'site-editor/conditions-config'; static getEndpointFormat() { return 'site-editor/conditions-config/{id}'; } } export default ConditionsConfig; var FusionPageBuilder = FusionPageBuilder || {}; ( function() { jQuery( document ).ready( function() { // Accordion View. FusionPageBuilder.fusion_recent_posts = FusionPageBuilder.ElementView.extend( { /** * Runs after view DOM is patched. * * @since 2.0 * @return {void} */ onRender: function() { var self = this; jQuery( '#fb-preview' )[ 0 ].contentWindow.jQuery( document ).ready( function() { self.afterPatch(); } ); }, /** * Runs after view DOM is patched. * * @since 2.0 * @return {void} */ beforePatch: function() { var elements = this.$el.find( '.fusion-recent-posts .flexslider' ); _.each( elements, function( element ) { element = jQuery( '#fb-preview' )[ 0 ].contentWindow.jQuery( element ); if ( 'undefined' !== typeof element.data( 'flexslider' ) ) { element.flexslider( 'destroy' ); } } ); }, /** * Runs after view DOM is patched. * * @since 2.0 * @return {void} */ afterPatch: function() { var elements = this.$el.find( '.fusion-recent-posts .flexslider' ); // Re-init flexsliders. setTimeout( function() { _.each( elements, function( element ) { element = jQuery( '#fb-preview' )[ 0 ].contentWindow.jQuery( element ); // TODO: check timing here, after patch shouldn't really fire on initial load, otherwise duplicate flexislider. if ( 'function' === typeof element.flexslider ) { element.flexslider(); } } ); }, 300 ); }, /** * Modifies the values. * * @since 2.0 * @param {Object} values - The values object. * @return {void} */ validateValues: function( values ) { // Deprecated 5.2.1 hide value, mapped to no. values.excerpt = 'hide' === values.excerpt ? 'no' : values.excerpt; }, /** * Modify template attributes. * * @since 2.0.0 * @return {Object} */ filterTemplateAtts: function( atts ) { var columns = 3, attributes = {}, recentPostsShortcode = {}, recentPostsShortcodeColumn = {}, recentPostsShortcodeImgLink = {}, recentPostsShortcodeSection = {}, recentPostsShortcodeSlideshow = { class: 'fusion-flexslider flexslider' }; this.validateValues( atts.values ); if ( 'undefined' !== typeof this.model.attributes.query_data && 'undefined' !== typeof this.model.attributes.query_data.posts ) { if ( '' !== atts.values.columns ) { columns = 12 / parseInt( atts.values.columns, 10 ); } recentPostsShortcodeColumn[ 'class' ] = 'fusion-column column col col-lg-' + columns + ' col-md-' + columns + ' col-sm-' + columns + ''; if ( '5' === atts.values.columns ) { recentPostsShortcodeColumn[ 'class' ] = 'fusion-column column col-lg-2 col-md-2 col-sm-2'; } recentPostsShortcodeColumn = _.fusionAnimations( atts.values, recentPostsShortcodeColumn ); if ( 'thumbnails-on-side' === atts.values.layout ) { recentPostsShortcodeSlideshow[ 'class' ] += ' floated-slideshow'; } if ( '' !== atts.values.hover_type ) { recentPostsShortcodeSlideshow[ 'class' ] += ' flexslider-hover-type-' + atts.values.hover_type; } if ( '' !== atts.values.hover_type ) { recentPostsShortcodeImgLink[ 'class' ] = 'hover-type-' + atts.values.hover_type; } // recentPostsShortcode Attributes. recentPostsShortcode = _.fusionVisibilityAtts( atts.values.hide_on_mobile, { class: 'fusion-recent-posts avada-container layout-' + atts.values.layout + ' layout-columns-' + atts.values.columns } ); if ( '' !== atts.values[ 'class' ] ) { recentPostsShortcode[ 'class' ] += ' ' + atts.values[ 'class' ]; } if ( '' !== atts.values.id ) { recentPostsShortcode.id = atts.values.id; } // recentPostsShortcodeSection Attributes. recentPostsShortcodeSection[ 'class' ] = 'fusion-columns columns fusion-columns-' + atts.values.columns + ' columns-' + atts.values.columns; } if ( 'auto' === atts.values.picture_size ) { atts.values.image_size = 'full'; } else if ( 'default' === atts.values.layout ) { atts.values.image_size = 'recent-posts'; } else { atts.values.image_size = 'portfolio-five'; } attributes.metaInfoSettings = {}; attributes.metaInfoSettings.post_meta = ( 'yes' === atts.values.meta ); attributes.metaInfoSettings.post_meta_author = ( 'yes' === atts.values.meta_author ); attributes.metaInfoSettings.post_meta_date = ( 'yes' === atts.values.meta_date ); attributes.metaInfoSettings.post_meta_cats = ( 'yes' === atts.values.meta_categories ); attributes.metaInfoSettings.post_meta_tags = ( 'yes' === atts.values.meta_tags ); attributes.metaInfoSettings.post_meta_comments = ( 'yes' === atts.values.meta_comments ); attributes.metaInfoSettings.disable_date_rich_snippet_pages = atts.extras.disable_date_rich_snippet_pages; attributes.query_data = atts.query_data; attributes.extras = atts.extras; attributes.values = atts.values; attributes.recentPostsShortcode = recentPostsShortcode; attributes.recentPostsShortcodeColumn = recentPostsShortcodeColumn; attributes.recentPostsShortcodeImgLink = recentPostsShortcodeImgLink; attributes.recentPostsShortcodeSection = recentPostsShortcodeSection; attributes.recentPostsShortcodeSlideshow = recentPostsShortcodeSlideshow; return attributes; } } ); } ); }( jQuery ) );
Looks like you have taken a wrong turn. Dont worry it happens to the best of us.