Forum Replies Created
-
AuthorPosts
-
Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHey fingerfoodmen,
These are not correct rgba colors:
rgba(1.4912508245100362, 1.4912508245100362, 1.4912508245100362, 0.77)
your colors need to be like this:
rgba(255, 255, 255, 0.77)
If this doesn’t help please include the url to the page in question so we can take a closer look.Best regards,
MikeHi,
Glad Nikko was able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHey waterwalk,
Thank you for the link to your site, I see that you have old header.php & footer.php in your child theme, I didn’t find any customization in either of these, so please remove both of these files. We don’t recommend adding these to your child theme because it is the top reason for issues after updating, these two files are linked so if there is a change in one or the other in the update it will cause issues.
If you want to add customizations we recommend adding them to the functions.php, can advise how to do so when you have a need.
If your footer is still not right after you remove these two files then I will take another look.Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
WordPress doesn’t always load all of the files for the theme in the preview mode, and we can’t change the core WordPress files to force it to, so we recommend publishing your page and review it in another tab/windowBest regards,
MikeHi,
Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
Mike#top .avia-cookie-consent.avia-cookiemessage-bottom { bottom: unset; left: unset; margin: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } #top .avia-cookie-consent .avia-cookie-consent-button { display: block; width: 60%; margin: 10px auto; } #top .avia-cookie-consent p { display: block; padding-bottom: 20px; } #top .avia-cookie-consent-button { border-radius: 50px; } @media only screen and (max-width: 767px) { #top .avia-cookie-consent.avia-cookiemessage-bottom { width: 80%; } } @media only screen and (min-width: 768px) { #top .avia-cookie-consent.avia-cookiemessage-bottom { width: 25%; } }Best regards,
MikeHi,
When I check the footer.php the closing brackets that you are pointing to, #main & #wrap_all close before the WordPress footer function that I assume that Elementor is hooking in to:

Best regards,
MikeHi,
I disabled the css Nikko was talking about, please clear your caching plugins and your browser cache and check.
It looks like your top yellow column may have a min height of 950px set, if so you may wish to remove it as it is not needed, but try clearing your caching plugins first.
WPRocket & Object CacheBest regards,
MikeHi,
Thanks for the screenshot and the link to your site, from experience this looks like a lazy load issue with a caching plugin, so I put your 10Web Booster plugin into test mode and now the slider image loads on mobile. I couldn’t examine the plugin settings because it requires another login and when I went to disable the plugin it offered the “test” mode as an option. So check your plugin settings and try to disable the lazy load on the homepage or for mobile or whatever other option it gives you.Best regards,
MikeHey Celeranttechnologycorp,
First ensure that the Custom Fields option is enabled in the Screen Options at the top of your page in the Classic Editor:

Or in the Block Editor, go to Preferences ▸ Panels ▸ Custom Fields:

Then add a custom field custom_title and enter the value you want:

Then add this code to the end of your child theme functions.php file in Appearance ▸ Editor:add_filter( 'the_title', 'custom_field_title', 10, 2 ); function custom_field_title( $title, $post_id ) { if( $new_title = get_post_meta( $post_id, 'custom_title', true ) ) { return $new_title; } return $title; }and your custom title will show in the title bar:

Best regards,
MikeHey Team-Survival,
Thank you for your question, but in this specific case theoverflow: visibleis used to show the box shadow around your image along with theoverflow-clip-margin: content-box
Please note that at the bottom of the post it says If overriding the overflow property to visible is not intentional in this case it is intentional, PageSpeed can’t tell the difference, so this can be ignored.Best regards,
MikeHi,
Just to follow up, the Dev Team has applied this to the theme for the next update. So you could remove the above solution after the next update or leave it as it would not cause any issues.
Unless there is anything else we can help with on this issue, shall we close this thread then?Best regards,
MikeHi,
The Dev Team has fixed this and will be in the next update, if you want to try it you can download the columns.php below and replace your via FTP at /enfold/config-templatebuilder/avia-shortcodes/columns/columns.phpBest regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:add_filter( 'avf_wc_before_shop_loop_item_title_img_size', 'avf_wc_before_shop_loop_item_title_img_size_mod', 10, 1 ); function avf_wc_before_shop_loop_item_title_img_size_mod( $thumbnail_size ) { return 'fullsize'; }Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
I tested on my test site and the images in a category product page used the original full size image, I couldn’t test on your site because the Authenticator blocked access.Best regards,
MikeHi,
Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHey Celeranttechnologycorp,
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:add_filter('avia_post_slide_query', 'avf_custom_post_grid_query'); function avf_custom_post_grid_query ( $query ) { if(is_singular('post')) { global $post; $query['post__not_in'] = array($post->ID); } return $query; }Best regards,
MikeHey Sébastien,
You can go to our demos page and then choose any of the demos and right-click to save any of the images.
For the video in the startup business demo it is on YouTubehttps://www.youtube.com/watch?v=Wq-DEL2ONGg

Best regards,
MikeHey Heinz,
I believe that this deprecation warning was added by the Dev Team as a part of the apply_filters_deprecated, the warning is shown while the new filter is applied, The warning is added so the theme is backward compatible. I assume that you are seeing this because you have wp_debug enabled, so you can ignore this warning.Best regards,
MikeHey Fabian,
You could modify the file at enfold/includes/loop-comments.php and add this line<div class="comment_author_email"><?php comment_author_email(); ?></div>on line 28:

but you won’t be able to add this to your child theme, so you will need to make this change each time that you update.
The WordPress Developer Resources advises against making the email publicity visible to assure that email harvesters do not capture your commenter’s email address as most assume that their email address will not appear in raw form on the site.
Perhaps using a plugin to allow commenters to engage with each other would be better, such as wpDiscuz, a quick look at this seems to allow users this ability, or perhaps Disqus Comment System or Vuukle Comments
I don’t have any experience with any of these but there seems to be many comment form replacements that allow better engagements, using a plugin would be better as they would have worked out any loop holes the bad bots would use against your visitors information, which could be an issue.Best regards,
MikeHi,
If you want to try it you could use this css instead:#top .slide-entry .slide-entry-title { word-wrap: break-word; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Do you have any other questions about using ALB for posts, or shall we close this then?Best regards,
MikeHey henrikm5,
I tested your page in Windows in Chrome, Firefox, & Edge and your background video plays correctly, I see it after clicking the age gate without reloading.
On Mac in Safari, Chrome, & Firefox the background video doesn’t play after clicking the age gate, but if you go to any other page that video does play fine, and going back to the homepage then plays fine.
So I don’t think that it is a video setting because the videos are playing, I think it related to the age gate, try disabling the age gate and see if the videos then play.
I assume that you need the age gate, does it have an option to reload the page when the accept button is clicked? This may help.Best regards,
MikeAugust 18, 2023 at 8:49 pm in reply to: Background video on color section not working properly? #1416590Hey Illingco,
I tested a color section set to 100% height with your video as the background of the color section and the video is full screen.
See the link below, so I’m not sure what you may have done differently, perhaps you could include an admin login for us to examine.
Also I don’t see any black bars in Edge.Best regards,
Mike -
AuthorPosts


