Viewing 30 results - 91 through 120 (of 986 total)
  • Author
    Search Results
  • #1332274

    Hi,

    In the functions.php file, try to replace the ava_main_header hook with ava_after_main_menu to render the widgets after the main menu, then adjust the css code a bit to align them with the social icons..

    #top #header #header_main .widget {
        position: absolute;
        right: 0;
        top: 0;
    }
    

    Thank you for your patience.

    Best regards,
    Ismael

    #1330661

    Hi aruizhuidobro,

    Are you referring to the Social Icons Widget & Block by WPZOOM plugin?
    I have posted a screenshot in my previous post (private content), can you confirm if it’s correct?

    Best regards,
    Nikko

    #1330634

    Hi Nikko, I added a social icon plugin for other developer since I need to deliver the site but I dont see button nor social as widget from enfold. Can you please check again ? Thanks !

    #1328666

    Hi,

    Within the widgets footer column 1 on our site, we had some custom HTML that displayed linked social icons. Also in column 4, we had payment icons.

    The code is still there but the icons are not showing since the latest update.

    How can I go about fixing the issue? I’ve tried disabling cache etc and also removing the HTML and re-adding it and still nothing is working.

    If you could get back to me that would be great.

    Kind Regards,
    Matt

    #1327029

    Hey Patrick,

    Thank you for the notification.

    We will post the changes as soon as possible. For now, you can check them below.

    feature: ALB columns reverse or individual resort order when switching to fullwidth on mobile devices
    feature: ALB gridrow reverse or individual resort orderof cells when switching to fullwidth on mobile devices
    feature: theme option “Transparency Menu Color On Hover”
    feature: ALB video element option to show fullscreen button for HTML5 videos

    fixed: missing comma in CSS for mobile and svg makes svg huge
    fixed: button CSS top border issue on :active – removed !important in button.css
    fixed: Option Remove query string from static resources breaks invalidation of post css files – option willl be ignored for these files
    fixed: ALB Textblock custom element lockable custom CSS class missing
    fixed: fullwidth submenu alignment ignored for mobile button
    fixed: undefined constant THEMENAME in Mailchimp Newsletter Signup widget
    fixed: typography font size not applied in block editor in frontend
    fixed: ALB masonry gallery lightbox title not corresponding to options settings for flexible masonry
    fixed: ALB magazine category sort buttons break frontend when no entries are found
    fixed: svg logo broken when svg tag in multiple lines
    fixed: svg logo not displayed for non logged in users
    fixed: italien translation breaking selectbox in ALB Image Hotspot tooltip location

    tweak: add missing schema.org markup to section background videos and slideshow videos
    tweak: accessibility support:

    added: Accessibility Tab to Theme Extensions Page
    added: tab key access support to main menu with submenus and megamenu
    added: visual appearance with keyboard access to menus (focus now equivalent to mouse hover effects)
    added: attributes role=”menuitem” tabindex=”0″ to menu items
    added: started support for plugin “One Click Accessibility” ( https://wordpress.org/plugins/pojo-accessibility/ )
    added: started support for plugin “WP Accessibility” ( https://wordpress.org/plugins/wp-accessibility/ )
    tweak: remove “:” when empty label text from contact form emails
    tweak: extended date filter to “last xxx days/weeks/month/years” for ALB elements:
    Blog
    Magazine
    Masonry
    Portfolio
    Post Slider
    Accordion Slider
    Featured Image Slider
    added: filter ‘avf_social_media_icon_display_name’ – change tooltip display name of icon
    added: filter ‘avf_form_mail_label’ – allows to change label text on E-Mail of a contact form
    added: filter ‘avf_wp_accessibility_outline_width’ – change hardcoded plugin value for focus caret
    added: filter ‘avf_wp_accessibility_outline_style’ – change hardcoded plugin value for focus caret

    Following elements have been updated to support post-css file:

    Dropcap 1 (Big Letter)
    Dropcap 2 (Colored Background)
    Fullwidth Sub Menu
    Grid Row + Grid Cells
    OSM – Leaflet Map
    Post Metadata
    Search
    Social Buttons
    Tabs
    Team
    Textblock
    Timeline
    Video
    Updated: LayerSlider Version 6.11.9

    updated: French language files fr_FR (version 4.8.6.4, provided by comkapi – (Email address hidden if logged out) )
    updated: Dutch language files nl_NL (version 4.8.7 provided by EZWebdesign – Roger Hoen )
    updated: Italian language files it_IT (version 4.8.7, provided by BigBatT – (Email address hidden if logged out) )
    updated: sync all language files version 4.8.7

    Best regards,
    Ismael

    #1326317
    alanlodge
    Participant

    Hello.
    I had installed WPZoom Social Icons some time ago. I now wanted to add a couple more. However, although the widget shows on the left hand side of my wordpress, I does not show in the widget area I’ve used it! Thus cannot edit the list. It is strange since the icon listing as is, shows fine on the finished website.
    My website is at: https://alanlodge.co.uk and you may see the icon are all intact at the bottom of all pages. BUT seem un-editable, since there is no presence in the widget area.
    Please any advice.
    >
    WPZoom replied
    Hello Alan,
    You need to check with the theme developers why the widget area in the customizer is missing from the footer.
    Maybe it has to do with their latest update. Anyway, this is not a plugin issue, it’s the theme issue because there is no widget are for the footer.

    thus, am grateful for any advice on what’s to do

    My Thanks

    #1321281

    Hi Rikard,
    No worries I have all the content saved. I have narrowed it down to the code containing the span tags.
    So if I just paste the content on the first widget column, everything is fine and nothing gets blown out.
    If then add the contact column information minus the span tags with the icon code, everything works fine.
    As soon as I pasted in the span code with the social media icons, everything gets blown out.
    I am really curious to find out why that HTML code with the social media buttons causes the widgets in the first two columns to get blown out?

    #1319014

    Btw all social icons do have their own links per organisation (page)

    if it is in your widget only ( not the top-heading ) i would install something like: restrict widget and put the different social media links into different widgets.
    ( or maybe better: https://wordpress.org/plugins/widget-logic/ )

    first i would try to have this tree function to have all pages – that are subpages – the same logo

    f.e:

    function is_tree($pid){
    global $post;
       $ancestors = get_post_ancestors($post->$pid);
       $root = count($ancestors) - 1;
       $parent = $ancestors[$root];
       if(is_page() && (is_page($pid) || $post->post_parent == $pid || in_array($pid, $ancestors))){
         return true;
        }
       else{
         return false;
        }
    };
    
    function av_change_logo($logo){
          if (is_tree(178)) { $logo = "/wp-content/uploads/2021/08/logo_MEE.png";}
      elseif (is_tree(aaa)) { $logo = "/wp-content/uploads/2021/08/logo_VTV.png";}
      elseif (is_tree(bbb)) { $logo = "/wp-content/uploads/2021/08/logo_JongLeren.png";}
      elseif (is_tree(ccc)) { $logo = "/wp-content/uploads/2021/08/logo_Xtra.png";}
      elseif (is_tree(ddd)) { $logo = "/wp-content/uploads/2021/08/logo_Mooi.png";}
      elseif (is_tree(eee)) { $logo = "/wp-content/uploads/2021/08/logo_JESS.png";}
       return $logo;
    }
    add_filter('avf_logo','av_change_logo');

    you had to replace the aaa – eee with the page id’s.

    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?

    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, 4 months ago by xuamox.
    #1312622

    Hi Andrew,

    Thanks for the update. We had some problems with version 4.8.4, but we released a new version yesterday, which should have solved them. Maybe you could try updating to that on a staging version of your production site first? If not, then you can continue using 4.8.3, since most of the updates in the new versions were restructured code on the backend. There’s only a few new theme features which you are missing out on. Here’s the change log for the new version:

    26. Jul. 2021 – Version 4.8.5

    feature: theme options to display/hide social profile links on blog posts (please save theme options)

    fixed: buttons transparent colors border disappeared and border width settings not working
    fixed: iconbox “Content” is ignored
    fixed: animated numbers “Description” is ignored
    fixed: icon “Optional Tooltip” is ignored
    fixed: accordion scrolls to the top when opening/closing toggles
    fixed: preview problem with margins with equal height columns
    fixed: Special Heading selector for custom margins
    fixed: Gallery layout with lightbox broken in chrome browsers
    fixed: columns background gradient with transparency

    tweak: disable new WP block editor widget screen as not supported by theme at the moment
    tweak: svg dividers fill color bound to svg tag and not to path – allows more flexibility for svg structure
    tweak: custom svg dividers support attachment id’s for normal and negative svg to upload with WP media uploader

    added: Austrian language files de_AT
    updated: Dutch language files nl_NL (version 4.8.4, provided by EZWebdesign – Roger Hoen )

    Best regards,
    Rikard

    Hey Tobias777G,
    Thank you for your patience, so the block widgets interface for WordPress v5.8 doesn’t work well with Enfold right now, the dev team has put this temp fix out fro right now, I added it to your child theme functions.php

    /**
     * With WP 5.8 block editor was introduced to widget page. This is currently not supported by Enfold.
     * Based on https://wordpress.org/plugins/classic-widgets/ we disable this feature.
     * 
     * If you want to use the new widget page and use a child theme add in functions.php of the child theme:
     * 
     *		$avia_config['use_block_widget_page'] = true;
     * 
     * @since 4.8.4.1
     */
    if( ! isset( $avia_config['use_block_widget_page'] ) || $avia_config['use_block_widget_page'] !== true )
    {
    	// Disables the block editor from managing widgets in the Gutenberg plugin.
    	add_filter( 'gutenberg_use_widgets_block_editor', '__return_false' );
    
    	// Disables the block editor from managing widgets.
    	add_filter( 'use_widgets_block_editor', '__return_false' );
    }

    In your case the settings in the Table of Contents was not saving so it would not work, after adding the code above I was able to save the settings, but please note that you have to select which headings you want to use, I selected all, and the first check box will only allow the widget to show on posts, so you need to un-check because you are showing on a page:
    Enfold_Child_Table_of_Contents_settings.jpg
    Now as I examine your example site I see that it was also created with Enfold, the Table of Contents they are using was created manually with an icon list element, this is how they were able to add the icons and edit the titles. With the Table of Contents widget you are using you can not edit the titles, please try using the icon list element.
    On the example site the author box was created in a 1/4 column with an image element using the border-radius so it is round, then a text element that is manually changed to show the “last updated date” and a social share element.
    I see you are using the Team Member element, on your test page I added a new author box, please check.

    Best regards,
    Mike

    jleclair87
    Participant

    Recently I used the code from this thread https://kriesi.at/support/topic/centered-logo-shopping-cart-in-menu/ to put the shopping cart in the menu. The cart adds but the social media icons are not displaying in the right menu once I add this code. The social icons instead go to the left of the logo but I have already added a left header widget there so it just overlaps. I noticed several people are having issues with the shopping cart and the center logo with the menu underneath. Any help would be great on how to troubleshoot this!

    Here is the code i added to the child theme.

    <?php

    /*
    * Add your own functions here. You can also copy some of the theme functions into this file.
    * WordPress will use those functions instead of the original functions then.
    */

    // Header Widget
    add_action( ‘ava_main_header’, ‘enfold_customization_header_widget_area’ );
    function enfold_customization_header_widget_area() {
    dynamic_sidebar( ‘header’ );
    }

    function cart_in_nav(){
    ?>
    <script>
    (function($){
    $(document).ready(function(){
    var width = $(window).width(), height = $(window).height();
    if ((width >= 768)) {
    $( “#menu-item-shop” ).appendTo( “#avia-menu.av-main-nav” );
    };
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action(‘wp_footer’, ‘cart_in_nav’);

    and here is my css

    /* cart_in_nav */
    @media only screen and (min-width: 767px) {
    #top #header_main ul#avia-menu ul#menu-item-shop,#top #header_main ul#avia-menu ul#menu-item-shop a.cart_dropdown_link {
    display: block !important;
    height: 50px !important;
    line-height: 50px !important;
    padding: 1px 10px !important;
    border: none !important;
    box-shadow: none !important;
    }
    #top #header_main ul#avia-menu ul#menu-item-shop ul.woocommerce-mini-cart.cart_list.product_list_widget {
    width: 100% !important;
    height: 100% !important;
    }
    #top #header_main ul#avia-menu ul#menu-item-shop .woocommerce-mini-cart-item.mini_cart_item a {
    border: none !important;
    }
    #top #header_main ul#avia-menu ul#menu-item-shop .woocommerce-mini-cart__buttons.buttons a {
    border: none !important;
    }
    }
    /* end cart_in_nav */

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

    @media screen and (max-width: 900px) {
    #header .widget { display: none !important; }
    }

    #header .widget {
    left: 50px;
    right: auto;
    padding-top: 70px;
    position: absolute;
    top: 0;
    transform: translate(-0%);
    z-index: 999999;
    }

    #top .inner_product,
    #top .inner_product .inner_product_header {
    border: none;
    }

    #top .inner_product .inner_product_header .avia-arrow {
    display: none;
    }

    #1309513

    Hey Eefke,
    Thank you for your patience, and for the login, I copied your social icon link codes from your footer widgets and added menu items to your secondary menu, I also added a custom class to the menu items for some custom css, this I added the custom css to your quick css:

    #avia2-menu .Secundair-social .aligncenter {
    	padding: 0;
    	margin: 0;
    }

    and now they are working, please clear your browser cache and check.

    Best regards,
    Mike

    #1307612

    Hi,
    Thank you for your patience, and for the login to your site, your issue was with your Quick CSS custom css, I started by removing all of your css and adding it back a little at a time, I found some errors and tried correcting them, in the end these are the two rules that seemed to be cuasing the problem:

    #header .main_menu {
    /*background: gold;*/
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    }
    
    .av-main-nav-wrap {
    left: 50%;
    transform: translateX(-50%);
    }

    Please clear your browser cache and check.

    For your information, this was your original css:

    
    /* HEADER */
    
    .navbar, .page-title-section {
    display: none;
    }
    
    .inner-container {
    	position: relative;
    	height: 150%;
    	width: 100%;
    	margin-top: 0px;
    }
    
    .responsive .logo img {
    	margin: 45px 0 10px 0;
    }
    
    .header-introduction-small .section-head h1 {
    	letter-spacing: 0;
    	font-size: 40px !important;
    	font-weight: 100;
    	opacity: 0.6;
    	padding: 150px 0px 0px 0px;
    }
    
    #top .av-main-nav ul a {
    	width: 100%;
    	height: auto;
    	float: left;
    	text-align: left;
    	line-height: 23px;
    	padding: 8px 15px;
    	font-size: 17px;
    	min-height: 23px;
    	max-width: none;
    	text-decoration: none;
    	font-family: inherit;
    	text-transform: uppercase;
    }
    
    #top #wrap_all .av_header_transparency {
    	background-color: transparent;
    	color: #131313;
    	border-color: #ebebeb;
    }
    
    .header_color .header_bg, .header_color .main_menu ul ul, .header_color .main_menu .menu ul li a, .header_color .pointer_arrow_wrap .pointer_arrow, .header_color .avia_mega_div, .header_color .av-subnav-menu > li ul, .header_color .av-subnav-menu a {
    	background-color: #000;
    	color: #fff;
    }
    
    .av-main-nav ul li:last-child > a {
    	border-bottom-style: solid;
    	border-bottom-width: 0px;
    }
    
    .av-main-nav ul li a {
    	border-right-style: solid;
    	border-right-width: 0px;
    	border-left-style: solid;
    	border-left-width: 0px;
    }
    
    /* BODY */
    
    #top .av_inherit_color a {
    	text-decoration: none;
    }
    
    .html_av-overlay-full #top #wrap_all #av-burger-menu-ul li a {
    	color: #fff;
    	line-height: inherit;
    	font-size: 26px;
    	font-family: 'cormorant-garamond','HelveticaNeue','Helvetica Neue','Helvetica-Neue',Helvetica,Arial,sans-serif;
    	text-transform: uppercase;
    }
    
    #top #wrap_all .error .text_input, #top #wrap_all .error .text_area, #top #wrap_all .error .select {
    	border: 1px solid #F00;
    }
    
    #top #wrap_all .error .input_checkbox_label {
    	color: #F00;
    }
    
    .avia-cookie-consent a.avia_cookie_infolink, .avia-cookie-consent p, .avia-cookie-consent .avia-cookie-consent-button {
    	display: inline-block;
    	vertical-align: middle;
    	font-size: 18px !important;
    	letter-spacing: 0.05em;
    }
    
    .avia-button.avia-size-medium {
    	font-size: 16px;
    }
    
    strong, b {
    	font-weight: normal;
    }
    
    #top .av-flex-placeholder {
    	display: table-cell;
    	width: 1%;
    }
    
    
    /* FOOTER*/
    
    
    /* SOCKET*/
    
    #socket .copyright {
    	float: left;
    	font-size: 16px;
    }
    
    .socket_color a, .socket_color .widget_first, .socket_color strong, .socket_color b, .socket_color b a, .socket_color strong a, .socket_color #js_sort_items a:hover, .socket_color #js_sort_items a.active_sort, .socket_color .av-sort-by-term a.active_sort, .socket_color .special_amp, .socket_color .taglist a.activeFilter, .socket_color #commentform .required, #top .socket_color .av-no-color.av-icon-style-border a.av-icon-char, .html_elegant-blog #top .socket_color .blog-categories a, .html_elegant-blog #top .socket_color .blog-categories a:hover {
    	color: #ffffff;
    	font-size: 16px;
    }
    
    
    
    .av-main-nav > li > a {
    	padding: 0 23px;
    	font-size: 18px;
            text-transform: uppercase;
           font-family: 'cormorant-garamond','HelveticaNeue','Helvetica       Neue','Helvetica-Neue',Helvetica,Arial,sans-serif;
    	}
    
    
    
     @media only screen and (min-width: 780px) {
    /*In the below code nth-child(x) the value of x should be half the number of total menu items*/
    #top #header .av-main-nav li:nth-child(2) {
    /* Adjust the width of the logo */
    margin-right:15%;
    }
    
    #top #header .av-main-nav li:nth-child(3) {
    /* Adjust the width of the logo */
    margin-left:15%;
    }
    
    
    
    #header .main_menu {
    /*background: gold;*/
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    }
    
    .av-main-nav-wrap {
    left: 50%;
    transform: translateX(-50%);
    }
    
    #header .logo {
    left: 50%;
    transform: translateX(-50%);
    z-index:999;
    }
    
    #header .logo img {
    top: 20%;
    transform: translateY(-50%);
    max-width: 250px;
    }
    }
    
    
    /* Top Bar content alignment */
    
    #top #header_meta .container {
               display: flex;
               justify-content: center;
    }
    
    #top #header_meta .sub_menu {
               top:0;
    }
    #top #header_meta .sub_menu,
    #top #header_meta .social_bookmarks {
               align-self: center;
    }
    
    #top #header_meta .phone-info {
               order: 2;
    }
    
    #top #header_meta .phone-info span {
               display: flex;
               align-items: center;
    }
    
    #top #header_meta .sub_menu {
               order: 1;
    }
    #top #header_meta .social_bookmarks {
               order: 3;
    }
    
    
    #avia-menu {
    width:1300px !important;
    }
    
    #menu-item-551 {
        margin-left: 0 !important;
    }
    
    /*fabio burger menu */
     @media only screen and (max-width: 1199px) {
    #top #header .av-main-nav > li.menu-item  {
        display: none!important;
    }
    #top #header .av-burger-menu-main {
        cursor: pointer;
        display: block!important;
    }
    .container.av-logo-container .header_main_alternate .container{
    left:70%!important;
    }
    #avia-menu {
      float: right; 
       width: auto !important;
    }
    }

    and this is what you have now:

    /* BODY */
    
    #top .av_inherit_color a {
        text-decoration: none;
    }
    
    .html_av-overlay-full #top #wrap_all #av-burger-menu-ul li a {
        color: #fff;
        line-height: inherit;
        font-size: 26px;
        font-family: 'cormorant-garamond','HelveticaNeue','Helvetica Neue','Helvetica-Neue',Helvetica,Arial,sans-serif;
        text-transform: uppercase;
    }
    
    #top #wrap_all .error .text_input, #top #wrap_all .error .text_area, #top #wrap_all .error .select {
        border: 1px solid #F00;
    }
    
    #top #wrap_all .error .input_checkbox_label {
        color: #F00;
    }
    
    .avia-cookie-consent a.avia_cookie_infolink, .avia-cookie-consent p, .avia-cookie-consent .avia-cookie-consent-button {
        display: inline-block;
        vertical-align: middle;
        font-size: 18px !important;
        letter-spacing: 0.05em;
    }
    
    .avia-button.avia-size-medium {
        font-size: 16px;
    }
    
    strong, b {
        font-weight: normal;
    }
    
    #top .av-flex-placeholder {
        display: table-cell;
        width: 1%;
    }
    
    
    /* FOOTER*/
    
    
    /* SOCKET*/
    
    #socket .copyright {
        float: left;
        font-size: 16px;
    }
    
    .socket_color a, .socket_color .widget_first, .socket_color strong, .socket_color b, .socket_color b a, .socket_color strong a, .socket_color #js_sort_items a:hover, .socket_color #js_sort_items a.active_sort, .socket_color .av-sort-by-term a.active_sort, .socket_color .special_amp, .socket_color .taglist a.activeFilter, .socket_color #commentform .required, #top .socket_color .av-no-color.av-icon-style-border a.av-icon-char, .html_elegant-blog #top .socket_color .blog-categories a, .html_elegant-blog #top .socket_color .blog-categories a:hover {
        color: #ffffff;
        font-size: 16px;
    }
    /*fabio burger menu */
     @media only screen and (max-width: 1199px) {
    #top #header .av-main-nav > li.menu-item  {
        display: none!important;
    }
    #top #header .av-burger-menu-main {
        cursor: pointer;
        display: block!important;
    }
    .container.av-logo-container .header_main_alternate .container{
    left:70%!important;
    }
    #avia-menu {
      float: right; 
       width: auto !important;
    }
    }
    /* Top Bar content alignment */
    
    #top #header_meta .container {
            display: flex;
            justify-content: center;
    }
    
    #top #header_meta .sub_menu {
            top:0;
    }
    #top #header_meta .sub_menu,
    #top #header_meta .social_bookmarks {
            align-self: center;
    }
    
    #top #header_meta .phone-info {
            order: 2;
    }
    
    #top #header_meta .phone-info span {
            display: flex;
            align-items: center;
    }
    
    #top #header_meta .sub_menu {
            order: 1;
    }
    #top #header_meta .social_bookmarks {
            order: 3;
    }
    #menu-item-551 {
        margin-left: 0 !important;
    }
    
    /* HEADER */
    
    .navbar, .page-title-section {
        display: none;
    }
        
    .inner-container {
        position: relative;
        height: 150%;
        width: 100%;
        margin-top: 0px;
    }
    
    .responsive .logo img {
        margin: 45px 0 10px 0;
    }
    
    .header-introduction-small .section-head h1 {
        letter-spacing: 0;
        font-size: 40px !important;
        font-weight: 100;
        opacity: 0.6;
        padding: 150px 0px 0px 0px;
    }
    
    #top .av-main-nav ul a {
        width: 100%;
        height: auto;
        float: left;
        text-align: left;
        line-height: 23px;
        padding: 8px 15px;
        font-size: 17px;
        min-height: 23px;
        max-width: none;
        text-decoration: none;
        font-family: inherit;
        text-transform: uppercase;
    }
    
    #top #wrap_all .av_header_transparency {
        background-color: transparent;
        color: #131313;
        border-color: #ebebeb;
    }
    
    .header_color .header_bg, .header_color .main_menu ul ul, .header_color .main_menu .menu ul li a, .header_color .pointer_arrow_wrap .pointer_arrow, .header_color .avia_mega_div, .header_color .av-subnav-menu > li ul, .header_color .av-subnav-menu a {
        background-color: #000;
        color: #fff;
    }
    
    .av-main-nav ul li:last-child > a {
        border-bottom-style: solid;
        border-bottom-width: 0px;
    }
    
    .av-main-nav ul li a {
        border-right-style: solid;
        border-right-width: 0px;
        border-left-style: solid;
        border-left-width: 0px;
    }
    .av-main-nav > li > a {
        padding: 0 23px;
        font-size: 18px;
        text-transform: uppercase;
        font-family: 'cormorant-garamond','HelveticaNeue','Helvetica       Neue','Helvetica-Neue',Helvetica,Arial,sans-serif;
    }
    /* HEADER */
    
    .navbar, .page-title-section {
        display: none;
    }
        
    .inner-container {
        position: relative;
        height: 150%;
        width: 100%;
        margin-top: 0px;
    }
    
    .responsive .logo img {
        margin: 45px 0 10px 0;
    }
    
    .header-introduction-small .section-head h1 {
        letter-spacing: 0;
        font-size: 40px !important;
        font-weight: 100;
        opacity: 0.6;
        padding: 150px 0px 0px 0px;
    }
    
    #top .av-main-nav ul a {
        width: 100%;
        height: auto;
        float: left;
        text-align: left;
        line-height: 23px;
        padding: 8px 15px;
        font-size: 17px;
        min-height: 23px;
        max-width: none;
        text-decoration: none;
        font-family: inherit;
        text-transform: uppercase;
    }
    
    #top #wrap_all .av_header_transparency {
        background-color: transparent;
        color: #131313;
        border-color: #ebebeb;
    }
    
    .header_color .header_bg, .header_color .main_menu ul ul, .header_color .main_menu .menu ul li a, .header_color .pointer_arrow_wrap .pointer_arrow, .header_color .avia_mega_div, .header_color .av-subnav-menu > li ul, .header_color .av-subnav-menu a {
        background-color: #000;
        color: #fff;
    }
    
    .av-main-nav ul li:last-child > a {
        border-bottom-style: solid;
        border-bottom-width: 0px;
    }
    
    .av-main-nav ul li a {
        border-right-style: solid;
        border-right-width: 0px;
        border-left-style: solid;
        border-left-width: 0px;
    }
    
    @media only screen and (min-width: 766px) {
    #top #header .av-main-nav li:nth-child(2) {
    /* Adjust the width of the logo */
    margin-right:15%;
    }
    #top #header .av-main-nav li:nth-child(3) {
    /* Adjust the width of the logo */
    margin-left:15%;
    }
    #header .logo img {
    top: 20%;
    transform: translateY(-50%);
    max-width: 250px;
    }
    #header .logo {
    left: 50%;
    transform: translateX(-50%);
    z-index:999;
    }
    }
    
    @media only screen and (min-width: 1200px) {
    #avia-menu {
        width:1200px !important;
    }
    }

    Best regards,
    Mike

    #1299863
    hanna47
    Participant

    Hi.

    I am looking into optimizing our website http://www.geilolaft.no for SEO and Core Web Vitals.
    According to Page Speed Insight by google – our site has a very low score (red) on mobile, and the first suggested improvement to make is to eliminate render blocking resources.
    Following the suggested guide here: https://web.dev/render-blocking-resources/?utm_source=lighthouse&utm_medium=unknown
    and when checking under the Coverage tab in Chrome DevTools there are a lot of URLs with 100% and many with between 50-100% unused bytes. Most of the URLs are pointing to something within the enfold theme.
    Being at TOTAL NOOB in this field, I wand to ask you guys for your support on how to best go about this task.
    I will list many of the most critical URLs here below. Can you see if there is anything here that could be cleaned up/eliminated?

    LIST OF URLs WITH A LOT OF UNUSED BYTES, LISTED UNDER THE COVERAGE TAB IN Chrome DevTools:

    Between 50-99% unused:
    https://www.gstatic.com/recaptcha/releases/npGaewopg1UaB8CNtYfx-y1j/recaptcha__no.js:formatted – 50% unused = 174 158 bytes unused

    https://geilolaft.no/wp-content/uploads/dynamic_avia/avia-footer-scripts-b20f163ca67ab2445030d74f05ecf620—6096172e6f053.js:formatted – 67% unused = 128 768 bytes unused

    https://geilolaft.no/wp-content/uploads/dynamic_avia/geilo_laft.css?ver=60961726a85e5:formatted – 83% unused = 106 045 bytes unused

    https://geilolaft.no/wp-content/themes/enfold/css/layout.css?ver=4.8.2:formatted – 85% unused = 68 737 bytes unused

    https://geilolaft.no/wp-includes/css/dist/block-library/style.min.css?ver=5.6.3:formatted -99.8% unused = 51 219 bytes unused

    https://geilolaft.no/wp-content/themes/geilo-laft/style.css?ver=4.8.2:formatted – 82% unused = 43 052 bytes unused

    https://geilolaft.no/wp-content/themes/enfold/css/shortcodes.css?ver=4.8.2:formatted – 93% unused = 29 969 bytes unused

    https://geilolaft.no/wp-content/themes/enfold/css/avia-snippet-widget.css?ver=4.8.2:formatted – 98% unused = 23 552 bytes unused

    https://geilolaft.no/wp-content/themes/enfold/css/base.css?ver=4.8.2:formatted – 80% unused = 15 219 bytes unused

    These are 100% unused:
    https://geilolaft.no/wp-includes/css/dashicons.min.css?ver=5.6.3:formatted

    https://geilolaft.no/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/blog/blog.css?ver=5.6.3:formatted

    https://geilolaft.no/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.css?ver=5.6.3:formatted

    https://geilolaft.no/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.css?ver=5.6.3:formatted

    https://geilolaft.no/wp-content/themes/enfold/js/aviapopup/magnific-popup.css?ver=4.8.2:formatted

    https://geilolaft.no/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/testimonials/testimonials.css?ver=5.6.3:formatted

    https://geilolaft.no/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/comments/comments.css?ver=5.6.3:formatted

    https://geilolaft.no/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/toggles/toggles.css?ver=5.6.3:formatted

    https://geilolaft.no/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/postslider/postslider.css?ver=5.6.3:formatted

    https://geilolaft.no/wp-content/themes/enfold/css/avia-snippet-lightbox.css?ver=4.8.2:formatted

    https://geilolaft.no/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.4.1:formatted

    https://geilolaft.no/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icon/icon.css?ver=5.6.3:formatted

    https://geilolaft.no/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery/gallery.css?ver=5.6.3:formatted

    https://geilolaft.no/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/video/video.css?ver=5.6.3:formatted

    https://geilolaft.no/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/grid_row/grid_row.css?ver=5.6.3:formatted

    https://geilolaft.no/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/social_share/social_share.css?ver=5.6.3:formatted

    https://geilolaft.no/wp-content/themes/enfold/css/custom.css?ver=4.8.2:formatted

    #1298339
    DouPaule
    Participant

    Hello,
    GTMetrix shows me a very bad grade with lower than 30 for performance.
    The most important part on this bad values is, so GTM, this:
    (If i change the theme the speed is back to a normal value above 80)
    Chris

    …/wp-content/themes/enfold/css/grid.css?ver=4.8.1
    …/wp-content/themes/enfold/css/base.css?ver=4.8.1
    …/wp-content/themes/enfold/css/layout.css?ver=4.8.1
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/audio-player/audio-player.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/blog/blog.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/postslider/postslider.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons/buttons.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/catalogue/catalogue.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/comments/comments.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contact/contact.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contentslider/contentslider.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/countdown/countdown.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery/gallery.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/google_maps/google_maps.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/grid_row/grid_row.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/heading/heading.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/hr/hr.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icon/icon.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconbox/iconbox.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icongrid/icongrid.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconlist/iconlist.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/image/image.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/magazine/magazine.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.css?ver=5.7
    …/wp-content/themes/enfold/css/avia-snippet-site-preloader.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/menu/menu.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/notification/notification.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/numbers/numbers.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio/portfolio.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/post_metadata/post_metadata.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/progressbar/progressbar.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/promobox/promobox.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/search/search.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_feature_image/slideshow_feature_image.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullsize/slideshow_fullsize.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/social_share/social_share.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tab_section/tab_section.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/table/table.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tabs/tabs.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/team/team.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/testimonials/testimonials.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/timeline/timeline.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/toggles/toggles.css?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/video/video.css?ver=5.7
    …/wp-includes/css/dist/block-library/style.min.css?ver=5.7
    …/wp-content/themes/enfold/style.css?ver=5.7
    …/wp-content/themes/enfold-child/style.css?ver=5.7
    …/wp-content/themes/enfold/css/shortcodes.css?ver=4.8.1
    …/wp-content/themes/enfold/js/aviapopup/magnific-popup.css?ver=4.8.1
    …/wp-content/themes/enfold/css/avia-snippet-lightbox.css?ver=4.8.1
    …/wp-content/themes/enfold/css/avia-snippet-widget.css?ver=4.8.1
    …/wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css?ver=4.2.16
    …/wp-includes/js/mediaelement/wp-mediaelement.min.css?ver=5.7
    …/wp-content/uploads/dynamic_avia/enfold_child.css?ver=608eaee407c99
    …/wp-content/themes/enfold/css/custom.css?ver=4.8.1
    …/wp-content/themes/enfold-child/style.css?ver=4.8.1
    …/wp-content/plugins/ubermenu/pro/assets/css/ubermenu.min.css?ver=3.6.1
    …/wp-content/plugins/ubermenu/assets/css/skins/vanilla_bar.css?ver=5.7
    …/wp-content/plugins/ubermenu/assets/fontawesome/css/all.min.css?ver=5.7
    …/wp-content/themes/enfold/css/avia-snippet-cookieconsent.css?ver=4.8.1
    …/wp-includes/js/jquery/jquery.min.js?ver=3.5.1
    …/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2
    …/wp-content/themes/enfold/js/avia-compat.js?ver=4.8.1
    …/wp-includes/js/wp-emoji-release.min.js?ver=5.7
    …/wp-content/themes/enfold/js/avia.js?ver=4.8.1
    …/wp-content/themes/enfold/js/shortcodes.js?ver=4.8.1
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/audio-player/audio-player.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contact/contact.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/countdown/countdown.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery/gallery.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icongrid/icongrid.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconlist/iconlist.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/magazine/magazine.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio/isotope.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/menu/menu.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/notification/notification.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/numbers/numbers.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio/portfolio.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/progressbar/progressbar.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow-video.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tab_section/tab_section.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tabs/tabs.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/testimonials/testimonials.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/timeline/timeline.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/toggles/toggles.js?ver=5.7
    …/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/video/video.js?ver=5.7
    …/wp-content/themes/enfold/js/avia-snippet-hamburger-menu.js?ver=4.8.1
    …/wp-content/themes/enfold/js/aviapopup/jquery.magnific-popup.min.js?ver=4.8.1
    …/wp-content/themes/enfold/js/avia-snippet-lightbox.js?ver=4.8.1
    …/wp-content/themes/enfold/js/avia-snippet-megamenu.js?ver=4.8.1
    …/wp-content/themes/enfold/js/avia-snippet-sticky-header.js?ver=4.8.1
    …/wp-content/themes/enfold/js/avia-snippet-widget.js?ver=4.8.1
    …/wp-includes/js/mediaelement/mediaelement-and-player.min.js?ver=4.2.16
    …/wp-includes/js/mediaelement/mediaelement-migrate.min.js?ver=5.7
    …/wp-includes/js/mediaelement/wp-mediaelement.min.js?ver=5.7
    …/wp-content/plugins/ubermenu/assets/js/ubermenu.min.js?ver=3.6.1
    …/wp-content/themes/enfold/js/avia-snippet-cookieconsent.js?ver=4.8.1
    …/wp-content/themes/enfold/framework/js/conditional_load/avia_google_maps_front.js?ver=4.8.1
    …/wp-includes/js/wp-embed.min.js?ver=5.7
    …/wp-content/plugins/statify/js/snippet.min.js?ver=1.8.2

    #1296425
    havi
    Participant

    and other elements the blog post is not using?

    Hi guys,

    This site only uses Classic editor. I am using Load only Used Elements (recommended) as usual but I can see when I disable compression that many elements not used are being loaded. Including the block editor when I test the Mobile version of the page with PageSpeedInsights.

    My desktop Core Web Vitals are a dream come true. The mobile ones with no sidebars, got worse.

    Help!!

    Thank you!

    Havi

    This is the list of elements with compression enabled
    URL
    Transfer Size
    Potential Savings
    …block-library/style.min.css(ligadejusticia.com) << why is this loading? And it stops loading when I disable compression?
    9.2 KiB
    330 ms
    …dynamic_avia/avia-merged-styles-a485a74…—608352a55179e.css(ligadejusticia.com)
    64.4 KiB
    1,680 ms
    …jquery/jquery.min.js(ligadejusticia.com)
    30.9 KiB
    1,080 ms

    This is the list of elements with compression disabled (sent you the url on Private Content and will re-enable compression again):
    URL
    Transfer Size
    Potential Savings
    …css/grid.css(ligadejusticia.com)
    2.7 KiB
    180 ms
    …css/base.css(ligadejusticia.com)
    5.8 KiB
    780 ms
    …css/layout.css(ligadejusticia.com)
    15.7 KiB
    1,080 ms
    …blog/blog.css(ligadejusticia.com)
    4.7 KiB
    630 ms
    …postslider/postslider.css(ligadejusticia.com) << there are no post sliders
    1.6 KiB
    480 ms
    …buttons/buttons.css(ligadejusticia.com)
    1.9 KiB
    480 ms
    …comments/comments.css(ligadejusticia.com) << there are no comments
    2.1 KiB
    180 ms
    …contact/contact.css(ligadejusticia.com)
    3.3 KiB
    330 ms
    …gallery/gallery.css(ligadejusticia.com) << no galleries
    1.1 KiB
    180 ms
    …google_maps/google_maps.css(ligadejusticia.com) << no google maps
    1.1 KiB
    180 ms
    …grid_row/grid_row.css(ligadejusticia.com)
    0.9 KiB
    180 ms
    …heading/heading.css(ligadejusticia.com)
    1.6 KiB
    180 ms
    …headline_rotator/headline_rotator.css(ligadejusticia.com) << no headline rotator
    1.0 KiB
    180 ms
    …hr/hr.css(ligadejusticia.com)
    1.2 KiB
    180 ms
    …icon/icon.css(ligadejusticia.com)
    1.3 KiB
    180 ms
    …image/image.css(ligadejusticia.com)
    1.8 KiB
    180 ms
    …slideshow/slideshow.css(ligadejusticia.com) << none
    3.4 KiB
    330 ms
    …contentslider/contentslider.css(ligadejusticia.com) << none
    1.2 KiB
    180 ms
    …masonry_entries/masonry_entries.css(ligadejusticia.com)<< none
    3.9 KiB
    180 ms
    …css/avia-snippet-site-preloader.css(ligadejusticia.com)<< none
    1.2 KiB
    180 ms
    …menu/menu.css(ligadejusticia.com)
    1.8 KiB
    180 ms
    …numbers/numbers.css(ligadejusticia.com)<< none
    1.3 KiB
    180 ms
    …promobox/promobox.css(ligadejusticia.com)<< none
    0.9 KiB
    180 ms
    …slideshow_feature_image/slideshow_feature_image.css(ligadejusticia.com)<< none
    1.1 KiB
    180 ms
    …slideshow_fullsize/slideshow_fullsize.css(ligadejusticia.com)<< none
    1.6 KiB
    180 ms
    …social_share/social_share.css(ligadejusticia.com)<< none
    0.9 KiB
    180 ms
    …table/table.css(ligadejusticia.com)<< none
    2.0 KiB
    180 ms
    …tabs/tabs.css(ligadejusticia.com)<< none
    1.4 KiB
    180 ms
    …team/team.css(ligadejusticia.com)<< none
    1.5 KiB
    180 ms
    …testimonials/testimonials.css(ligadejusticia.com)<< none
    1.9 KiB
    180 ms
    …toggles/toggles.css(ligadejusticia.com)<< none
    1.7 KiB
    180 ms
    …video/video.css(ligadejusticia.com)<< none
    1.1 KiB
    180 ms
    …block-library/style.min.css(ligadejusticia.com)
    9.2 KiB
    480 ms
    …css/shortcodes.css(ligadejusticia.com)
    7.0 KiB
    330 ms
    …aviapopup/magnific-popup.css(ligadejusticia.com)<< none
    2.3 KiB
    180 ms
    …css/avia-snippet-lightbox.css(ligadejusticia.com)<< none
    1.6 KiB
    180 ms
    …css/avia-snippet-widget.css(ligadejusticia.com)
    5.5 KiB
    330 ms
    …dynamic_avia/enfold_child.css(ligadejusticia.com)
    16.7 KiB
    630 ms
    …css/custom.css(ligadejusticia.com)
    0.8 KiB
    180 ms
    …enfold-child/style.css(ligadejusticia.com)
    0.9 KiB
    180 ms
    …jquery/jquery.min.js(ligadejusticia.com)
    30.9 KiB
    930 ms
    …js/avia-compat.js(ligadejusticia.com)
    1.4 KiB
    180 ms

    #1294171
    Eleina_Shinn
    Participant

    Hi,

    I’m still having trouble creating a custom header using Enfold. I’ve gone through all of your documentation, none fits this exact scenario and, even if it did, I dont know which portions of the CSS or Code Snippets I am supposed to use. Is there any way you could create a video or clarify how to know what code to use? I get the how to add a header widget area, but not how to make it look nice and responsive.

    I have created my Widget Area for the Header and I have placed it on the left. I found some code elsewhere on this forum and placed htis CSS to get the button where I want it in your header:

    /*HEADER WIDGET STYLING*/
    #header .widget {
    width: 300px;
    position: absolute;
    top: 50px;
    transform: none;
    left: 95px;
    }

    However, it’s not responsive… on a tablet the button moves toward and overlaps the logo, on mobile it is completely behind the logo, whereas I think it should be stacked, the 3 header items should stack: logo, social icons, widget/button, something like that.

    Here are pictures of what it looks like on differnet screen sizes, because I have a coming soon page up:
    https://couragemecoaching.com/wp-content/uploads/2021/04/Widget-Left-Logo-Center-DESKTOP.jpg
    https://couragemecoaching.com/wp-content/uploads/2021/04/Widget-Left-Logo-Center-TABLET.jpg
    https://couragemecoaching.com/wp-content/uploads/2021/04/widget-Left-Logo-Center-MOBILE.jpg

    Bottom line is that it is so hard to make a custom header using Enfold and I end up choosing other themes because of it. Is there either some documentation that is more clear, or a video? Or will you be making a custom header page available like you have with footers? I LOVE Enfold and want to keep using it but I have to find a way to better understand how to customize the header – it has to be easy. Help!? and Thank you!!

    PS: One more question, is there a way for only the Menu to stick to the top, not the logo and social icons?

    • This topic was modified 4 years, 8 months ago by Eleina_Shinn.
    #1293066

    Doesn’t anyone know how to handle this request? I have created a text-based header widget for the left side before but not using the Enfold social icons.

    hacart
    Participant

    Hi everyone,

    I’ve been having a hard time trying to implement some functions.php code since the changes aren’t taking effect.
    After reading some threads on the topic I consulted with my hosting providers, but after they performed some server-related stuff the changes still didn’t reflect design-wise, so I was wondering whether you might know the reason why this file isn’t working properly?

    The changes I’m pursuing are social icons in slide-out menu and on footer widget (third column).
    I’ve done the source code checking and noticed that one change does appear but is absent in the front-end:

    CHANGE 1: social icons on slide-out menu.

    // add social icons inside the mobile menu
    function ava_custom_script_mod_social(){
    ?>
    <script>
    (function($){
    var int = ”;
    function a() {
    var isMobile = $(‘.av-burger-menu-main’).css(‘display’),
    htmlString = $(‘#header_main .social_bookmarks:first’).find(‘li a’),
    mobileMenu = $(‘.av-burger-overlay’),
    socialString = [];

    if(isMobile == ‘none’) return;
    if($(‘.burger-social’).length) clearInterval(int);

    htmlString.each(function() {
    var socialClass = $(this).parent(‘li’).attr(‘class’),
    socialItems = $(this).wrap(‘<li class=”‘+ socialClass + ‘ av-active-burger-items burger-social”></div>’).parent().unwrap();
    socialString.push(socialItems);
    });

    $(socialString).each(function() {
    $(this).appendTo(‘#av-burger-menu-ul’);
    });
    }

    $(‘#header’).on(‘mousedown’, ‘.av-main-nav-wrap’, function() {
    int = setInterval(function() {
    a();
    }, 500);
    });

    })(jQuery);
    </script>
    <?php
    }
    add_action(‘wp_footer’, ‘ava_custom_script_mod_social’);

    This one does not show up:

    CHANGE 2: social icons on footer widget (third column). I’ve also added the concerning CSS code that comes with it.

    function social_bookmarks_register_widget() {
    register_widget( ‘add_social_bookmarks’ );
    }
    add_action( ‘widgets_init’, ‘social_bookmarks_register_widget’ );

    class add_social_bookmarks extends WP_Widget {
    public function __construct() {
    $widget_ops = array(
    ‘classname’ => ‘socialbookmarks-widget’,
    ‘description’ => __(‘A widget that displays the social bookmarks’, ‘avia_framework’)
    );
    parent::__construct( ‘add_social_bookmarks’, THEMENAME.’ Social Bookmarks’, $widget_ops );
    }

    public function widget( $args, $instance ) {
    $title = apply_filters( ‘widget_title’, $instance[‘title’] );
    echo $args[‘before_widget’];
    //if title is present
    if ( ! empty( $title ) )
    echo $args[‘before_title’] . $title . $args[‘after_title’];
    //output
    echo $before_widget;
    $social_args = array(‘outside’=>’ul’, ‘inside’=>’li’, ‘append’ => ”);
    echo avia_social_media_icons($social_args, false);
    echo $after_widget;
    }

    public function form( $instance ) {
    if ( isset( $instance[ ‘title’ ] ) )
    $title = $instance[ ‘title’ ];
    else
    $title = __( ‘Social Bookmarks’, ‘avia_framework’ );
    ?>
    <p>
    <label for=”<?php echo $this->get_field_id( ‘title’ ); ?>”><?php _e( ‘Title:’ ); ?></label>
    <input class=”widefat” id=”<?php echo $this->get_field_id( ‘title’ ); ?>” name=”<?php echo $this->get_field_name( ‘title’ ); ?>” type=”text” value=”<?php echo esc_attr( $title ); ?>” />
    </p>
    <?php
    }

    public function update( $new_instance, $old_instance ) {
    $instance = array();
    $instance[‘title’] = ( ! empty( $new_instance[‘title’] ) ) ? strip_tags( $new_instance[‘title’] ) : ”;
    return $instance;
    }
    }

    I’ve also tried this code that was suggested in a similar case, but didn’t affect anything:

    function custom_stuff(){
    ?>
    <div style=”display:none”>Find this</div>
    <?php
    }
    add_action(‘wp_footer’, ‘custom_stuff’);

    At this point, I’m questioning whether is a WP or theme-related issue?

    I would truly appreciate some help from you. Link to site has been provided in the private content area.

    Thanks in advance.

    Regards!

    H

    #1292365

    Hey Antiquaritaly,
    Thank you for your patience and the link to your site, do you want buttons that links to facebook and instagram in a footer widget, if so then add this shortcode to a custom html widget:

    [av_buttonrow alignment='center' button_spacing='5' button_spacing_unit='px' alb_description='' id='' custom_class='' template_class='' av_uid='av-kn3eudx6' sc_version='1.0' admin_preview_bg='']
    [av_buttonrow_item label='Facebook' icon_select='yes' icon='ue8f5' font='entypo-fontello' link='manually,http://' link_target='' size='small' label_display='' title_attr='' color_options='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' btn_color_bg='theme-color' btn_custom_bg='#444444' btn_color_bg_hover='theme-color-highlight' btn_custom_bg_hover='#444444' btn_color_font='theme-color' btn_custom_font='#ffffff' av_uid='av-kn3etr2k' sc_version='1.0']
    [av_buttonrow_item label='Instagram' icon_select='yes' icon='ue909' font='entypo-fontello' link='manually,http://' link_target='' size='small' label_display='' title_attr='' color_options='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' btn_color_bg='theme-color' btn_custom_bg='#444444' btn_color_bg_hover='theme-color-highlight' btn_custom_bg_hover='#444444' btn_color_font='theme-color' btn_custom_font='#ffffff' av_uid='av-kn3eu7yf' sc_version='1.0']
    [/av_buttonrow]

    You can create and customize your own buttons using the Magic wand tool using the instructions in the theme documentation.
    If you want to add the Social Share Buttons to a footer widget, you could add this shortcode to a custom html widget:

    [av_social_share title='Share this entry' buttons='' share_facebook='aviaTBshare_facebook' yelp_link='https://www.yelp.com' style='' alb_description='' id='' custom_class='' template_class='' av_uid='av-1a8ccp' sc_version='1.0' admin_preview_bg='rgb(255, 255, 255)']

    But adding this to the footer will lead to incorect back links when users use these because it is in the global footer and not in a specific post, and instagram is not an option in the Social Share Buttons.

    Best regards,
    Mike

    #1291145

    Topic: Align social icons

    in forum Enfold
    cipriana
    Participant

    Hi guys, I´ve added three social icons at the footer (4th coumn widget) and I don´t succeed to align them at the top or middle. I´m really getting mad with this.
    Could you tell me which css code should I add?
    Thanks so much!

    • This topic was modified 4 years, 8 months ago by cipriana.
    #1285825
    Sigmund
    Participant

    Hello at Kriesi,
    I have done

    
     <ul class="noLightbox social_bookmarks icon_count_4">
    	
    	<li class="social_bookmarks_facebook av-social-link-facebook social_icon_1"><a target="_blank" href="https://www.facebook.com/kriesi.at" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Facebook"><span class="avia_hidden_link_text">Facebook</span></a></li>
    			
    	<li class="social_bookmarks_twitter av-social-link-twitter social_icon_2"><a target="_blank" href="http://twitter.com/#/" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Twitter"><span class="avia_hidden_link_text">Twitter</span></a></li>
    	
    	<li class="social_bookmarks_xing av-social-link-xing social_icon_3"><a href="#" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="XING"><span class="avia_hidden_link_text">Skype</span></a></li>
    	
    	<li class="social_bookmarks_linkedin av-social-link-linkedin social_icon_4"><a href="#" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="linkedin"><span class="avia_hidden_link_text">Skype</span></a></li>
    	
    		
    	</ul>

    to get 4 Social Icons in a footer widget. But only the first is showing.

    I have done

    
    .widget .social_bookmarks li { 
    	clear: none !important; 
    }
    
    #top .social_bookmarks li {
    	border: none !important;
    }

    in CSS to get rid of the border beside the icon with no results.
    In the inspector I see that the rest of the icons are under the fb icon.

    How can I find and copy the correct icon code if I want more social icons here?

    Can you assist me? Thanks.

    Best

    #1283219

    Hey mbosse99,

    You can add the social share icons to the footer with the shortcode by adding it to the text widget.

    Please have a look at the following thread:
    https://kriesi.at/support/topic/social-share-buttons-in-footer/

    If you need further assistance please let us know.

    Best regards,
    Victoria

    GWS
    Participant

    Hi,
    We are redesigning a website using the Enfold theme while trying to keep the original look and feel of the old site. The logo and menu are vertical in the left sidebar, but there are social media icons and phone number that need to display in the top right on all pages/posts. So far, we have recreated this set up using a custom widget on the home page and child theme copies of page.php and post.php for the other pages. There are too many pages/posts to add the widget to all. It is not ideal to have it set up this way as we don’t want it to be an issue with newer theme versions down the road. Can you recommend a way to add the custom widget using functions.php instead? The website details are posted in private content. Thank you.

    Rikard,

    Well, yes I can update to the newest version. I just want to be sure about one thing:

    Y’all help me get rid of the “portfolio-item” in the URL and have me put the following code into the functions.php file (which I can definitely add to the new version’s functions.php file) [ https://kriesi.at/support/topic/enfold-remove-portfolio-item-from-the-url/#post-1275954 ].

    The question is, y’all logged in and did this for me: Made the “Portfolio Items Base” for the Permalink settings to be “/” (which you said was also needed to get rid of the “portfolio-item” in the URL). Will this setting go back to the default “portfolio-item” when I delete the current Enfold folder and replace it with the new version’s folder (with the updated functions.php file)?

    [ FYI: Plugins…
    Akismet Anti-Spam
    CoBlocks
    Enable jQuery Migrate Helper (Not Activated)
    Enable Media Replace
    Gravity Forms (Not Activated)
    reSmush.it Image Optimizer
    Simple Revisions Delete by bweb
    Social Media and Share Icons (Ultimate Social Media)
    Social Media Widget by Acurax (Not activated)
    Sucuri Security – Auditing, Malware Scanner and Hardening
    WP Media Categories
    WP101 Video Tutorials
    Yoast SEO ].

    Thanks for your help.

    Mark Besh
    Visual Impact Systems

    #1279213

    In reply to: Social Icons

    Hey paulbergin,

    Please have a look at the following threads:
    https://kriesi.at/support/topic/social-icons-in-footer-10/

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1277785

    Topic: social icons in widget

    in forum Enfold
    williamslyd
    Participant

    Hi there, I have found lots of old threads about how to add social icons in a widget area. But it seems odd to me that such a popular feature is so complicated to implement. I am hoping there has been an updated easier way to do this in Enfold. Thank you

    Hi projectt_co_uk,

    Thank you for clarifying. https://share.getcloudapp.com/kpuNgxLY I see the widget and it will show up on screen sizes 768px and above if you remove the css hiding it.
    Image 2021-01-19 at 12.44.55.png

    https://share.getcloudapp.com/P8umBqy6 Here I see the button and the burger, but no social share icons, since there is no room for them. We can have them show up if you need.

    https://share.getcloudapp.com/geuoLe4y The footer looks exactly like this on my iPhone.

    Could you please clear the cache, check again and get back to us.

    Best regards,
    Victoria

Viewing 30 results - 91 through 120 (of 986 total)