-
AuthorSearch Results
-
August 31, 2021 at 8:36 am #1319074
You can close this, I found the cause why the CSS was not propagated to the event page. It was caused by a different button style in the social media section of Enfold in “Share Button Bar Style”. When both are set to rectangular, it works fine with color propagation.
August 30, 2021 at 2:23 pm #1318978Topic: Enfold Ankerlinks / Sprungmarken funktionieren nicht
in forum Enfoldschnelletexte.de
ParticipantHallo, auf https://johannesfaupel.com/ funktionieren keine Links zu Sprungmarken.
Wenn ich https://johannesfaupel.com/#kontaktaufnahme direkt in der URL-Zeile eingebe, funktioniert der Link.
Hinterlege ich diesen Link aber bei einem Button, funktioniert er nicht.
Das gleiche Phänomen besteht, wenn ich einen Link mit demselben Ziel als Textlink einbaue.
Bisherige Lösungsversuche:
WP vollständig neu installiert.
Enfold neu installiert.
Alle Plugins testweise deaktiviert.
.htaccess auf minimalen WP-Standard reduziertWie kann ich dieses Problem lösen?
Vielen Dank!August 29, 2021 at 11:43 pm #1318865In reply to: Amazon Icon is showing Pencil Icon?
Hey Jad,
Thank you for the link to your site but the login doesn’t work. I assume that you followed these steps: How to add Custom Social Icons to Enfold options
But looking at your code snippet above I see that you didn’t specify the font, you used the word “font” instead of “entypo-fontello”
also please note if you are not using a child theme you need to add the code to the enfold/functions.php at around line 47 afterif( isset( $avia_config['use_child_theme_functions_only'] ) ) { return; }but I see that you are using a child theme so perhaps you have a curly quote in your code?
This is the code I used which worked for me:// Register new icon as a theme icon function avia_add_custom_icon($icons) { $icons['amazon'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue924'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); // Add new icon as an option for social icons function avia_add_custom_social_icon($icons) { $icons['Amazon'] = 'amazon'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);the social profile was added at Enfold Theme Options ▸ Social Profiles ▸ Your social profiles at the bottom of the list

and on the frontend it shows like this

Don’t forget the Amazon orange mouse-over css:#top #wrap_all .av-social-link-amazon:hover a{ color:#fff; background-color:#FF9900; }Best regards,
MikeAugust 28, 2021 at 2:35 pm #1318774In reply to: Custom Element and Button Row
Hi Rikard,
First the informations about my system:Theme: Enfold
Version: 4.8.6.2
Installed: enfold
AviaFramework Version: 5.0
AviaBuilder Version: 4.8
aviaElementManager Version: 1.0.1
– – – – – – – – – – –
ChildTheme: Enfold Child
ChildTheme Version: 1.0
ChildTheme Installed: enfoldML:256-PU:44-PLA:14
WP:5.8
Compress: CSS:disabled – JS:disabled
Updates: enabled – token has changed and not verified
PLAu:13
–>Now the problem:
I would like to make a custom element – a button row. Everything is ok, but I only get a simply button, not a button row and I can not add buttons as like in your example: https://kriesi.at/documentation/enfold/custom-element-templates/For me it looks like this, with no possibility to create a second button:

The same for example with accordeon.
The problem I think is just with sub-items, everything else is working.I have activated the advanced options for the custom element and put the code in my child theme Functions.php.
Any idea or do I use it wrong.
Thanks and regards
BarbaraAugust 27, 2021 at 4:46 pm #1318688In reply to: The Events Calendar Design broken
Hey Mike,
Could you please go to /enfold/config-events-calendar/event-mod-css-dynamic.php and replace it with – https://pastebin.com/VfxiAJH4
Then replace event-mod.css file with this one – https://pastebin.com/pgdUrixP and then go to Enfold theme options and save? This should increase the content width, set list color to content color.Buttons and mobile version look fine on my installation – https://imgur.com/a/AnXNQf2. If applying changes above and clearing cache does not help, please create temporary admin logins and post them here privately so we can look into it :)
Best regards,
YigitAugust 27, 2021 at 2:47 pm #1318656Hey bobfurgo,
Thank you for your patience and the link to your site, try adding this script to the end of your functions.php file in Appearance ▸ Editor, it is for the horizontal gallery and counts the slides and adds a class to first and last ones, then hides the next and previous buttons on the first and last slide.function horizontal_gallery_remove_first_last_slideshow_arrows() { ?> <script> (function($){ $(window).load(function(){ var lis = $('.av-horizontal-gallery-slider .av-horizontal-gallery-wrap').length; var hgs = $('.av-horizontal-gallery-slider .av-horizontal-gallery-wrap'); var prev = $('.av-horizontal-gallery .av-horizontal-gallery-prev'); var next = $('.av-horizontal-gallery .av-horizontal-gallery-next'); $('.av-horizontal-gallery-slider .av-horizontal-gallery-wrap').each(function(index){ if(index<1)$(this).addClass('first'); if(index>=lis-1)$(this).addClass('last'); }) $('.avia-slideshow-arrows a').click(function(){ if (hgs.is('.first.av-active-gal-item')){ prev.css({'display' : 'none'}); }else{ prev.css({'display' : 'block'}); } if (hgs.is('.last.av-active-gal-item')){ next.css({'display' : 'none'}); }else{ next.css({'display' : 'block'}); } }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'horizontal_gallery_remove_first_last_slideshow_arrows');If you have any issues with it please check that you are not forcing the jQuery to load in the footer in the theme option Enfold Theme Options ▸ Performance ▸ Load jQuery in your footer or with your caching plugin.
Best regards,
MikeAugust 27, 2021 at 2:28 pm #1318650In reply to: Checkboxes stretched
Hi,
Thank you for your patience, and the link to your site but I don’t believe that I’m seeing what you originally intended, perhaps you have changed the layout?
Please see the screenshot in the Private Content area of what I’m seeing in step two, the radio buttons look at work correctly for me on Windows 10 in Chrome.
As I recall with this plugin some of the styles have a lower specificity than what the Enfold form elements use, for example our rules begin with an ID #top and the Everest form builder doesn’t use any IDs, so if you have a rule that is being overwritten you could copy it to your custom css and add the ID #top to the beginning.Best regards,
MikeAugust 27, 2021 at 9:23 am #1318604In reply to: Avia Layout Architect not sticky
Hi,
Thank you for the update.
Looks like the expand button is not available when the Block Editor is active. Are you actually using the new block editor? If not, you can switch back to the classic editor by adjusting the Enfold > Theme Options > Select your editor settings.
We will forward the issue to our channel.
Best regards,
IsmaelAugust 27, 2021 at 6:22 am #1318576In reply to: Registration?
Hi,
You can follow this link to open a new thread, or click this button highlighted in the screenshot: https://imgur.com/a/AnoSPNb
Best regards,
RikardAugust 27, 2021 at 5:15 am #1318557In reply to: Changing a Buttons Font Size
Hi Dave,
There’s no option for that setting yet, a workaround for that currently is to use Custom CSS Class.
Edit the button, then go to Advanced > Developer Settings > Custom CSS Class then put mybutton in the text field then save.
Go to Enfold > General Styling > Quick CSS, then add this CSS code:.mybutton .avia-button { font-size: 20px; }Adjust the font value as you see fit.
Best regards,
NikkoAugust 26, 2021 at 3:31 pm #1318474In reply to: Remove arrow from both side of slider
Hi Sunil,
1- I went to LayerSlider WP, chose your slider and went to Slider Settings > Navigation Area and disabled “Show Prev & Next buttons”. Please review your website.
2- That is Portfolio Grid element which is used to display your Portfolio Items from portfolio post type. You can go to Portfolio Items and add new ones or edit existing ones. You can find more information on Portfolio Grid here – https://kriesi.at/documentation/enfold/portfolio-grid/ :)
Best regards,
YigitAugust 26, 2021 at 3:37 am #1318359Topic: Changing a Buttons Font Size
in forum EnfoldDave
ParticipantHi Support
How can we change a Buttons Font Size.I know we can change Button Styling in Enfold > Advanced Styling > Buttons
However when you use a Button on a page, and we can select the Button Size in Button > Styling. How can we change that Buttons Font size?
Not all buttons across the complete site!Thanks in advance for your help
Cheers DaveAugust 25, 2021 at 12:20 pm #1318271Topic: The Events Calendar Design broken
in forum EnfoldYourChoice Informatik GmbH
ParticipantHi
We use Enfold with the The Events Calendar plugin.
Now, they updated the plugin and it seems, that the design of the events is broken.
For example, the additional infos (details and map) is too narrow on desktops, the enumerations are yellow instead of black, the buttons for the Google calendar and iCal export look special, and so on.
Also on the mobiles it does not look very nice.
What can we do here? Will there be an Enfold update for that it works fine again with The Events calendar?
See an example in the private content section.
Thanks very much.
Best regards
Mike-
This topic was modified 4 years, 7 months ago by
YourChoice Informatik GmbH.
August 25, 2021 at 11:52 am #1318264Topic: Can´t update Enfold. Critical errors everywhere
in forum Enfoldloewinwebsite2021
ParticipantHi there,
I want to update a clients website but it doesn´t work. When I try to update enfold via “update button” it distroys the whole system.
When I try to update via FTP it shows 89 critical errors and distroys everything.
In the enfold settings there is nothing to see anymore. All categories are just blank and white background. That´s why Enfold should be updated asap I think.Below the footer there is a section of text which is also an error. And some Site links are not working.
Thanks for help.
Michael
August 25, 2021 at 6:33 am #1318222In reply to: Portfolio random – cache GetFlywheel & WP Rocket
Hi,
You can manually edit taxonomy or category query within the sort_buttons function in the enfold\config-templatebuilder\avia-shortcodes\portfolio\portfolio.php file but this will get applied on all sort buttons in every portfolio grid element. You have to adjust the order and orderby parameter.
//get all categories that are actually listed on the page $categories = get_categories( array( 'taxonomy' => $params['taxonomy'], 'hide_empty' => 0 ) );// https://developer.wordpress.org/reference/functions/get_terms/
Have you tried using this plugin instead? We have not tested it, so we are not sure if it will work without interfering with the query filter.
// https://wordpress.org/plugins/custom-taxonomy-order-ne/
Best regards,
IsmaelAugust 24, 2021 at 5:18 pm #1318153Topic: Custom Icon – added to Social – label showing wrong.
in forum Enfoldmmc501
ParticipantI’ve added a custom icon as per the documentation: https://kriesi.at/documentation/enfold/social-share-buttons/#how-to-add-custom-social-icons-to-enfold-options
The icon and link are working ok. But when I hovel over it it says: Icon_name instead ot Tiktok.
// Register new icon as a theme icon function avia_add_custom_icon($icons) { $icons['icon_name'] = array( 'font' =>'fontello', 'icon' => 'ue800'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); // Add new icon as an option for social icons function avia_add_custom_social_icon($icons) { $icons['Tik Tok'] = 'icon_name'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);The same issue is referenced here: https://kriesi.at/support/topic/tiktok-in-social-media/#post-1305097 and it was fixed for someone but the solution wasn’t posted.
August 22, 2021 at 5:00 pm #1317833Topic: caption title and caption text enfold health coach
in forum Enfoldpixar24
ParticipantHello,
could I get the caption title and the caption text used on the slides in the fullscreen slider ( homepage ) from demo ‘enfold health coach ‘ ?
I removed the default slides, but the text was removed too with it…
Could I get the text again so the buttons appear again ( and text appears also as shown on the demo ).Thank you
August 21, 2021 at 3:18 pm #1317738Hi,
Thank you for your patience and sorry for the late reply, the login didn’t work for me but I did find the cause, at mobile the transform rule is overruled by this css for the parallax effect:.avia_mobile #top .av-parallax-section { z-index: 0; -webkit-transform: translate3d(0,0,0);So please try replacing your css with this:
#main #section-width { max-width: 91%; left: 50%; position: relative; transform: translateX(-50%)!important; }After applying the css, please clear your browser cache and check.
As for your logo image being blurry, I’m not sure that I’m seeing it, but my eyes are not that great, but below I linked to the current 300×159.png and the original 650×344.png try looking at both in your browser if you do see a difference you have two choices, you can download the original and resize it on your desktop manually preserving the image quantity and upload it to the exact location via FTP or your webhost file manager. This is often better than the WordPress image software for smaller images.
Or you can go to the Enfold Theme Options ▸ Logo and enter the URL to the full size image below and save with the Save all changes button, Not the Upload button. This will then show the new image without modifing it.

Best regards,
MikeAugust 20, 2021 at 12:35 pm #1317624In reply to: Tracking contact form with Google Analytics
Hi,
Glad to hear this helped and thanks for pointing out the error, I have posted the correction below for future readers.
If you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.add_filter('avf_contact_form_submit_button_attr','avia_add_submit_attributes_to_cf', 10, 3); function avia_add_submit_attributes_to_cf($att, $formID, $form_params){ if(is_page('500')){ $att = "onclick=\"_gaq.push(['_trackEvent','Contact Form one Send','Click/Touch','Footer']);\""; } if(is_page('400')){ $att = "onclick=\"_gaq.push(['_trackEvent','Contact Form two Send','Click/Touch','Footer']);\""; } return $att; }Best regards,
MikeAugust 19, 2021 at 4:17 pm #1317512Topic: Video in Avia Slideshow is muted by default
in forum Enfoldrixxen
ParticipantHi,
I am using the Avia Slideshow (Easy Slider, not Layerslider) on a client’s website.
In this slideshow, there is a self-hosted video in the first slide and then images in the following slides.
The problem with the video is that it will always be muted, no matter whether I check or uncheck the mute option in the player settings of the video slide.
Even when I click the unmute button in the playing video (in the front-end), the volume is set to zero.
When I then move my mouse cursor to slide up the volume, the volume slider disappears.
The only way to unmute the video is by pressing the arrow up key on my keyboard.
It’s kind of a UX nightmare ;)Please try it out yourselves (see URL in the private content).
I have checked the JavaScript file
/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow-video.js
but any changes in that file didn’t have any effect.Thanks in advance for your help!
Cheers
Fabian-
This topic was modified 4 years, 7 months ago by
rixxen.
August 16, 2021 at 9:46 pm #1317011Hi 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 PanelAlso, I contacted my host. I can whitelist an IP address, not an API. Where do I get the Envato IP address?
August 13, 2021 at 6:49 pm #1316667Topic: Tooltip on social share link button
in forum Enfoldorianos
ParticipantI used the indications of this topic:
https://kriesi.at/support/topic/enfold-4-8-3-social-media-buttons-on-product-page-not-displayed-correctly/
on two sites.
I don’t understand why the “tooltip” behaves differently (see please screenshot site 1 and screenshot site2 :(How do to have the tooltip at the top of the share button (like site1) on both sites?
Please find the links of the 2 sites in Private content.Best regards
OrianoAugust 13, 2021 at 3:04 pm #1316640Hi Mike, with 55 px its looks nice. Thanks,
Possible, Kriesi integrate the button inside an own container or something else? I think, all the Enfold-User have this issue?Can you answer question #2 as well? Is an element there, what can create such behavior?
Best regards
S
-
This reply was modified 4 years, 7 months ago by
Hokuspokus.
August 12, 2021 at 4:07 pm #1316465hbaumhardt
ParticipantWordpress 5.8 Enfold child 4.8.4
I do not want the cookibar modal/overlay on all page footers, but need to include the [av_privacy_modal_popup_button] shortcode in a Privacy policy so users can manage their cookies.
Using functions.php add_theme_support(‘avia_gdpr_permanent_hide_message_bar’); does not seem to suppress the footer cooke bar, which is clearly conflicting with something else in the site as it always loads expanded and the buttons are inconsistent. Looks like this:
or in relatime skkmods.comSo two questions:
(1) What do I need to do to force the site to respect avia_gdpr_permanent_hide_message_bar suppress ?
(2) Any idea what may be causing the cookiebar expansion ?-
This topic was modified 4 years, 7 months ago by
hbaumhardt.
August 12, 2021 at 6:48 am #1316378In reply to: Advanced Layout Editor
Hi,
Thank you for the inquiry.
The button displays back when we disable the mtn_setup_theme function in the child theme’s functions.php file. The function limits the ALE to the mtn-faq post type. You may need to use the avf_alb_supported_post_types filter instead.
Examples:
// https://kriesi.at/support/topic/custom-post-type-not-displaying-correctly/#post-1299723
// https://kriesi.at/support/topic/pods-enfold-advanced-layout-editor/#post-1281976Best regards,
IsmaelAugust 11, 2021 at 9:34 pm #1316329sagar kumar sahu
GuestHi Team,
we have got a project from our client 2 months back and it’s based on ENFOLD theme and it really going well but a few days back I am getting an error “there is a critical issue in your site”, while click on customize button so we are now stuck in development, also we got an error mail from WordPress so please look into it and help us, we also don’t know about Genuity of the theme because we sign the product in the midway of development, we are also ready to pay for resolution please find out below error and contact if any (Email address hidden if logged out) , +917008035073Error Mail:
Howdy!Since WordPress 5.2 there is a built-in feature that detects when a plugin or theme causes a fatal error on your site and notifies you with this automated email.
In this case, WordPress caught an error with your theme, Enfold.
First, visit your website (https://www.happymovermsct.com/) and check for any visible issues. Next, visit the page where the error was caught (https://www.happymovermsct.com/wp-admin/customize.php?url=https%3A%2F%2Fwww.happymovermsct.com%2F) and check for any visible issues.
Please contact your host for assistance with investigating this issue further.(already contacted to host partner and they said theme issue )
If your site appears broken and you can’t access your dashboard normally, WordPress now has a special “recovery mode”. This lets you safely log in to your dashboard and investigate further.
To keep your site safe, this link will expire in 1 day. Don’t worry about that, though: a new link will be emailed to you if the error occurs again after it expires.
When seeking help with this issue, you may be asked for some of the following information:
WordPress version 5.8
Current theme: Enfold (version 4.6.3.1)
Current plugin: (version )
PHP version 7.4.22Error Details
=============
An error of type E_ERROR was caused in line 619 of the file /home/webclexc/happymovermsct.com/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php. Error message: Uncaught TypeError: Argument 2 passed to Avia_Gutenberg::handler_display_post_states() must be an instance of WP_Post, null given, called in /home/webclexc/happymovermsct.com/wp-includes/class-wp-hook.php on line 303 and defined in /home/webclexc/happymovermsct.com/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php:619
Stack trace:
#0 /home/webclexc/happymovermsct.com/wp-includes/class-wp-hook.php(303): Avia_Gutenberg->handler_display_post_states(Array, NULL)
#1 /home/webclexc/happymovermsct.com/wp-includes/plugin.php(189): WP_Hook->apply_filters(Array, Array)
#2 /home/webclexc/happymovermsct.com/wp-admin/includes/template.php(2239): apply_filters(‘display_post_st…’, Array, NULL)
#3 /home/webclexc/happymovermsct.com/wp-includes/nav-menu.php(831): get_post_states(NULL)
#4 [internal function]: wp_setup_nav_menu_item(Object(WP_Post))
#5 /home/webclexc/happymovermsct.com/wp-includes/nav-menu.php(755): array_map(‘wp_setup_nav_me…’, Array)
#6 /home/webclexc/happymovermsct.com/wp-content/plugins/August 11, 2021 at 9:17 pm #1316327ihawkr14
ParticipantHello Enfold,
I am having some sort of issue between WooCommerce, Ultimate Woo Auctions Plugin, and Enfold Theme. When selecting the ‘-‘ or’+’ buttons, the quantity in the amount box shows as ‘NaN’ instead of a numerical value, I’ve reached out to the dev of the plugin, and he said it seems to be an issue with Enfold theme wanting to use it’s own quantity selectors?

I’m not very tech-savvy when it comes to coding so I’m hoping to find a simple workaround to make this function correctly.
Thank you!
-
This topic was modified 4 years, 7 months ago by
ihawkr14. Reason: image not loading
August 10, 2021 at 12:57 pm #1316048In reply to: Post CSS and Caching issue
Hey Thomas,
Thanks for contacting us.
The post css files hold custom stylings for ALB elements that had been placed inline html style=”..” before.
We started to change this with 4.8.4 for 2 main reasons:– make the code for the elements better maintainable and readable (and keep it stable) because creating the stylings and layout html has been seperated
– we started to add more styling possibilities to elements like button, notification box, section, columns, … (and will continue with it in oncoming versions) and inline styles do not support everything (e.g hover effects, …)If you check the HTML of a page you will find the link to the css file:
<link rel='stylesheet' id='avia-single-post-206-css' href='http://localhost/wp56/wp-content/uploads/avia_posts_css/post-206.css?ver=ver-1628531209' type='text/css' media='all' />The “ver=…..” is a unique timestamp that is generated when the css file is generated (once on first page load or when it had been invalidated).
The css file(s) are invalidated:
– when a page/post/… is updated
– when saving theme options
– when theme is updated (action ava_after_theme_update is triggered)With 4.8.6.1 we added filter avf_post_css_create_file to skip generating these files and add it in
<style>..</style>tags:
So on developing sites you can use the filter, on live sites after changing files save theme options and clear server cache should do.
Best regards,
GünterAugust 10, 2021 at 9:13 am #1316004Hokuspokus
ParticipantCan you please show new features in a video? It doesn’t even have to have sound, only show features and show options. Or speak in pictures in a PDF. It would be desirable to show more information about tweaks, bugs and new features for your users. Also, you would have content for YouTube right away, and you would be doing your users a huge favor. User can hardly see the abundance of improvements from a changelog.
What’s behind: (As singles examples). Every user of enfold must determine the new features. But if you show all in a short video, this would be faster for all instead to try all objects. The most is for normal users cryptic stuff, hard to understand. It’s developer language.
“tweak: columns – backwards comp padding 0px as default only adding class av-zero-column-padding and no styling”: “bugs”
“feature: new option “image size” for ALB Masonry Gallery”
Following elements have been updated (not with all options), will be extended:– Animated Numbers (sonar effect, circle border styles when with circle)
– Button
– Button Row
– Columns (SVG Dividers)
– Fullwidth Button
– Icon (only custom sonar effect when with border)
– Icon List
– Notification Box
– PromoBox
– Sections (SVG Dividers)
– Special Heading (new color options only)
– Testimonials (new font color)Thx,
S.
August 8, 2021 at 8:48 pm #1315145Topic: Footer Widgets with custom HTML keep resetting and reverting
in forum Enfoldxuamox
ParticipantHi,
I have an Enfold footer with three columns. In first two columns, I have Custom HTML widget(s). The third column uses the sitemap widget.
The first column has text (1 widget)
The second column has some text and HTML code for a button and some HTML code for social media icons (2 widgets)
The third column is a sitemap (1 widget)I save my widgets, everything looks good on the page, but then when I check it the next day, the first two columns have been essentially blown out.
I have never experienced this problem before.
Have you come across something like this? and do you think it is Enfold related or WordPress related? Not sure how to troubleshoot
I have turned off most plugins to see if there might be any conflicts.
Also, I have been testing each widget with some simple text and then re-introducing the HTML that I want to use.
What I found is that when I try and copy and past the icon elements in the custom HTML widget, that seems to cause a problem. Not a 100% but that seems like it might be the reason. The code I am using is the following:
<span class="av_font_icon avia_animate_when_visible avia-icon-animate av-icon-style- av-no-color avia-icon-pos-left avia_start_animation avia_start_delayed_animation" style=""><a href="https://www.facebook.com/jill.topp.100" class="av-icon-char" style="font-size:40px;line-height:40px;" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></a></span> <span class="av_font_icon avia_animate_when_visible avia-icon-animate av-icon-style- av-no-color avia-icon-pos-left avia_start_animation avia_start_delayed_animation" style=""><a href="https://twitter.com/BCSpeech" class="av-icon-char" style="font-size:40px;line-height:40px;" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></a></span>-
This topic was modified 4 years, 7 months ago by
xuamox.
-
This topic was modified 4 years, 7 months ago by
-
AuthorSearch Results
-
Search Results
-
Hallo, auf https://johannesfaupel.com/ funktionieren keine Links zu Sprungmarken.
Wenn ich https://johannesfaupel.com/#kontaktaufnahme direkt in der URL-Zeile eingebe, funktioniert der Link.
Hinterlege ich diesen Link aber bei einem Button, funktioniert er nicht.
Das gleiche Phänomen besteht, wenn ich einen Link mit demselben Ziel als Textlink einbaue.
Bisherige Lösungsversuche:
WP vollständig neu installiert.
Enfold neu installiert.
Alle Plugins testweise deaktiviert.
.htaccess auf minimalen WP-Standard reduziertWie kann ich dieses Problem lösen?
Vielen Dank!Topic: Changing a Buttons Font Size
Hi Support
How can we change a Buttons Font Size.I know we can change Button Styling in Enfold > Advanced Styling > Buttons
However when you use a Button on a page, and we can select the Button Size in Button > Styling. How can we change that Buttons Font size?
Not all buttons across the complete site!Thanks in advance for your help
Cheers DaveHi
We use Enfold with the The Events Calendar plugin.
Now, they updated the plugin and it seems, that the design of the events is broken.
For example, the additional infos (details and map) is too narrow on desktops, the enumerations are yellow instead of black, the buttons for the Google calendar and iCal export look special, and so on.
Also on the mobiles it does not look very nice.
What can we do here? Will there be an Enfold update for that it works fine again with The Events calendar?
See an example in the private content section.
Thanks very much.
Best regards
MikeHi there,
I want to update a clients website but it doesn´t work. When I try to update enfold via “update button” it distroys the whole system.
When I try to update via FTP it shows 89 critical errors and distroys everything.
In the enfold settings there is nothing to see anymore. All categories are just blank and white background. That´s why Enfold should be updated asap I think.Below the footer there is a section of text which is also an error. And some Site links are not working.
Thanks for help.
Michael
Hello,
could I get the caption title and the caption text used on the slides in the fullscreen slider ( homepage ) from demo ‘enfold health coach ‘ ?
I removed the default slides, but the text was removed too with it…
Could I get the text again so the buttons appear again ( and text appears also as shown on the demo ).Thank you
I used the indications of this topic:
https://kriesi.at/support/topic/enfold-4-8-3-social-media-buttons-on-product-page-not-displayed-correctly/
on two sites.
I don’t understand why the “tooltip” behaves differently (see please screenshot site 1 and screenshot site2 :(How do to have the tooltip at the top of the share button (like site1) on both sites?
Please find the links of the 2 sites in Private content.Best regards
OrianoWordpress 5.8 Enfold child 4.8.4
I do not want the cookibar modal/overlay on all page footers, but need to include the [av_privacy_modal_popup_button] shortcode in a Privacy policy so users can manage their cookies.
Using functions.php add_theme_support(‘avia_gdpr_permanent_hide_message_bar’); does not seem to suppress the footer cooke bar, which is clearly conflicting with something else in the site as it always loads expanded and the buttons are inconsistent. Looks like this:
or in relatime skkmods.comSo two questions:
(1) What do I need to do to force the site to respect avia_gdpr_permanent_hide_message_bar suppress ?
(2) Any idea what may be causing the cookiebar expansion ?Hi Team,
we have got a project from our client 2 months back and it’s based on ENFOLD theme and it really going well but a few days back I am getting an error “there is a critical issue in your site”, while click on customize button so we are now stuck in development, also we got an error mail from WordPress so please look into it and help us, we also don’t know about Genuity of the theme because we sign the product in the midway of development, we are also ready to pay for resolution please find out below error and contact if any (Email address hidden if logged out) , +917008035073Error Mail:
Howdy!Since WordPress 5.2 there is a built-in feature that detects when a plugin or theme causes a fatal error on your site and notifies you with this automated email.
In this case, WordPress caught an error with your theme, Enfold.
First, visit your website (https://www.happymovermsct.com/) and check for any visible issues. Next, visit the page where the error was caught (https://www.happymovermsct.com/wp-admin/customize.php?url=https%3A%2F%2Fwww.happymovermsct.com%2F) and check for any visible issues.
Please contact your host for assistance with investigating this issue further.(already contacted to host partner and they said theme issue )
If your site appears broken and you can’t access your dashboard normally, WordPress now has a special “recovery mode”. This lets you safely log in to your dashboard and investigate further.
To keep your site safe, this link will expire in 1 day. Don’t worry about that, though: a new link will be emailed to you if the error occurs again after it expires.
When seeking help with this issue, you may be asked for some of the following information:
WordPress version 5.8
Current theme: Enfold (version 4.6.3.1)
Current plugin: (version )
PHP version 7.4.22Error Details
=============
An error of type E_ERROR was caused in line 619 of the file /home/webclexc/happymovermsct.com/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php. Error message: Uncaught TypeError: Argument 2 passed to Avia_Gutenberg::handler_display_post_states() must be an instance of WP_Post, null given, called in /home/webclexc/happymovermsct.com/wp-includes/class-wp-hook.php on line 303 and defined in /home/webclexc/happymovermsct.com/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php:619
Stack trace:
#0 /home/webclexc/happymovermsct.com/wp-includes/class-wp-hook.php(303): Avia_Gutenberg->handler_display_post_states(Array, NULL)
#1 /home/webclexc/happymovermsct.com/wp-includes/plugin.php(189): WP_Hook->apply_filters(Array, Array)
#2 /home/webclexc/happymovermsct.com/wp-admin/includes/template.php(2239): apply_filters(‘display_post_st…’, Array, NULL)
#3 /home/webclexc/happymovermsct.com/wp-includes/nav-menu.php(831): get_post_states(NULL)
#4 [internal function]: wp_setup_nav_menu_item(Object(WP_Post))
#5 /home/webclexc/happymovermsct.com/wp-includes/nav-menu.php(755): array_map(‘wp_setup_nav_me…’, Array)
#6 /home/webclexc/happymovermsct.com/wp-content/plugins/Hello Enfold,
I am having some sort of issue between WooCommerce, Ultimate Woo Auctions Plugin, and Enfold Theme. When selecting the ‘-‘ or’+’ buttons, the quantity in the amount box shows as ‘NaN’ instead of a numerical value, I’ve reached out to the dev of the plugin, and he said it seems to be an issue with Enfold theme wanting to use it’s own quantity selectors?

I’m not very tech-savvy when it comes to coding so I’m hoping to find a simple workaround to make this function correctly.
Thank you!
Can you please show new features in a video? It doesn’t even have to have sound, only show features and show options. Or speak in pictures in a PDF. It would be desirable to show more information about tweaks, bugs and new features for your users. Also, you would have content for YouTube right away, and you would be doing your users a huge favor. User can hardly see the abundance of improvements from a changelog.
What’s behind: (As singles examples). Every user of enfold must determine the new features. But if you show all in a short video, this would be faster for all instead to try all objects. The most is for normal users cryptic stuff, hard to understand. It’s developer language.
“tweak: columns – backwards comp padding 0px as default only adding class av-zero-column-padding and no styling”: “bugs”
“feature: new option “image size” for ALB Masonry Gallery”
Following elements have been updated (not with all options), will be extended:– Animated Numbers (sonar effect, circle border styles when with circle)
– Button
– Button Row
– Columns (SVG Dividers)
– Fullwidth Button
– Icon (only custom sonar effect when with border)
– Icon List
– Notification Box
– PromoBox
– Sections (SVG Dividers)
– Special Heading (new color options only)
– Testimonials (new font color)Thx,
S.
