-
Search Results
-
I have been using enfold for quite some time. recently I started building a new site with it for work. I am using a grid row but it will not stack properly on mobile. I have set Column Behaviour When Fullwidth to “individually select position for each column” and then have gone and numbered each column accordingly.
In this example the image is set to 2 and the text box with button is set to 1 because I want the image to stack below the text box on mobile but instead the image is showing up on top.
I am getting a flood of deprecation warnings in my error_log file and it is slowing down our server’s performance, especially noticeable when editing posts and pages.
It appears the offending functions are:
av_icon_char
av_icon_class
av_icon_stringI cannot find information on what the correct replacements are. Is this something you can help me with?
Here are some samples of how we are currently using these functions.
av_icon_char
$icon = av_icon_char( ‘search’ );av_icon_string
$class = av_icon_class( ‘search’ );Here are some examples from the error_log file:
[21-May-2025 18:26:12 UTC] PHP Deprecated: Function av_icon_char is deprecated since version 7.0! Use No longer used by Enfold instead. in /home/maritimetravel/public_html/wp-includes/functions.php on line 6121
[21-May-2025 18:26:12 UTC] PHP Deprecated: Function av_icon_class is deprecated since version 7.0! Use No longer used by Enfold instead. in /home/maritimetravel/public_html/wp-includes/functions.php on line 6121
[21-May-2025 18:26:12 UTC] PHP Deprecated: Function av_icon_char is deprecated since version 7.0! Use No longer used by Enfold instead. in /home/maritimetravel/public_html/wp-includes/functions.php on line 6121
[21-May-2025 18:26:12 UTC] PHP Deprecated: Function av_icon_class is deprecated since version 7.0! Use No longer used by Enfold instead. in /home/maritimetravel/public_html/wp-includes/functions.php on line 6121Our error_log file grows about 200 MB per day.
Can you please direct me on how we can update our child theme to address these deprecation warnings?
This is a continuation of this thread: https://kriesi.at/support/topic/tab-section-height-problem-3/
Sorry to revisit this after so long. I was initially using this code successfully, but then had a strange problem and forgot to follow up with you on a solution.
The problem… the text and thumbnails inside the tab section look like they are “pulsating”, slightly moving around. When I remove your code, then the “pulsating” stops. Not sure what is causing it. I’ve included a screening recording below (YouTube link).
Please help! I have been through the topics here but cannot find anything that fixes this display issue.
I have added the following Simple CSS suggested as some moderators suggested in the topics I found when I searched here.
But they were quite old replies here so not sure if still valid..comment-container, .text-sep-comment, .text-sep-cat, .blog-author { display: none !important; }
span.minitext {
display: none!important;
}h3.miniheading {
display: none!important;
}The code did remove some lines, but I still see the Blog Replies button styling on the bottom of almost every page (except Home and About) with a note saying “You must be logged in to post a comment” .
The replies number is displaying as zero – probably because I don’t have any posts on this website as it is a simple services website and not a blog.
I have also turned off commenting in the Settings, but still no luck.Any help much appreciated!
Thanks
NicolaTopic: Horizontal gallery on mobile
Hi-
We’re running into an issue with the display of a horizontal gallery when it’s viewed on a phone. It works well on a desktop, but when viewed on a phone the photos are cropped. I tried playing around with the settings but it’s not helping. My client doesn’t want me to hide the gallery when viewed on a small device, so I’m wondering if you have any suggestions. They like the way it looks on the desktop and doesn’t want any changes there. The problem is the website is password protected. Do you need to see what I’m talking about or does this description make sense? I don’t know if there’s even any other option but to hide it so I’m hoping you might have a suggestion.Thank you!
ErinTopic: z index or scroll issue?
I cannot seem to figure this out as I can’t recreate it on my end. Am I able to attach a video from my client?
The issue is the footer page content and the logo overlap (they scroll over) the cart so it’s ineligible on mobile, and they have the same issue on desktop. I’m not sure if I need to lock the background page when the sidecart is open or how I can resolve this issue. I have the side cart shortcodes within header widgets.
Any advice is greatly appreciated. You can see what I mean by adding items to the cart (add 4-5 so it starts to scroll) and then resize the window with the side cart open.
Hi,
I am having issues with the fullwidth easy slider on my landing page.
I have uploaded videos of 4 seconds each and would like to fade between them for a seamless transition, however, the video stops and goes back to the starting image before starting the transition. I have tried setting the autorotation time to 3 seconds so the transition starts before the video ends, but some videos will play over the automation leaving others to catch up or skip. Is there a way to fix this blocky transition?
I’ve also made my own full video with embedded transitions but it is difficult to get it under 8MB with decent quality.
Hey @Ismael,
I found an old thread of yours and @Guenni007 and I am wondering if I could load a title for a lightbox if the lightbox contains an image from the media library?!
Example: I have a link in a text like
https://homepage.de/wp-content/uploads/image.jpg?iframe=trueto show the image in a lightbox. Everything works as expected, the lightbox opens the image from the library in an iframe. But no title, description or whatsoever.Any idea on how to get the title displayed with an
?iframe=truelink? I already tested to put text into the available fields in the media library, but there is no title below the iframe in the lightbox.All the best,
DanielDear support members, hi @Ismael,
in 2021 I got a helpful piece of code that is misbehaving in the latest version of the theme right now. See this thread and post #858672.
It ist still working to load the ALB for defined user roles (in this example
editorandadministrator), while the option in the theme settings is set to restrict the ALB only for admins:function ava_enable_alb_for_editor() { add_filter('avf_allow_drag_drop', 'avia_disable_alb_drag_drop_mod', 40, 1); } add_action('init', 'ava_enable_alb_for_editor'); function avia_disable_alb_drag_drop_mod( $disable ) { $user = wp_get_current_user(); $allowed_roles = array('editor', 'administrator', 'author'); $check = array_intersect( $allowed_roles, $user->roles ); if( ! empty( $check ) ) { $disable = avia_get_option('lock_alb', 'disabled') != "lock_alb" ? true : false; } return $disable; }I can access the ALB as administrator and as editor, so this part of the code is alright. Perfect! But as editor I can’t load a template from the template dropdown in the upper right corner. Everything else is editable and finde, but as I want to load an ALB template I get an error message:
An error has occurred
Error retrieving content – please reload the page and try againSeems to be a rights problem. If I delete the code above from functions.php I can’t access the ALB as editor. If I furthermore toggle the option to access the ALB for everybody I can use the ALB as editor and load ALB templates from the dropdown. But: I want only admins and editors to use ALB (and ALB templates).
Any ideas why the behaviour of the code changed and I can’t access the ALB templates anymore?
I appreciate your help!
Kind regards,
Daniel
Viewing 30 results - 1,441 through 1,470 (of 142,838 total)






