Hope you can help! I’ve been using Enfold since a couple of years but today I activated the Enfold Health demo on my website. I like it but I uploaded my own logo and when you scroll down its visible, but on the top it switches to the default Enfold Health logo. How can I change this please?
My site:
sorry! coundn’t find this post anymore (lols) so crated another one, now i have found it… maybe close this one then hop on the new one? or keep header custom fun here?
>>> the other post: https://kriesi.at/support/topic/header-2/
Hi,
Great, I’m glad that we could help. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
Rikard
yes – afaik – enfold got no option to have fixed background videos for color-sections.
but we can set it with quick css to fixed when reaching the top.
see following example page : https://webers-testseite.de/snowfall-video-3/
but as you can see – your example page from ny goes on mobile view to scroll the video bg !
on desktop view – first is to place it absolute – reaching the top will go to fixed positioning.
so we can misuse the overlay option of enfold on that – to have all DOM elements we need. Because if you use it – enfold will generate an av-section-color-overlay container.
The settings there are not for us important – just the fact that a container is created in the right position.
See: https://webers-testseite.de/snowfall-video/
for even more usability it might be nice to have an observer if the section is in viewport or not – my script now only is working with scroll top value and a given range to top ( here in my example 400px)
if that is o.k. for you just scroll to the end of the page to see code-snippet.
Trick is to use a huge inset shadow with rgba values – and the scroll amount will influnce the a-value of that color.
Hi Mike,
perfect – thank you very much for your report and your feedback. A great support!
Yes, the topic can be closed.
Thank you very much, Daniela
I have deactivated the plugins related to SiteGround, https://prnt.sc/1BomwIvm2Nq9
but at the moment the HOME “problem” persists,
Header at the top of the photo: OK – https://prnt.sc/6KM52YjOLl6y
The header disappears when I start scrolling the page: NOT GOOD – https://prnt.sc/N1qPne-w-4Bs
The header reappears when I scroll again, ok – https://prnt.sc/qz9MmibxIFuI
I also wanted to apologize for the myriad of questions, but I’m not an expert in websites, but I’m learning little by little
Thanks,
Mariarita
Hi,
Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
Rikard
Hi,
Great, I’m glad that you found it. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
Rikard
perfect Ismael, thanks!
Is it possible to set these parameters for the three resolutions desktop, tablet and mobile?
Hi,
Yes it works, although i still fiddle around with some labeling of the menu icon.
Usually i would make a git fork of your theme and provide some pull requests, but i will checkout the possibilities.
I have other solutions as well for some topics of my client which uses your theme so i may will use it.
best,
tom
-
This reply was modified 1 year, 6 months ago by
tom.
Going back to your original question and a solution for you:
It would be an excellent feature for Enfold to Automatically do its own version of Remove unused CSS to bring the number of JS and CSS files down per page.
However if you wanted to do this using a plugin WP-Rocket and others come with remove unused CSS or RUCSS as it is known. I have had good results with Enfold and RUCSS in WP-Rocket. Seems to work without specifying any fallback css or exceptions.
RUCSS is not perfect however. So if Enfold could add an option to only load the CSS for used elements per page it would be a 100% compatible way of doing RUCSS without the unreliability of systems that attempts to work it out after css file generation.
I’d be keen to know what Gunter thinks of this idea. It is essentially an extension of the current only load used elements function.
Performance advice and how it works in reality
All of this said – Once a browser has downloaded the files – Assuming you have a long cache life on your CSS and JS files in your HT Access file (Or set this value with a plugin like WP-Rocket or WP Super cache, etc.) then those files wont be re-downloaded by the visitors browser per page visit. So even if they have to download 100kb worth of CSS and JS to view page 1. page 2,3,4,5,6 etc onwards will use the cached css loading instantaneously.
The minimum requirement for this to happen is page caching with a good cache life.
If you want any more advice on this sort of thing let me know.
https://www.hirekaraoke.co.uk/
The site above is one of ours and passes web vitals. They are the UKs largest Karaoke Hire company. So a national business. This site uses our performance stack including page caching and some bespoke settings. The actual booking pages are completely uncached (Which is why the TTFB score is a little higher on desktops – brings the average response time up). The site just serves minified CSS. It is not necessary to RUCSS to pass web vitals if everything else is done correctly.
-
This reply was modified 1 year, 6 months ago by
thinkjarvis.
Hey joguitar,
Thank you for the inquiry.
To fix the alignment, please replace the css with the following code:
.responsive #top .avia-icon-circles-icon {
height: 120px;
width: 120px;
line-height: 120px;
font-size: 75px;
margin: -60px;
}
Best regards,
Ismael
Hey dweddell,
Thank you for the inquiry.
The search and social icons are hidden in mobile view by default due to the lack of space in the header. If you want to display them again, you can try this css code:
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
.responsive #header .social_bookmarks {
display: block !important;
}
#top #header .av-main-nav>#menu-item-search {
display: block !important;
}
}
Best regards,
Ismael
Hi,
Mouse over on the images, Title and introduction text. Can this be done within Enfold??
This is possible but it will require a bit of modifications such as assigning custom fields to the portfolio items. If you want to continue, please follow these steps:
1.) Add this code in the functions.php file to register a new attribute the portfolio image which uses the value of the av_portfolio_hover_image custom field.
function avf_add_custom_field_as_hover_image($attrs, $entry) {
$hover_image_url = get_post_meta($entry->ID, 'av_portfolio_hover_image', true);
if (!empty($hover_image_url)) {
$attrs['data-hover-image'] = esc_url($hover_image_url);
}
return $attrs;
}
add_filter('avf_portfolio_image_attrs', 'avf_add_custom_field_as_hover_image', 10, 2);
2.) Then add this script to create the hover effect:
function ava_custom_script_hover_image() {
?>
<script>
(function ($) {
function hoverImageChange() {
$('.grid-sort-container .grid-entry img').each(function () {
var $img = $(this);
var originalSrc = $img.attr('src');
var hoverImage = $img.data('hover-image');
if (hoverImage) {
$img.hover(
function () {
$img.stop().fadeOut(200, function () {
$img.attr('src', hoverImage).fadeIn(200);
});
},
function () {
$img.stop().fadeOut(200, function () {
$img.attr('src', originalSrc).fadeIn(200);
});
}
);
}
});
}
$(document).ready(function () {
hoverImageChange();
});
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'ava_custom_script_hover_image');
3.) Edit any portfolio items, apply the av_portfolio_hover_image custom field and place the URL of the hover image.
4.) Add this css code to disable the default image overlay
.grid-entry a .image-overlay {
display: none !important;
}
Best regards,
Ismael
I figured it out. It was not the column the text was in, but the container that held multiple text boxes. I could fix the top container, not the text box.
Greetings,
I needed to enlarge the icons of this widget and I found this css that worked.
.avia-icon-circles-icon {
height: 120px !important;
width: 120px !important;
line-height: 120px !important;
font-size: 075px !important;
}
In this way, however I have two problems:
– the icons are not centered on the circle
– remain the same size by changing the screen size (desktop, mobile)
How can this problem be solved?
is there a section where you can find the css commands to adjust the widget parameters?
Thank you
Hi,
Glad to hear that you found a plugin, I have not used it and I only found an old issue from 2018 with it, probably not an issue anymore.
Shall we close this thread then?
Best regards,
Mike
Hi,
Great, I’m glad that we could help. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
Rikard
Hi,
Thanks for that. I’ve opened the old topic, please continue in there. We’ll close this thread for now.
Best regards,
Rikard
Hey,
Thanks for that. I’m not sure why this topics was closed, sorry for that.
I’ve added another instance of your testimonials and the navigation seems to be working fine there. Please check the new instance and remove the old one if it works as expected. I’ve removed the styling in the new instance, but we can add that back with CSS if everything is working as it should.
Regards,
Rikard
Hi team, the issue appears when works in Chrom from iMac… Maybe I need to update anything because from PC works correctly.
For me, you can close the topic.
Thanks a lot.
Hi!
My customer also wants an effect like the one in the link above (NY Times). Or similar to Apple, where the content slides over a video from bottom to top when scrolling. I’ve already tried that using the tips in the thread. But I can’t manage it. Can you please help me?
Attached is the data. It’s about the start-page (my experiments are also stored there).
Thank you very much and sunny greetings,
Daniela
Hi Ismael
Ah okey, so with WooCommerce shortcodes, the Enfold pagination does not work? This would be a nice extension of Enfold ;-)
Anyway, your CSS code does not change anything, it is still the other pagination.
Another question. As also the dropdowns at the top (“Zeige 15 Produkte pro Seite”) seems to not work, how we can hide them only on this page with CSS code?
Best regards
Mike
on the home page of our site, we’re using the blog posts at the bottom under “Smoke Signals” – the posts stopped showing up. I tried updating WP and the Enfold theme, and cleared the page and site caches, but the posts don’t show up. There is a blob error that I’m not sure if it’s related in console:
Refused to load blob:https://www.shenandoahlodge.org/25a9aeb2-3734-4df9-b38a-451cbb179d4d because it appears in neither the worker-src directive nor the default-src directive of the Content Security Policy.
That is in Safari. Chrome fails silently.
Hello Ismael,
Sorry to answer so late, I was out for holidays.
The checkbox “Utilitzeu la mateixa adreça per a la facturació” is not the one with the issue.
Check at the bottom of the checkout page, the checkbox “Afegiu una nota a la vostra comanda” I would like to have it checked by default and the Textarea for the customers to write a note displayed by default.
First it was working with Mike’s code, but after adding the payment method it stopped working.
Thanks for your help.
Regards
Hey Aeroviews,
Could you post a link to the closed topic so that we can see the history please?
Best regards,
Rikard
Hey compras185,
The update to 6.0.3 has to be done manually from the version you are running, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541
You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or upload the theme as if it was new under Appearance->Themes->Add New Theme.
If that doesn’t work then please try to delete the whole theme folder, then replace it with the new version. Make sure that you have backups of the site before starting updating.
Also please read this after you have updated: https://kriesi.at/documentation/enfold/theme-registration/
Best regards,
Rikard
Hi guys. the discussion is active in my WordPress setting and in my single post but I can not see a comment box in my post that was created by ALB. why?
https://kojachetor.com/khurwaterfall/
I read your Comment documentation and former topics but I couldn’t understand and find the reason.