Viewing 30 results - 1,441 through 1,470 (of 11,204 total)
  • Author
    Search Results
  • #1318474

    Hi Sunil,

    1- I went to LayerSlider WP, chose your slider and went to Slider Settings > Navigation Area and disabled “Show Prev & Next buttons”. Please review your website.

    2- That is Portfolio Grid element which is used to display your Portfolio Items from portfolio post type. You can go to Portfolio Items and add new ones or edit existing ones. You can find more information on Portfolio Grid here – https://kriesi.at/documentation/enfold/portfolio-grid/ :)

    Best regards,
    Yigit

    #1318359
    Dave
    Participant

    Hi Support
    How can we change a Buttons Font Size.

    I know we can change Button Styling in Enfold > Advanced Styling > Buttons

    However when you use a Button on a page, and we can select the Button Size in Button > Styling. How can we change that Buttons Font size?
    Not all buttons across the complete site!

    Thanks in advance for your help
    Cheers Dave

    #1318271

    Hi
    We use Enfold with the The Events Calendar plugin.
    Now, they updated the plugin and it seems, that the design of the events is broken.
    For example, the additional infos (details and map) is too narrow on desktops, the enumerations are yellow instead of black, the buttons for the Google calendar and iCal export look special, and so on.
    Also on the mobiles it does not look very nice.
    What can we do here? Will there be an Enfold update for that it works fine again with The Events calendar?
    See an example in the private content section.
    Thanks very much.
    Best regards
    Mike

    #1318264
    loewinwebsite2021
    Participant

    Hi there,

    I want to update a clients website but it doesn´t work. When I try to update enfold via “update button” it distroys the whole system.
    When I try to update via FTP it shows 89 critical errors and distroys everything.
    In the enfold settings there is nothing to see anymore. All categories are just blank and white background. That´s why Enfold should be updated asap I think.

    Below the footer there is a section of text which is also an error. And some Site links are not working.

    Thanks for help.

    Michael

    #1318222

    Hi,

    You can manually edit taxonomy or category query within the sort_buttons function in the enfold\config-templatebuilder\avia-shortcodes\portfolio\portfolio.php file but this will get applied on all sort buttons in every portfolio grid element. You have to adjust the order and orderby parameter.

    //get all categories that are actually listed on the page
    			$categories = get_categories( array(
    								'taxonomy'		=> $params['taxonomy'],
    								'hide_empty'	=> 0
    							) );
    

    // https://developer.wordpress.org/reference/functions/get_terms/

    Have you tried using this plugin instead? We have not tested it, so we are not sure if it will work without interfering with the query filter.

    // https://wordpress.org/plugins/custom-taxonomy-order-ne/

    Best regards,
    Ismael

    #1318153
    mmc501
    Participant

    I’ve added a custom icon as per the documentation: https://kriesi.at/documentation/enfold/social-share-buttons/#how-to-add-custom-social-icons-to-enfold-options

    The icon and link are working ok. But when I hovel over it it says: Icon_name instead ot Tiktok.

    // Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
        $icons['icon_name'] = array( 'font' =>'fontello', 'icon' => 'ue800');
        return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
        
    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
        $icons['Tik Tok'] = 'icon_name';
        return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);

    The same issue is referenced here: https://kriesi.at/support/topic/tiktok-in-social-media/#post-1305097 and it was fixed for someone but the solution wasn’t posted.

    #1317833
    pixar24
    Participant

    Hello,
    could I get the caption title and the caption text used on the slides in the fullscreen slider ( homepage ) from demo ‘enfold health coach ‘ ?
    I removed the default slides, but the text was removed too with it…
    Could I get the text again so the buttons appear again ( and text appears also as shown on the demo ).

    Thank you

    Hi,
    Thank you for your patience and sorry for the late reply, the login didn’t work for me but I did find the cause, at mobile the transform rule is overruled by this css for the parallax effect:

    .avia_mobile #top .av-parallax-section {
        z-index: 0;
        -webkit-transform: translate3d(0,0,0);

    So please try replacing your css with this:

    #main #section-width {
        max-width: 91%;
        left: 50%;
        position: relative;
        transform: translateX(-50%)!important;
    }

    After applying the css, please clear your browser cache and check.
    As for your logo image being blurry, I’m not sure that I’m seeing it, but my eyes are not that great, but below I linked to the current 300×159.png and the original 650×344.png try looking at both in your browser if you do see a difference you have two choices, you can download the original and resize it on your desktop manually preserving the image quantity and upload it to the exact location via FTP or your webhost file manager. This is often better than the WordPress image software for smaller images.
    Or you can go to the Enfold Theme Options ▸ Logo and enter the URL to the full size image below and save with the Save all changes button, Not the Upload button. This will then show the new image without modifing it.
    Enfold-Theme-Options-Logo-option.jpg

    Best regards,
    Mike

    #1317624

    Hi,
    Glad to hear this helped and thanks for pointing out the error, I have posted the correction below for future readers.
    If you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    add_filter('avf_contact_form_submit_button_attr','avia_add_submit_attributes_to_cf', 10, 3);
    function avia_add_submit_attributes_to_cf($att, $formID, $form_params){
        if(is_page('500')){
      $att = "onclick=\"_gaq.push(['_trackEvent','Contact Form one Send','Click/Touch','Footer']);\"";
        }
        if(is_page('400')){
      $att = "onclick=\"_gaq.push(['_trackEvent','Contact Form two Send','Click/Touch','Footer']);\"";
        }
      return $att;
    }

    Best regards,
    Mike

    #1317512
    rixxen
    Participant

    Hi,

    I am using the Avia Slideshow (Easy Slider, not Layerslider) on a client’s website.
    In this slideshow, there is a self-hosted video in the first slide and then images in the following slides.
    The problem with the video is that it will always be muted, no matter whether I check or uncheck the mute option in the player settings of the video slide.
    Even when I click the unmute button in the playing video (in the front-end), the volume is set to zero.
    When I then move my mouse cursor to slide up the volume, the volume slider disappears.
    The only way to unmute the video is by pressing the arrow up key on my keyboard.
    It’s kind of a UX nightmare ;)

    Please try it out yourselves (see URL in the private content).

    I have checked the JavaScript file
    /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow-video.js
    but any changes in that file didn’t have any effect.

    Thanks in advance for your help!

    Cheers
    Fabian

    • This topic was modified 4 years, 6 months ago by rixxen.

    Hi Yigit,

    I installed the envato market plugin. After doing that, it recognized that an update is available. I have tried 4 times to run the update with a different message each time. Once it said the update was successful, but then still showed the update was available and I’m using the previous version. Another time it said the update failed because it was the most current version. Another it failed and offered me this:

    An error occurred while updating Enfold: The update cannot be installed because we will be unable to copy some files. This is usually due to inconsistent file permissions. archive.php, functions.php, config-wordpress-seo/config.php, config-wordpress-seo/wpseo-mod.js, config-include.php, style.css, config-relevanssi/class-avia-relevanssi.php, header.php, config-gravityforms/gravity-mod.css, config-gravityforms/config.php, config-instagram-feed/class-avia-instagram-feed.php, config-instagram-feed/class-avia-instagram-feed-widget.php, config-woocommerce/config-356.php, config-woocommerce/woocommerce-mod-css-dynamic.php, config-woocommerce/config-woocommerce-bookings/woocommerce-booking-mod.css, config-woocommerce/config-woocommerce-bookings/config.php, config-woocommerce/admin/woo-admin-blocks.css, config-woocommerce/config.php, config-woocommerce/woocommerce-mod.css, config-woocommerce/woocommerce-mod-v26.js, config-woocommerce/woo-loader.php, config-woocommerce/admin-options.php, config-woocommerce/admin-import.php, config-woocommerce/woocommerce-mod.js, config-woocommerce/class-avia-wc-block-editor.php, config-woocommerce/images/arrow_up_down_dark.png, config-woocommerce/images/slideshow-arrow-left.png, config-woocommerce/images/remove.png, config-woocommerce/images/icons-shop-cart.png, config-woocommerce/images/star.png, config-woocommerce/images/arrow_down.png, config-woocommerce/images/slideshow-arrow-right-dark.png, config-woocommerce/images/slideshow-arrow-left-dark.png, config-woocommerce/images/slideshow-arrow-down.png, config-woocommerce/images/bullet_grey.png, config-woocommerce/images/slideshow-arrow-right.png, config-woocommerce/images/arrows.png, config-woocommerce/images/icons-shop-added.png, config-woocommerce/images/loading-light.gif, config-woocommerce/images/arrow_up_down.png, config-woocommerce/images/icons-shop-options.png, config-woocommerce/images/bg-style-wrap.png, config-woocommerce/images/rtl-bullet_grey.png, config-woocommerce/images/icons-shop-details.png, config-woocommerce/images/icon-cart.png, config-woocommerce/images/cross_white.png, config-woocommerce/images/slideshow-arrow-up.png, config-woocommerce/images/trans_dark.png, config-woocommerce/images/icons-shop-loading.gif, config-woocommerce/images/select.png, searchform.php, single.php, config-events-calendar/config.php, config-events-calendar/event-mod.css, config-events-calendar/event-mod-css-dynamic.php, config-events-calendar/views/v2/default-template.php, config-events-calendar/views/pro/map.php, config-events-calendar/views/single-event.php, config-events-calendar/views/single-event-no-mobile.php, config-events-calendar/views/default-template.php, config-bbpress/bbpress-mod.css, config-bbpress/config.php, config-bbpress/images/sticky.png, config-bbpress/images/closed.png, config-bbpress/images/super-sticky.png, search.php, js/avia-snippet-cookieconsent.js, js/avia-snippet-lightbox.js, js/html5shiv.js, js/avia-compat.js, js/avia-snippet-widget.js, js/avia-snippet-hamburger-menu.js, js/aviapopup/jquery.magnific-popup.min.js, js/aviapopup/magnific-popup.css, js/aviapopup/changelog.txt, js/aviapopup/jquery.magnific-popup.js, js/avia.js, js/avia-admin-preview.js, js/avia-snippet-sticky-header.js, js/avia-snippet-sidebarmenu.js, js/avia-snippet-site-preloader.js, js/waypoints/waypoints.js, js/waypoints/changelog.txt, js/waypoints/waypoints.min.js, js/avia-snippet-megamenu.js, js/shortcodes.js, config-templatebuilder/avia-shortcodes/events_countdown/events_countdown.php, config-templatebuilder/avia-shortcodes/postslider/postslider.css, config-templatebuilder/avia-shortcodes/postslider/postslider.php, config-templatebuilder/avia-shortcodes/buttons/buttons.css, config-templatebuilder/avia-shortcodes/buttons/buttons.php, config-templatebuilder/avia-shortcodes/tabs/tabs.css, config-templatebuilder/avia-shortcodes/tabs/tabs.js, config-templatebuilder/avia-shortcodes/tabs/tabs.php, config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.css, config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.js, config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.php, config-templatebuilder/avia-shortcodes/slideshow_fullsize/slideshow_fullsize.css, config-templatebuilder/avia-shortcodes/slideshow_fullsize/slideshow_fullsize.php, config-templatebuilder/avia-shortcodes/widgetarea/widgetarea.php, config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.php, config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.css, config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.js, config-templatebuilder/avia-shortcodes/comments/comments.css, config-templatebuilder/avia-shortcodes/comments/comments.php, config-templatebuilder/avia-shortcodes/av-helper-slideshow.php, config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.php, config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.css, config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.css, config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.php, config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.js, config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.js, config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.css, config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.php, config-templatebuilder/avia-shortcodes/tab_section/tab_section.php, config-templatebuilder/avia-shortcodes/tab_section/tab_sub_section.php, config-templatebuilder/avia-shortcodes/tab_section/tab_section.css, config-templatebuilder/avia-shortcodes/tab_section/tab_section.js, config-templatebuilder/avia-shortcodes/blog/blog.php, config-templatebuilder/avia-shortcodes/blog/blog.css, config-templatebuilder/avia-shortcodes/product_grid.php, config-templatebuilder/avia-shortcodes/countdown/countdown.php, config-templatebuilder/avia-shortcodes/countdown/countdown.js, config-templatebuilder/avia-shortcodes/countdown/countdown.css, config-templatebuilder/avia-shortcodes/team/team.php, config-templatebuilder/avia-shortcodes/team/team.css, config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.js, config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.php, config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.css, config-templatebuilder/avia-shortcodes/google_maps/google_maps.css, config-templatebuilder/avia-shortcodes/google_maps/google_maps.php, config-templatebuilder/avia-shortcodes/grid_row/grid_row.php, config-templatebuilder/avia-shortcodes/grid_row/grid_row.css, config-templatebuilder/avia-shortcodes/grid_row/cell.php, config-templatebuilder/avia-shortcodes/contentslider/contentslider.php, config-templatebuilder/avia-shortcodes/contentslider/contentslider.css, config-templatebuilder/avia-shortcodes/slideshow_revolution/slideshow_revolution.php, config-templatebuilder/avia-shortcodes/table/table.php, config-templatebuilder/avia-shortcodes/table/table.css, config-templatebuilder/avia-shortcodes/catalogue/catalogue.php, config-templatebuilder/avia-shortcodes/catalogue/catalogue.css, config-templatebuilder/avia-shortcodes/post_metadata/post_metadata.php, config-templatebuilder/avia-shortcodes/post_metadata/post_metadata.css, config-templatebuilder/avia-shortcodes/menu/menu.js, config-templatebuilder/avia-shortcodes/menu/menu.css, config-templatebuilder/avia-shortcodes/menu/menu.php, config-templatebuilder/avia-shortcodes/gallery/gallery.css, config-templatebuilder/avia-shortcodes/gallery/gallery.js, config-templatebuilder/avia-shortcodes/gallery/gallery.php, config-templatebuilder/avia-shortcodes/contact/contact.js, config-templatebuilder/avia-shortcodes/contact/contact.php, config-templatebuilder/avia-shortcodes/contact/contact.css, config-templatebuilder/avia-shortcodes/productslider/productslider.php, config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.css, config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.php, config-templatebuilder/avia-shortcodes/testimonials/testimonials.js, config-templatebuilder/avia-shortcodes/testimonials/testimonials.css, config-templatebuilder/avia-shortcodes/testimonials/testimonials.php, config-templatebuilder/avia-shortcodes/av-helper-mailchimp.php, config-templatebuilder/avia-shortcodes/codeblock/codeblock.php, config-templatebuilder/avia-shortcodes/icongrid/icongrid.css, config-templatebuilder/avia-shortcodes/icongrid/icongrid.php, config-templatebuilder/avia-shortcodes/icongrid/icongrid.js, config-templatebuilder/avia-shortcodes/notification/notification.js, config-templatebuilder/avia-shortcodes/notification/notification.css, config-templatebuilder/avia-shortcodes/notification/notification.php, config-templatebuilder/avia-shortcodes/magazine/magazine.php, config-templatebuilder/avia-shortcodes/magazine/magazine.css, config-templatebuilder/avia-shortcodes/magazine/magazine.js, config-templatebuilder/avia-shortcodes/heading/heading.css, config-templatebuilder/avia-shortcodes/heading/heading.php, config-templatebuilder/avia-shortcodes/iconlist/iconlist.js, config-templatebuilder/avia-shortcodes/iconlist/iconlist.css, config-templatebuilder/avia-shortcodes/iconlist/iconlist.php, config-templatebuilder/avia-shortcodes/slideshow_feature_image/slideshow_feature_image.php, config-templatebuilder/avia-shortcodes/slideshow_feature_image/slideshow_feature_image.css, config-templatebuilder/avia-shortcodes/events_upcoming/events_upcoming.css, config-templatebuilder/avia-shortcodes/events_upcoming/events_upcoming.php, config-templatebuilder/avia-shortcodes/masonry_gallery/masonry_gallery.php, config-templatebuilder/avia-shortcodes/timeline/timeline.js, config-templatebuilder/avia-shortcodes/timeline/timeline.php, config-templatebuilder/avia-shortcodes/timeline/timeline.css, config-templatebuilder/avia-shortcodes/page_split.php, config-templatebuilder/avia-shortcodes/portfolio/isotope.js, config-templatebuilder/avia-shortcodes/portfolio/portfolio.css, config-templatebuilder/avia-shortcodes/portfolio/portfolio.js, config-templatebuilder/avia-shortcodes/portfolio/portfolio.php, config-templatebuilder/avia-shortcodes/social_share/social_share.css, config-templatebuilder/avia-shortcodes/social_share/social_share.php, config-templatebuilder/avia-shortcodes/video/video.css, config-templatebuilder/avia-shortcodes/video/video.js, config-templatebuilder/avia-shortcodes/video/video.php, config-templatebuilder/avia-shortcodes/section/section.php, config-templatebuilder/avia-shortcodes/slideshow/slideshow.css, config-templatebuilder/avia-shortcodes/slideshow/slideshow.php, config-templatebuilder/avia-shortcodes/slideshow/slideshow.js, config-templatebuilder/avia-shortcodes/slideshow/slideshow-video.js, config-templatebuilder/avia-shortcodes/image/image.css, config-templatebuilder/avia-shortcodes/image/image.php, config-templatebuilder/avia-shortcodes/textblock/textblock.php, config-templatebuilder/avia-shortcodes/dropcaps.php, config-templatebuilder/avia-shortcodes/product_list.php, config-templatebuilder/avia-shortcodes/postcontent/postcontent.php, config-templatebuilder/avia-shortcodes/av-helper-masonry.php, config-templatebuilder/avia-shortcodes/progressbar/progressbar.php, config-templatebuilder/avia-shortcodes/progressbar/progressbar.css, config-templatebuilder/avia-shortcodes/progressbar/progressbar.js, config-templatebuilder/avia-shortcodes/leaflet_maps/leaflet_maps.php, config-templatebuilder/avia-shortcodes/leaflet_maps/leaflet_maps.css, config-templatebuilder/avia-shortcodes/icon/icon.css, config-templatebuilder/avia-shortcodes/icon/icon.php, config-templatebuilder/avia-shortcodes/search/search.php, config-templatebuilder/avia-shortcodes/search/search.css, config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.php, config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.js, config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.css, config-templatebuilder/avia-shortcodes/hr/hr.php, config-templatebuilder/avia-shortcodes/hr/hr.css, config-templatebuilder/avia-shortcodes/iconbox/iconbox.php, config-templatebuilder/avia-shortcodes/iconbox/iconbox.css, config-templatebuilder/avia-shortcodes/logoslider/logoslider.php, config-templatebuilder/avia-shortcodes/mailchimp/mailchimp.php, config-templatebuilder/avia-shortcodes/columns/columns.php, config-templatebuilder/avia-shortcodes/instagram_feed/instagram_feed.php, config-templatebuilder/avia-shortcodes/toggles/toggles.css, config-templatebuilder/avia-shortcodes/toggles/toggles.js, config-templatebuilder/avia-shortcodes/toggles/toggles.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_meta.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_review.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_button.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippets.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_upsells.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_tabs.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_price.php, config-templatebuilder/avia-shortcodes/product_snippets/product_snippet_info.php, config-templatebuilder/avia-shortcodes/numbers/numbers.css, config-templatebuilder/avia-shortcodes/numbers/numbers.php, config-templatebuilder/avia-shortcodes/numbers/numbers.js, config-templatebuilder/avia-shortcodes/audio-player/audio-player.css, config-templatebuilder/avia-shortcodes/audio-player/audio-player.php, config-templatebuilder/avia-shortcodes/audio-player/audio-player.js, config-templatebuilder/avia-shortcodes/promobox/promobox.php, config-templatebuilder/avia-shortcodes/promobox/promobox.css, config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.js, config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.css, config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.php, config-templatebuilder/avia-template-builder/config/meta.php, config-templatebuilder/avia-template-builder/config/javascript_strings.php, config-templatebuilder/avia-template-builder/config/pointers.php, config-templatebuilder/avia-template-builder/template-builder.php, config-templatebuilder/avia-template-builder/assets/js/avia-history.js, config-templatebuilder/avia-template-builder/assets/js/avia-element-behavior.js, config-templatebuilder/avia-template-builder/assets/js/avia-tinymce-buttons.js, config-templatebuilder/avia-template-builder/assets/js/avia-table.js, config-templatebuilder/avia-template-builder/assets/js/avia-custom-elements.js, config-templatebuilder/avia-template-builder/assets/js/avia-modal.js, config-templatebuilder/avia-template-builder/assets/js/avia-tooltip.js, config-templatebuilder/avia-template-builder/assets/js/avia-tab-section.js, config-templatebuilder/avia-template-builder/assets/js/avia-media.js, config-templatebuilder/avia-template-builder/assets/js/avia-tinymce-linebreak.js, config-templatebuilder/avia-template-builder/assets/js/avia-tinymce-buttons-4.js, config-templatebuilder/avia-template-builder/assets/js/avia-tab-toggle.js, config-templatebuilder/avia-template-builder/assets/js/avia-template-saving.js, config-templatebuilder/avia-template-builder/assets/js/avia-builder.js, config-templatebuilder/avia-template-builder/assets/css/avia-modal.css, config-templatebuilder/avia-template-builder/assets/css/avia-builder.css, config-templatebuilder/avia-template-builder/assets/css/avia-builder-rtl.css, config-templatebuilder/avia-template-builder/assets/css/avia-custom-elements.css, config-templatebuilder/avia-template-builder/assets/css/avia-media.css, config-templatebuilder/avia-template-builder/assets/fonts/config.json, config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff2, config-templatebuilder/avia-template-builder/assets/fonts/charmap-compat.php, config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.svg, config-templatebuilder/avia-template-builder/assets/fonts/charmap.php, config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.eot, config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.ttf, config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff, config-templatebuilder/avia-template-builder/assets/dividers/pyramids-negative.svg, config-templatebuilder/avia-template-builder/assets/dividers/clouds.svg, config-templatebuilder/avia-template-builder/assets/dividers/arrow-negative.svg, config-templatebuilder/avia-template-builder/assets/dividers/curve-asymmetrical.svg, config-templatebuilder/avia-template-builder/assets/dividers/triangle-negative.svg, config-templatebuilder/avia-template-builder/assets/dividers/drops.svg, config-templatebuilder/avia-template-builder/assets/dividers/split.svg, config-templatebuilder/avia-template-builder/assets/dividers/split-negative.svg, config-templatebuilder/avia-template-builder/assets/dividers/waves.svg, config-templatebuilder/avia-template-builder/assets/dividers/opacity-tilt.svg, config-templatebuilder/avia-template-builder/assets/dividers/curve-negative.svg, config-templatebuilder/avia-template-builder/assets/dividers/triangle.svg, config-templatebuilder/avia-template-builder/assets/dividers/book.svg, config-templatebuilder/avia-template-builder/assets/dividers/book-negative.svg, config-templatebuilder/avia-template-builder/assets/dividers/arrow.svg, config-templatebuilder/avia-template-builder/assets/dividers/mountains.svg, config-templatebuilder/avia-template-builder/assets/dividers/waves-pattern.svg, config-templatebuilder/avia-template-builder/assets/dividers/waves-negative.svg, config-templatebuilder/avia-template-builder/assets/dividers/curve.svg, config-templatebuilder/avia-template-builder/assets/dividers/triangle-asymmetrical-negative.svg, config-templatebuilder/avia-template-builder/assets/dividers/opacity-fan.svg, config-templatebuilder/avia-template-builder/assets/dividers/zigzag.svg, config-templatebuilder/avia-template-builder/assets/dividers/wave-brush.svg, config-templatebuilder/avia-template-builder/assets/dividers/tilt.svg, config-templatebuilder/avia-template-builder/assets/dividers/triangle-asymmetrical.svg, config-templatebuilder/avia-template-builder/assets/dividers/pyramids.svg, config-templatebuilder/avia-template-builder/assets/dividers/drops-negative.svg, config-templatebuilder/avia-template-builder/assets/dividers/curve-asymmetrical-negative.svg, config-templatebuilder/avia-template-builder/assets/dividers/clouds-negative.svg, config-templatebuilder/avia-template-builder/php/class-html-helper.php, config-templatebuilder/avia-template-builder/php/class-shortcode-helper.php, config-templatebuilder/avia-template-builder/php/class-svg-shapes.php, config-templatebuilder/avia-template-builder/php/class-asset-manager.php, config-templatebuilder/avia-template-builder/php/class-media.php, config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-callback.php, config-templatebuilder/avia-template-builder/php/base-classes/class-element-styling-base.php, config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-base.php, config-templatebuilder/avia-template-builder/php/base-classes/class-element-styling-rules.php, config-templatebuilder/avia-template-builder/php/class-storage-post.php, config-templatebuilder/avia-template-builder/php/class-post-css-management.php, config-templatebuilder/avia-template-builder/php/class-tiny-button.php, config-templatebuilder/avia-template-builder/php/external/JSqueeze.php, config-templatebuilder/avia-template-builder/php/class-front-templates.php, config-templatebuilder/avia-template-builder/php/class-save-buildertemplate.php, config-templatebuilder/avia-template-builder/php/class-popup-templates.php, config-templatebuilder/avia-template-builder/php/class-element-styling.php, config-templatebuilder/avia-template-builder/php/class-element-templates.php, config-templatebuilder/avia-template-builder/php/class-shortcode-template.php, config-templatebuilder/avia-template-builder/php/traits/trait-sc-button-styles.php, config-templatebuilder/avia-template-builder/php/traits/trait-sc-named-colors.php, config-templatebuilder/avia-template-builder/php/class-meta-box.php, config-templatebuilder/avia-template-builder/php/class-shortcode-parser.php, config-templatebuilder/avia-template-builder/php/class-font-manager.php, config-templatebuilder/avia-template-builder/php/class-generic-helper.php, config-templatebuilder/avia-template-builder/php/class-pointer.php, config-templatebuilder/avia-template-builder/php/class-template-builder.php, config-templatebuilder/avia-template-builder/php/class-element-manager.php, config-templatebuilder/avia-template-builder/images/sc-submenu.png, config-templatebuilder/avia-template-builder/images/icon-store.png, config-templatebuilder/avia-template-builder/images/sc-testimonials.png, config-templatebuilder/avia-template-builder/images/tiny_line_break.png, config-templatebuilder/avia-template-builder/images/sc-promobox.png, config-templatebuilder/avia-template-builder/images/sc-button.png, config-templatebuilder/avia-template-builder/images/sc-partner.png, config-templatebuilder/avia-template-builder/images/placeholder-audio.png, config-templatebuilder/avia-template-builder/images/sc-audio-player.png, config-templatebuilder/avia-template-builder/images/icon-edit.png, config-templatebuilder/avia-template-builder/images/sc-heading.png, config-templatebuilder/avia-template-builder/images/sc-progressbar.png, config-templatebuilder/avia-template-builder/images/sc-fifth.png, config-templatebuilder/avia-template-builder/images/sc-slideshow-layer.png, config-templatebuilder/avia-template-builder/images/iconswitcher/phablet.png, config-templatebuilder/avia-template-builder/images/iconswitcher/desktop.png, config-templatebuilder/avia-template-builder/images/iconswitcher/tablet-landscape.png, config-templatebuilder/avia-template-builder/images/iconswitcher/tablet-portrait.png, config-templatebuilder/avia-template-builder/images/iconswitcher/mobile.png, config-templatebuilder/avia-template-builder/images/sc-tabsection.png, config-templatebuilder/avia-template-builder/images/sc-masonry-gallery.png, config-templatebuilder/avia-template-builder/images/layout-fullwidth.png, config-templatebuilder/avia-template-builder/images/layout-slideshow.png, config-templatebuilder/avia-template-builder/images/sc-image-hotspot.png, config-templatebuilder/avia-template-builder/images/sc-gallery.png, config-templatebuilder/avia-template-builder/images/sc-fullscreen.png, config-templatebuilder/avia-template-builder/images/sc-codeblock.png, config-templatebuilder/avia-template-builder/images/sc-postcontent.png, config-templatebuilder/avia-template-builder/images/placeholder-full.jpg, config-templatebuilder/avia-template-builder/images/sc-masonry.png, config-templatebuilder/avia-template-builder/images/placeholder.jpg, config-templatebuilder/avia-template-builder/images/sc-contentslider.png, config-templatebuilder/avia-template-builder/images/sc-post-metadata.png, config-templatebuilder/avia-template-builder/images/icon-template.png, config-templatebuilder/avia-template-builder/images/sc-accordion-slider.png, config-templatebuilder/avia-template-builder/images/sc-half.png, config-templatebuilder/avia-template-builder/images/sc-timeline.png, config-templatebuilder/avia-template-builder/images/sc-video.png, config-templatebuilder/avia-template-builder/images/sc-two_fifth.png, config-templatebuilder/avia-template-builder/images/sc-layout_row.png, config-templatebuilder/avia-template-builder/images/sc-full.png, config-templatebuilder/avia-template-builder/images/icon-leftright.png, config-templatebuilder/avia-template-builder/images/sc-accordion.png, config-templatebuilder/avia-template-builder/images/sc-third.png, config-templatebuilder/avia-template-builder/images/sc-price.png, config-templatebuilder/avia-template-builder/images/icon-trash-side.png, config-templatebuilder/avia-template-builder/images/sc-icon_box.png, config-templatebuilder/avia-template-builder/images/icon-add.png, config-templatebuilder/avia-template-builder/images/icon-table-ud.png, config-templatebuilder/avia-template-builder/images/sc-slideshow.png, config-templatebuilder/avia-template-builder/images/sc-slideshow-full.png, config-templatebuilder/avia-template-builder/images/icon-trash.png, config-templatebuilder/avia-template-builder/images/placeholder-image.png, config-templatebuilder/avia-template-builder/images/sc-four_fifth.png, config-templatebuilder/avia-template-builder/images/sc-comments.png, config-templatebuilder/avia-template-builder/images/icon-shrink.png, config-templatebuilder/avia-template-builder/images/icon-expand.png, config-templatebuilder/avia-template-builder/images/layout-right.png, config-templatebuilder/avia-template-builder/images/sc-search.png, config-templatebuilder/avia-template-builder/images/sc-fourth.png, config-templatebuilder/avia-template-builder/images/sc-portfolio.png, config-templatebuilder/avia-template-builder/images/icon-undo.png, config-templatebuilder/avia-template-builder/images/sc-tabs.png, config-templatebuilder/avia-template-builder/images/loading.gif, config-templatebuilder/avia-template-builder/images/sc-icongrid.png, config-templatebuilder/avia-template-builder/images/icon-clone.png, config-templatebuilder/avia-template-builder/images/sc-iconlist.png, config-templatebuilder/avia-template-builder/images/sc-social.png, config-templatebuilder/avia-template-builder/images/icon-move.png, config-templatebuilder/avia-template-builder/images/sc-three_fifth.png, config-templatebuilder/avia-template-builder/images/icon-cut.png, config-templatebuilder/avia-template-builder/images/icon-add-nohover.png, config-templatebuilder/avia-template-builder/images/sc-sixth.png, config-templatebuilder/avia-template-builder/images/sc-notification.png, config-templatebuilder/avia-template-builder/images/sc-magazine.png, config-templatebuilder/avia-template-builder/images/sc-text_block.png, config-templatebuilder/avia-template-builder/images/sc-team.png, config-templatebuilder/avia-template-builder/images/sc-hr.png, config-templatebuilder/avia-template-builder/images/sc-numbers.png, config-templatebuilder/avia-template-builder/images/bg-button.png, config-templatebuilder/avia-template-builder/images/icon-table-lr.png, config-templatebuilder/avia-template-builder/images/icon-hotkey.png, config-templatebuilder/avia-template-builder/images/icon-redo.png, config-templatebuilder/avia-template-builder/images/sc-blog.png, config-templatebuilder/avia-template-builder/images/sc-countdown.png, config-templatebuilder/avia-template-builder/images/sc-sidebar.png, config-templatebuilder/avia-template-builder/images/loading_mini.gif, config-templatebuilder/avia-template-builder/images/sc-instagram-feed.png, config-templatebuilder/avia-template-builder/images/icon-grow.png, config-templatebuilder/avia-template-builder/images/sc-section.png, config-templatebuilder/avia-template-builder/images/sc-three_fourth.png, config-templatebuilder/avia-template-builder/images/sc-two_third.png, config-templatebuilder/avia-template-builder/images/sc-maps.png, config-templatebuilder/avia-template-builder/images/sc-table.png, config-templatebuilder/avia-template-builder/images/icon-info.png, config-templatebuilder/avia-template-builder/images/layout-left.png, config-templatebuilder/avia-template-builder/images/sc-catalogue.png, config-templatebuilder/avia-template-builder/images/sc-icon.png, config-templatebuilder/avia-template-builder/images/sc-leaflet-maps.png, config-templatebuilder/avia-template-builder/images/tiny-button.png, config-templatebuilder/avia-template-builder/images/sc-contact.png, config-templatebuilder/avia-template-builder/images/sc-image.png, config-templatebuilder/avia-template-builder/images/sc-postslider.png, config-templatebuilder/avia-template-builder/images/sc-buttonrow.png, config-templatebuilder/avia-template-builder/images/placeholder-video.png, config-templatebuilder/avia-template-builder/images/select.png, config-templatebuilder/config.php, screenshot.png, index.php, 404.php, css/shortcodes.css, css/avia-snippet-site-preloader.css, css/rtl.css, css/base.css, css/admin-preview.css, css/dynamic-css.php, css/grid.css, css/layout.css, css/avia-snippet-cookieconsent.css, css/avia-snippet-widget.css, css/custom.css, css/avia-snippet-lightbox.css, includes/class-avia-custom-pages.php, includes/loop-comments.php, includes/loop-author.php, includes/loop-page.php, includes/helper-assets.php, includes/helper-template-logic.php, includes/loop-about-author.php, includes/helper-privacy.php, includes/helper-post-format.php, includes/admin/register-backend-advanced-styles.php, includes/admin/register-demo-import.php, includes/admin/register-admin-options.php, includes/admin/register-dynamic-styles.php, includes/admin/option_tabs/avia_blog.php, includes/admin/option_tabs/avia_layout.php, includes/admin/option_tabs/avia_avia.php, includes/admin/option_tabs/avia_social.php, includes/admin/option_tabs/avia_seo.php, includes/admin/option_tabs/avia_google.php, includes/admin/option_tabs/avia_element_templates.php, includes/admin/option_tabs/avia_upload.php, includes/admin/option_tabs/avia_styling.php, includes/admin/option_tabs/avia_performance.php, includes/admin/option_tabs/avia_menu.php, includes/admin/option_tabs/avia_footer.php, includes/admin/option_tabs/avia_shop.php, includes/admin/option_tabs/avia_customizer.php, includes/admin/option_tabs/avia_ext_leaflet_maps.php, includes/admin/option_tabs/avia_builder.php, includes/admin/option_tabs/avia_ext_avia_ext.php, includes/admin/option_tabs/avia_header.php, includes/admin/option_tabs/avia_cookie.php, includes/admin/option_tabs/avia_newsletter.php, includes/admin/option_tabs/avia_sidebars.php, includes/admin/option_tabs/avia_demo.php, includes/admin/register-admin-metabox.php, includes/admin/helper-compat-update.php, includes/admin/register-backend-styles.php, includes/admin/register-widget-area.php, includes/admin/register-portfolio.php, includes/admin/demo_files/default.php, includes/admin/demo_files/default.xml, includes/admin/demo_files/demo_images/default.jpg, includes/helper-conditional-megamenu.php, includes/related-posts.php, includes/helper-markup.php, includes/loop-search.php, includes/helper-social-media.php, includes/loop-portfolio-single.php, includes/loop-index.php, includes/error404.php, includes/helper-responsive-megamenu.php, includes/helper-main-menu.php, config-gutenberg/class-avia-gutenberg-theme-integration.php, config-gutenberg/class-avia-gutenberg.php, config-gutenberg/js/avia_blocks_front.js, config-gutenberg/js/avia_gutenberg.js, config-gutenberg/css/avia-gutenberg-editor.css, config-gutenberg/css/avia_gutenberg.css, config-gutenberg/class-avia-gutenberg-dynamic-styles.php, config-layerslider/config.php, template-builder.php, author.php, comments.php, template-blank.php, config-menu-exchange/config.php, single-portfolio.php, sidebar.php, tag.php, taxonomy-portfolio_entries.php, wpml-config.xml, forum.php, template-archives.php, page.php, functions-enfold.php, framework/avia_framework.php, framework/js/avia_mega_menu.js, framework/js/deprecated/avia_edit_dynamic_templtes.js, framework/js/deprecated/avia_dynamic_templates.js, framework/js/avia_media_wp35.js, framework/js/avia_advanced_form_elements.js, framework/js/avia_option_pages.js, framework/js/conditional_load/avia_google_recaptcha_front.js, framework/js/conditional_load/avia_conditional_mega_menu.js, framework/js/conditional_load/avia_facebook_front.js, framework/js/conditional_load/avia_google_maps_api.js, framework/js/conditional_load/avia_google_maps_front.js, framework/js/conditional_load/avia_google_recaptcha_api.js, framework/js/conditional_load/avia_google_maps_widget_admin.js, framework/js/avia_media.js, framework/js/avia_media_advanced.js, framework/js/avia_sidebar.js, framework/js/avia_colorpicker.js, framework/css/avia_colorpicker.css, framework/css/avia_sidebar.css, framework/css/avia_admin.css, framework/css/conditional_load/avia_global_admin.css, framework/css/conditional_load/avia_admin_modern.css, framework/css/conditional_load/avia_gallery_mode.css, framework/php/class-breadcrumb-trail.php, framework/php/class-gmaps.php, framework/php/function-set-avia-frontend.php, framework/php/class-metabox.php, framework/php/legacy/class-tgm-plugin-activation.php, framework/php/inc-autoconfig.php, framework/php/function-set-avia-backend.php, framework/php/class-media.php, framework/php/class-form-generator.php, framework/php/class-htmlhelper.php, framework/php/class-update-notifier.php, framework/php/class-adminpages.php, framework/php/auto-updates/class-envato-protected-api.php, framework/php/auto-updates/class-avia-theme-updater.php, framework/php/auto-updates/class-avia-envato-base-api.php, framework/php/auto-updates/class-pixelentity-theme-update.php, framework/php/auto-updates/auto-updates.php, framework/php/class-responsive-images.php, framework/php/class-database-option-sets.php, framework/php/class-sidebar-generator.php, framework/php/class-breadcrumb-legacy.php, framework/php/class-style-generator.php, framework/php/class-framework-widgets.php, framework/php/wordpress-importer/avia-export-class.php, framework/php/wordpress-importer/avia-import-class.php, framework/php/wordpress-importer/wordpress-importer.php, framework/php/wordpress-importer/parsers.php, framework/php/class-megamenu.php, framework/php/class-grecaptcha.php, framework/php/class-queryfilter.php, framework/php/font-management/class-avia-icon-fonts.php, framework/php/font-management/class-avia-type-fonts.php, framework/php/font-management/class-avia-font-management-base.php, framework/php/class-superobject.php, framework/php/avia_shortcodes/av-prev.php, framework/php/avia_shortcodes/tinymce/editor_plugin_3.js, framework/php/avia_shortcodes/tinymce/img/icon.png, framework/php/avia_shortcodes/tinymce/js/tab-control.js, framework/php/avia_shortcodes/tinymce/js/dialog.js, framework/php/avia_shortcodes/tinymce/js/column-control.js, framework/php/avia_shortcodes/tinymce/js/sidebar-tab-control.js, framework/php/avia_shortcodes/tinymce/js/table-control.js, framework/php/avia_shortcodes/tinymce/editor_plugin.js, framework/php/avia_shortcodes/tinymce/dialog.php, framework/php/avia_shortcodes/img/checkmark.gif, framework/php/avia_shortcodes/img/preloader.gif, framework/php/avia_shortcodes/img/x.gif, framework/php/avia_shortcodes/img/globe-preloader.gif, framework/php/avia_shortcodes/css/styles.css, framework/php/avia_shortcodes/shortcodes.php, framework/php/avia_shortcodes/sc/latest_portfolio.js, framework/php/avia_shortcodes/sc/tab.js, framework/php/avia_shortcodes/sc/iconbox_top.js, framework/php/avia_shortcodes/sc/latest_posts.js, framework/php/avia_shortcodes/sc/box.js, framework/php/avia_shortcodes/sc/column.js, framework/php/avia_shortcodes/sc/big_box.js, framework/php/avia_shortcodes/sc/digg.js, framework/php/avia_shortcodes/sc/table.js, framework/php/avia_shortcodes/sc/related.js, framework/php/avia_shortcodes/sc/sidebar_tabs.js, framework/php/avia_shortcodes/sc/twitter.js, framework/php/avia_shortcodes/sc/button.js, framework/php/avia_shortcodes/sc/toggle.js, framework/php/avia_shortcodes/sc/fblike.js, framework/php/avia_shortcodes/sc/iconbox.js, framework/php/avia_shortcodes/sc/latest_tweets.js, framework/php/avia_shortcodes/sc/tweetmeme.js, framework/php/avia_shortcodes/sc/slider.js, framework/php/avia_shortcodes/sc/quote.js, framework/php/avia_shortcodes/sc/ilink.js, framework/php/inc-avia-importer.php, framework/php/function-set-avia-ajax.php, framework/php/inc-avia-download-demo.php, framework/images/misc/grecaptcha-check-light-compact.png, framework/images/misc/placeholder.jpg, framework/images/misc/grecaptcha-check-light-normal.png, framework/images/misc/grecaptcha-check-dark-compact.png, framework/images/misc/grecaptcha-check-dark-normal.png, framework/images/icons/social_facebook.png, framework/images/icons/wand.png, framework/images/icons/video.png, framework/images/icons/video_insert_image.png, framework/images/icons/alert.png, framework/images/icons/social_flickr.png, framework/images/icons/images.png, framework/images/icons/social_twitter.png, framework/images/icons/doc_text_image.png, framework/images/icons/blog.png, framework/images/icons/layout_select.png, framework/images/icons/book_addresses.png, framework/images/icons/error.png, framework/images/icons/brick.png, framework/images/icons/update.png, framework/images/icons/paintbrush.png, framework/images/icons/paintcan.png, framework/images/icons/icon-trash.png, framework/images/icons/layout_select_footer.png, framework/images/icons/application_side_expand.png, framework/images/icons/loading.gif, framework/images/icons/cog.png, framework/images/icons/layout_select_sidebar.png, framework/images/icons/close.png, framework/images/icons/photo_album.png, framework/images/icons/cart.png,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) ,  (Email address hidden if logged out) , framework/images/icons/map.png, framework/images/icons/loading_mini.gif, framework/images/icons/bin_closed.png, framework/images/icons/user.png, framework/images/icons/hammer_screwdriver.png, framework/images/icons/search.png, framework/images/icons/success.png, framework/images/icons/blueprint_horizontal.png, framework/images/icons/readme.txt, framework/images/icons/page_white_wrench.png, framework/images/icons/import_export.png, framework/images/icons/palette.png, framework/images/icons/layout_header_footer_3_mix.png, framework/images/icons/accept.png, framework/images/icons/add.png, framework/images/colorpicker/custom_submit.png, framework/images/colorpicker/colorpicker_hsb_h.png, framework/images/colorpicker/custom_indic.gif, framework/images/colorpicker/custom_hsb_b.png, framework/images/colorpicker/custom_hsb_s.png, framework/images/colorpicker/colorpicker_select.gif, framework/images/colorpicker/custom_rgb_r.png, framework/images/colorpicker/colorpicker_indic.gif, framework/images/colorpicker/colorpicker_hsb_b.png, framework/images/colorpicker/custom_background.png, framework/images/colorpicker/colorpicker_rgb_r.png, framework/images/colorpicker/select2.png, framework/images/colorpicker/custom_rgb_b.png, framework/images/colorpicker/slider.png, framework/images/colorpicker/colorpicker_hsb_s.png, framework/images/colorpicker/custom_hex.png, framework/images/colorpicker/custom_hsb_h.png, framework/images/colorpicker/colorpicker_background.png, framework/images/colorpicker/colorpicker_hex.png, framework/images/colorpicker/colorpicker_overlay.png, framework/images/colorpicker/colorpicker_rgb_g.png, framework/images/colorpicker/blank.gif, framework/images/colorpicker/colorpicker_submit.png, framework/images/colorpicker/colorpicker_rgb_b.png, framework/images/colorpicker/custom_rgb_g.png, framework/images/colorpicker/select.png, framework/images/layout/bg.png, framework/images/layout/select_colorpicker.png, framework/images/layout/FIND_API.jpg, framework/images/layout/sort_arrow_down.png, framework/images/layout/menu-bits.gif, framework/images/layout/bg-style-wrap.png, framework/images/layout/gray-grad.png, framework/images/layout/bg-button.png, framework/images/layout/bg-bottom-shadow.png, framework/images/layout/diagonal-bold-light.png, framework/images/layout/arrow.png, framework/images/layout/transparency.png, framework/images/layout/select.png, lang/tr_TR.po, lang/es_ES.mo, lang/de_AT.po, lang/sk_SK.po, lang/sv_SE.po, lang/sv_SE.mo, lang/ru_RU.mo, lang/zh_CN.po, lang/de_DE_formal.po, lang/pt_BR.po, lang/ar.mo, lang/hu_HU.mo, lang/cs_CZ.mo, lang/sk_SK.mo, lang/es_ES.po, lang/ko_KR.po, lang/de_DE.po, lang/hu_HU.po, lang/zh_CN.mo, lang/ja.po, lang/nb_NO.po, lang/nb_NO.mo, lang/zh_TW.po, lang/fr_FR.po, lang/enfold.pot, lang/ar.po, lang/ko_KR.mo, lang/pt_BR.mo, lang/ja.mo, lang/de_CH.mo, lang/de_DE_formal.mo, lang/ru_RU.po, lang/he_IL.mo, lang/it_IT.mo, lang/da_DK.po, lang/it_IT.po, lang/ro_RO.mo, lang/zh_TW.mo, lang/da_DK.mo, lang/pl_PL.po, lang/de_DE.mo, lang/fa_IR.po, lang/de_AT.mo, lang/nl_NL.po, lang/fr_FR.mo, lang/fa_IR.mo, lang/ro_RO.po, lang/cs_CZ.po, lang/nl_NL.mo, lang/ca.mo, lang/tr_TR.mo, lang/pl_PL.mo, lang/el_GR.mo, lang/el_GR.po, lang/de_CH.po, lang/ca.po, lang/he_IL.po, footer.php, images/background-images/grid-big-light.png, images/background-images/gradient-bottom-light.png, images/background-images/wool-for-light-background.png, images/background-images/wood-dark.png, images/background-images/grunge-dark.png, images/background-images/grunge-big-light.png, images/background-images/gradient-top-dark.png, images/background-images/grunge-big-dark.png, images/background-images/dots-mini-strong.png, images/background-images/linen-for-light-background.png, images/background-images/dots-for-light-background.png, images/background-images/wood-light.png, images/background-images/diagonal-bold-dark.png, images/background-images/wool-diagonal-for-light-background.png, images/background-images/noise-for-light-background.png, images/background-images/floral-light.png, images/background-images/gradient-top-light.png, images/background-images/dots-for-dark-background.png, images/background-images/grain_bottom.png, images/background-images/diagonal-thin-light.png, images/background-images/grain_top.png, images/background-images/dashed-cross-dark.png, images/background-images/linen-for-dark-background.png, images/background-images/polygon.png, images/background-images/diagonal-thin-dark.png, images/background-images/ios-linen-dark.png, images/background-images/floral-dark.png, images/background-images/grunge-light.png, images/background-images/dashed-cross-light.png, images/background-images/wool-for-dark-background.png, images/background-images/wool-diagonal-for-dark-background.png, images/background-images/diagonal-bold-light.png, images/background-images/dots-mini-light.png, images/background-images/fullsize-grunge.jpg, images/background-images/grid-big-dark.png, images/background-images/noise-for-dark-background.png, images/background-images/gradient-bottom-dark.png, images/background-images/ios-linen-light.png, images/framework-helper/header_transparency.jpg, images/layout/blank.png, images/layout/fake_facebook.jpg, images/layout/logo.png, images/layout/ie_trans.png, images/layout/preload-dark-big-old.gif, images/layout/logo_modern.png, images/layout/loading.gif, images/layout/bg-button.png, images/layout/search.png, images/layout/preload-dark-grey-big.gif, images/layout/preload-dark-big.gif, config-leaflet-maps/class-avia-leaflet-maps.php, config-leaflet-maps/js/avia-leaflet-maps.js, config-leaflet-maps/assets/leafletjs/leaflet-src.esm.js, config-leaflet-maps/assets/leafletjs/leaflet.css, config-leaflet-maps/assets/leafletjs/leaflet.js, config-leaflet-maps/assets/leafletjs/leaflet-src.esm.js.map, config-leaflet-maps/assets/leafletjs/leaflet-src.js.map, config-leaflet-maps/assets/leafletjs/leaflet.js.map, config-leaflet-maps/assets/leafletjs/leaflet-src.js, config-leaflet-maps/assets/leafletjs/images/layers.png, config-leaflet-maps/assets/leafletjs/images/marker-shadow.png, config-leaflet-maps/assets/leafletjs/images/marker-icon-2x.png, config-leaflet-maps/assets/leafletjs/images/layers-2x.png, config-leaflet-maps/assets/leafletjs/images/marker-icon.png, config-wpml/wpml-mod.js, config-wpml/config_legacy.php, config-wpml/config.php, config-wpml/FacebookLocales.xml, config-wpml/class-avia-wpml.php, config-wpml/wpml-mod.css
    All updates have been completed.
    
    Go Back to Enfold Child ABEA Theme Panel

    Also, I contacted my host. I can whitelist an IP address, not an API. Where do I get the Envato IP address?

    #1316667
    orianos
    Participant

    I used the indications of this topic:
    https://kriesi.at/support/topic/enfold-4-8-3-social-media-buttons-on-product-page-not-displayed-correctly/
    on two sites.
    I don’t understand why the “tooltip” behaves differently (see please screenshot site 1 and screenshot site2 :(

    How do to have the tooltip at the top of the share button (like site1) on both sites?
    Please find the links of the 2 sites in Private content.

    Best regards
    Oriano

    Hi Mike, with 55 px its looks nice. Thanks,
    Possible, Kriesi integrate the button inside an own container or something else? I think, all the Enfold-User have this issue?

    Can you answer question #2 as well? Is an element there, what can create such behavior?

    Best regards

    S

    • This reply was modified 4 years, 6 months ago by Hokuspokus.
    hbaumhardt
    Participant

    Wordpress 5.8 Enfold child 4.8.4

    I do not want the cookibar modal/overlay on all page footers, but need to include the [av_privacy_modal_popup_button] shortcode in a Privacy policy so users can manage their cookies.

    Using functions.php add_theme_support(‘avia_gdpr_permanent_hide_message_bar’); does not seem to suppress the footer cooke bar, which is clearly conflicting with something else in the site as it always loads expanded and the buttons are inconsistent. Looks like this:

    Enfold cookie consent bar always open or in relatime skkmods.com

    So two questions:
    (1) What do I need to do to force the site to respect avia_gdpr_permanent_hide_message_bar suppress ?
    (2) Any idea what may be causing the cookiebar expansion ?

    • This topic was modified 4 years, 7 months ago by hbaumhardt.
    #1316378

    In reply to: Advanced Layout Editor

    Hi,

    Thank you for the inquiry.

    The button displays back when we disable the mtn_setup_theme function in the child theme’s functions.php file. The function limits the ALE to the mtn-faq post type. You may need to use the avf_alb_supported_post_types filter instead.

    Examples:

    // https://kriesi.at/support/topic/custom-post-type-not-displaying-correctly/#post-1299723
    // https://kriesi.at/support/topic/pods-enfold-advanced-layout-editor/#post-1281976

    Best regards,
    Ismael

    sagar kumar sahu
    Guest

    Hi Team,
    we have got a project from our client 2 months back and it’s based on ENFOLD theme and it really going well but a few days back I am getting an error “there is a critical issue in your site”, while click on customize button so we are now stuck in development, also we got an error mail from WordPress so please look into it and help us, we also don’t know about Genuity of the theme because we sign the product in the midway of development, we are also ready to pay for resolution please find out below error and contact if any (Email address hidden if logged out) , +917008035073

    Error Mail:
    Howdy!

    Since WordPress 5.2 there is a built-in feature that detects when a plugin or theme causes a fatal error on your site and notifies you with this automated email.

    In this case, WordPress caught an error with your theme, Enfold.

    First, visit your website (https://www.happymovermsct.com/) and check for any visible issues. Next, visit the page where the error was caught (https://www.happymovermsct.com/wp-admin/customize.php?url=https%3A%2F%2Fwww.happymovermsct.com%2F) and check for any visible issues.

    Please contact your host for assistance with investigating this issue further.(already contacted to host partner and they said theme issue )

    If your site appears broken and you can’t access your dashboard normally, WordPress now has a special “recovery mode”. This lets you safely log in to your dashboard and investigate further.

    https://www.happymovermsct.com/wp-login.php?action=enter_recovery_mode&rm_token=2j5RKG2vmwacHi5LZ2EoPE&rm_key=CR4tVkl970GMnMDNA8sjNg

    To keep your site safe, this link will expire in 1 day. Don’t worry about that, though: a new link will be emailed to you if the error occurs again after it expires.

    When seeking help with this issue, you may be asked for some of the following information:
    WordPress version 5.8
    Current theme: Enfold (version 4.6.3.1)
    Current plugin: (version )
    PHP version 7.4.22

    Error Details
    =============
    An error of type E_ERROR was caused in line 619 of the file /home/webclexc/happymovermsct.com/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php. Error message: Uncaught TypeError: Argument 2 passed to Avia_Gutenberg::handler_display_post_states() must be an instance of WP_Post, null given, called in /home/webclexc/happymovermsct.com/wp-includes/class-wp-hook.php on line 303 and defined in /home/webclexc/happymovermsct.com/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php:619
    Stack trace:
    #0 /home/webclexc/happymovermsct.com/wp-includes/class-wp-hook.php(303): Avia_Gutenberg->handler_display_post_states(Array, NULL)
    #1 /home/webclexc/happymovermsct.com/wp-includes/plugin.php(189): WP_Hook->apply_filters(Array, Array)
    #2 /home/webclexc/happymovermsct.com/wp-admin/includes/template.php(2239): apply_filters(‘display_post_st…’, Array, NULL)
    #3 /home/webclexc/happymovermsct.com/wp-includes/nav-menu.php(831): get_post_states(NULL)
    #4 [internal function]: wp_setup_nav_menu_item(Object(WP_Post))
    #5 /home/webclexc/happymovermsct.com/wp-includes/nav-menu.php(755): array_map(‘wp_setup_nav_me…’, Array)
    #6 /home/webclexc/happymovermsct.com/wp-content/plugins/

    ihawkr14
    Participant

    Hello Enfold,

    I am having some sort of issue between WooCommerce, Ultimate Woo Auctions Plugin, and Enfold Theme. When selecting the ‘-‘ or’+’ buttons, the quantity in the amount box shows as ‘NaN’ instead of a numerical value, I’ve reached out to the dev of the plugin, and he said it seems to be an issue with Enfold theme wanting to use it’s own quantity selectors?
    screenshot

    I’m not very tech-savvy when it comes to coding so I’m hoping to find a simple workaround to make this function correctly.

    Thank you!

    • This topic was modified 4 years, 7 months ago by ihawkr14. Reason: image not loading
    #1316048

    Hey Thomas,

    Thanks for contacting us.

    The post css files hold custom stylings for ALB elements that had been placed inline html style=”..” before.
    We started to change this with 4.8.4 for 2 main reasons:

    – make the code for the elements better maintainable and readable (and keep it stable) because creating the stylings and layout html has been seperated
    – we started to add more styling possibilities to elements like button, notification box, section, columns, … (and will continue with it in oncoming versions) and inline styles do not support everything (e.g hover effects, …)

    If you check the HTML of a page you will find the link to the css file:

    
    <link rel='stylesheet' id='avia-single-post-206-css'  href='http://localhost/wp56/wp-content/uploads/avia_posts_css/post-206.css?ver=ver-1628531209' type='text/css' media='all' />
    

    The “ver=…..” is a unique timestamp that is generated when the css file is generated (once on first page load or when it had been invalidated).

    The css file(s) are invalidated:
    – when a page/post/… is updated
    – when saving theme options
    – when theme is updated (action ava_after_theme_update is triggered)

    With 4.8.6.1 we added filter avf_post_css_create_file to skip generating these files and add it in

    <style>..</style>

    tags:

    see https://github.com/KriesiMedia/enfold-library/blob/master/actions%20and%20filters/Performance/avf_post_css_create_file.php

    So on developing sites you can use the filter, on live sites after changing files save theme options and clear server cache should do.

    Best regards,
    Günter

    Hokuspokus
    Participant

    Can you please show new features in a video? It doesn’t even have to have sound, only show features and show options. Or speak in pictures in a PDF. It would be desirable to show more information about tweaks, bugs and new features for your users. Also, you would have content for YouTube right away, and you would be doing your users a huge favor. User can hardly see the abundance of improvements from a changelog.

    What’s behind: (As singles examples). Every user of enfold must determine the new features. But if you show all in a short video, this would be faster for all instead to try all objects. The most is for normal users cryptic stuff, hard to understand. It’s developer language.

    “tweak: columns – backwards comp padding 0px as default only adding class av-zero-column-padding and no styling”: “bugs”
    “feature: new option “image size” for ALB Masonry Gallery”
    Following elements have been updated (not with all options), will be extended:

    – Animated Numbers (sonar effect, circle border styles when with circle)
    – Button
    – Button Row
    – Columns (SVG Dividers)
    – Fullwidth Button
    – Icon (only custom sonar effect when with border)
    – Icon List
    – Notification Box
    – PromoBox
    – Sections (SVG Dividers)
    – Special Heading (new color options only)
    – Testimonials (new font color)

    Thx,

    S.

    xuamox
    Participant

    Hi,

    I have an Enfold footer with three columns. In first two columns, I have Custom HTML widget(s). The third column uses the sitemap widget.

    The first column has text (1 widget)
    The second column has some text and HTML code for a button and some HTML code for social media icons (2 widgets)
    The third column is a sitemap (1 widget)

    I save my widgets, everything looks good on the page, but then when I check it the next day, the first two columns have been essentially blown out.

    I have never experienced this problem before.

    Have you come across something like this? and do you think it is Enfold related or WordPress related? Not sure how to troubleshoot

    I have turned off most plugins to see if there might be any conflicts.

    Also, I have been testing each widget with some simple text and then re-introducing the HTML that I want to use.

    What I found is that when I try and copy and past the icon elements in the custom HTML widget, that seems to cause a problem. Not a 100% but that seems like it might be the reason. The code I am using is the following:

    <span class="av_font_icon avia_animate_when_visible avia-icon-animate av-icon-style- av-no-color avia-icon-pos-left avia_start_animation avia_start_delayed_animation" style=""><a href="https://www.facebook.com/jill.topp.100" class="av-icon-char" style="font-size:40px;line-height:40px;" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></a></span>
    
    <span class="av_font_icon avia_animate_when_visible avia-icon-animate av-icon-style- av-no-color avia-icon-pos-left avia_start_animation avia_start_delayed_animation" style=""><a href="https://twitter.com/BCSpeech" class="av-icon-char" style="font-size:40px;line-height:40px;" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></a></span>
    • This topic was modified 4 years, 7 months ago by xuamox.

    Hi!
    In the recent Enfold Version width: 100% for the social icon’s ul element got missing (it’s still found here https://kriesi.at/documentation/enfold/social-share-buttons/)
    Adding this to your Theme’s CSS should fix it:
    #top .av-share-box ul {
    width: 100%;
    }

    #1314855

    In reply to: 4.85 Update Support

    This reply has been marked as private.
    #1314787
    biancahuebsch
    Participant

    Hi guys,

    I open my page by using a colorsection with a background video. On the mobile version I’d like to have a picture in die colorsection and a “play button” symbol wich links to a pop up window playing a vimeo video. When I add a link to the symbol it always goes to a different window. I found no solution to open a pop up window.
    In the following enfold theme demo is the exact thing I want:https://kriesi.at/themes/enfold-startup/

    My Website is this one (the symbol is just set on the mobile version): https://maler-heilmann.s5.projekt.dev/ueberuns/

    I just fixed it with adding the Video inside the page but this is not want I acutally like to have.

    thanks for your help.
    Bianca

    #1314701
    jeremysecondary
    Participant

    Hey Guys,
    I am trying to make the small bar above the main menu have a solid background (#78bc1f) and stick to the top of the site.
    I was able to center the menu, but I can’t make the background a solid color or make the bar stick to the top of the page.
    This is the site: https://www.goddessgarden.com/

    This is a good example of another site on Enfold and how I want to look and function: https://premiumtufflock.com/

    I tried the “small bar above the main menu” advanced styling and it didn’t work.

    Here is the custom css on the site currently:
    #socket .copyright {
    width: 100%!important;
    text-align: center!important;
    }

    #top .aviaccordion-preview-title-wrap { background: rgba(119,188,31,0.9); }
    #top .aviaccordion-title { font-size: 25px; }

    #top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content * {
    color: black;
    }
    #top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content {
    margin: 0px;
    width: 100%;
    height: 100%;
    background: rgba(255,249,245,0.98);
    }

    .avia-no-number { opacity: 1; }

    #top #header .avia_mega_div {
    max-width: 1080px;
    }

    /* Color section container width */
    #section-container-width .container {
    width: 100% !important;
    min-width: 100%;
    padding: 0;
    margin: 0;
    }

    .special_amp {
    font-family: inherit;
    font-size: inherit!important;
    font-style: inherit;
    font-weight: inherit;
    color: inherit!important;
    }

    /**
    * Changes the redirect URL for the Return To Shop button in the cart.
    *
    * @return string
    */
    function wc_empty_cart_redirect_url() {
    return ‘https://www.goddessgarden.com/store/&#8217;;
    }
    add_filter( ‘woocommerce_return_to_shop_redirect’, ‘wc_empty_cart_redirect_url’ );

    #top #header_meta {background-color: red!important; }
    .header_color .phone-info {color: white !important; }
    .av_phone_active_right .phone-info {
    float: none!important;
    text-align: center!important;
    }

    #top .av_header_transparency #header_meta {
    border-bottom: 75;
    }

    #1314561

    Jasmer. Thank you for figuring out the problem (with Ismael). I have struggled for 2 days on this problem.
    Getting a Google Map API is more complicated than Enfold’s tutorial. Here is my steps for those who are trying for the first time.

    There are 3 primary things to do:
    • You must first have a billing method for Google. This is a paid service. Go to https://console.cloud.google.com/flows/enableapi . In the top left “hamburger” menu, select Billing. Here is where you would set up billing. IMPORTANT: you need to wait for the billing method to be confirmed before anything works. This can take up to 3 days. A notice to your registered email will say when it is confirmed.
    • The next step is to create a Project. In https://console.cloud.google.com/apis/dashboard (or choose APIs & Services from menu) choose or create your Project from “My Project” in the dropdown menu at the top.
    • Once in your new Project Dashboard, select Credentials in the left. Choose one or create one.
    • Then you follow the instructions https://kriesi.at/documentation/enfold/google-map/#how-to-register-a-google-maps-api-key. Which are:
    o Name: give your project a logical name, e.g.: API Key DOWW 2021
    o Application restrictions: None
    o API restrictions: Don’t restrict key
    o Save.
    • There is still one more thing to do (that is NOT mentioned in most instructions). There is more on this here: https://developers.google.com/maps/documentation/javascript/geocoding.
    o Enable Geocoding. In your Project Dashboard (above) look for Geocoding API (way at the bottom of the page)
    o Select the button: Geocoding API
    o Click Enable

    Then everything should work.

    #1314551

    Hi Tobias777G,

    Please try the following in Quick CSS under Enfold->General Styling:

    .avia-gallery-thumb a {
        padding: 0 1% 0 0;
    }

    You can start a new topic if you follow this link, or click this button: https://imgur.com/a/AnoSPNb.

    Best regards,
    Rikard

    #1314446

    Hi Alexander,

    You would need to add CSS and JavaScript codes to your site as well. Please note example code is using SCSS preprocessor tool.

    We have forwarded your request to our devs however if you need this button urgently, we would recommend you to hire a freelance developer as currently our devs are busy working on Enfold updates :)

    Best regards,
    Yigit

    #1314413

    Hi,

    Seems that this thread got mixed up a bit. I answered before:

    Problem seems to be related to WPML not translating the images correctly when using the ajax callback load more button.

    Have you already tried to open a ticket at WPML?

    If not, please do so and add the info above.

    Additional info for WPML:

    enfold\config-templatebuilder\avia-shortcodes\av-helper-masonry.php function query_entries_by_id()
    enfold\config-templatebuilder\avia-shortcodes\masonry_gallery\masonry_gallery.php function ajax_load_more()

    Best regards
    Günter

    Best regards,
    Günter

    Hey coolicious,

    Thank you for the inquiry.

    It is possible to upload new icons and add new social icons in the theme. Please check the following documentation for more info on how to add a custom social icon.

    // https://kriesi.at/documentation/enfold/social-share-buttons/#how-to-add-custom-social-icons-to-enfold-options

    And this one to add your own custom icon.

    // https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-

    You may need to produce an SVG file of the social media icon and convert it to an icon font. There is an icon font generator in the fontello.com site. All you need is the SVG format of the social media icon. Once you have the icon font, you can upload in the theme using the Enfold > Import/Export > Iconfont Manager.

    Best regards,
    Ismael

    #1314241

    Hey manurimini,

    Thank you for the inquiry.

    This is possible but you will have to modify the enfold/config-templatebuilder/avia-shortcodes/portfolio/portfolio.php directly. Around line 1219, you could add a switch statement, check for the $category->cat_name and replace it with something else.

    $output .= 	"<span class='text-sep " . $category->category_nicename . "_sort_sep'>/</span>";
    					$output .= 		'<a href="#" data-filter="' . $category->category_nicename . '_sort" class="' . $category->category_nicename . '_sort_button" ><span class="inner_sort_button">';
    					$output .= 			"<span>" . esc_html( trim( $category->cat_name ) ) . "</span>";
    					$output .= 			"<small class='av-cat-count'> " . $cat_count[ $category->term_id ] . " </small></span>";
    					$output .= 		'</a>';
    

    // https://www.w3schools.com/php/php_switch.asp

    This is where the category name is rendered.

    $output .= "<span>" . esc_html( trim( $category->cat_name ) ) . "</span>";
    

    It is also possible with Javascript.

    // https://www.w3schools.com/jsref/jsref_replace.asp

    Best regards,
    Ismael

Viewing 30 results - 1,441 through 1,470 (of 11,204 total)