Hi team,
I am having an issue with the social icons on my website. They are no longer showing on the footer after updating the theme to 5.7.1.
They DO show on a backup online website with the old Enfold theme installed.
Any clues?
Thanks.
hello,
i finally find a solution before your mail:
what i did:
i activated in enfold otions the debug mode in order to see shortcodes on my pages.
i created a tab section
in the first tab a created two others tab wher i past my two galery masonry shortcode.
il let down in my pages my two masonry galery that i hide witth responsive setings (i cheked everything) because i was affraid to loose it. Can i delete those two masonry now that i have the short codes?
And an other question, how can you set the size of the tab title? i can;t find it..
if found it for the tab section but not for the tab in put inside.
I hope you will understand my english!!!
thanks!
Hi Mike,
Thanks for using Enfold. That might be implemented in a future version, but it won’t be available in the near future.
Best regards,
Rikard
Hey webworm72,
Thanks for the login details. First off, please try to update to the latest version of the theme: https://kriesi.at/documentation/enfold/theme-update/. If that doesn’t help, then please try all the suggestions listed on this page: https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-
Best regards,
Rikard
Hey pierremartin311,
Thank you for the inquiry.
You can save the content of the page as template and use it on another page.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#templates
Another option is to save the gallery as a Custom Element Template (CET). Please check the documentation below for more info:
// https://kriesi.at/documentation/enfold/custom-element-templates/
Best regards,
Ismael
Hi,
And how do i adjust the css?
I mean: it says: your css here…; how and where do i place the font name ( and size ) and the color?
To adjust the style of the link, you can use this css code in the Enfold > General Styling > Quick CSS field:
.go-back-link {
color: red;
font-size: 16px;
font-family: 'Calibri', sans-serif;
}
Best regards,
Ismael
you can see here an example not using the transparency option in enfold for a second alternative logo.
But here i start with a fill change on start – and after the class ( header-scrolled) is present – the initial fill is shown:
.html_header_transparency #header:not(.header-scrolled) .buchstabe {
fill: #FFF;
}
https://webers-testseite.de/
all letters have that class “buchstabe” ( the german word for it. ) – i start with #FFF
Hi,
PS: is it possible to have that menu on every page without inserting it on every single page?
This is possible, but you will need to extract the actual shortcode of the fullwidth submenu element from the shortcode field and use it on a template hook to render it on every page.
Example:
add_action('ava_after_content_templatebuilder_page', function() {
echo do_shortcode("[av_submenu which_menu='center' menu='' position='center' sticky='true' color='main_color' mobile='disabled' mobile_switch='av-switch-768' mobile_submenu='' alb_description='' id='' custom_class='' template_class='' av_uid='' sc_version='1.0']
[av_submenu_item title='Menu Item 1']
[av_submenu_item title='Menu Item 2']
[/av_submenu]");
}, 10);
In order to enable the shortcode field and extract the shortcode, you need to switch the builder to debug mode.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode
Best regards,
Ismael
Hi
We use Enfold since some years and made dozens of websites with it.
Something that always bothers us is that you can’t edit directly on the page and see how it changes live.
As is the case with the well-known Elementor, for example.
Is there anything planned in this regard?
I think it would make Enfold even better because it would be even faster and it would also be easier for end users.
Best regards.
Mike
Hi,
Thanks for the update.
where can i use this code? I tried it on my portfolio page and put it at:
You have to add the css code in the Enfold > General Styling > Quick CSS field or in the child theme’s style.css file. Let us know of the result.
Best regards,
Ismael
Hi,
Thank you for the info.
Please remove all modifications and make sure that the Enfold > Blog Layout > Single Post Options > Single Post Navigation is set to the third option (Loop post navigation). After that, add this code to the functions.php file:
/**
* previous and next opposite order posts & reverse
*/
add_filter( 'avf_post_nav_entries', 'avf_post_nav_entries_mod_reverse', 10, 3);
function avf_post_nav_entries_mod_reverse($entries, $settings, $queried_entries)
{
$settings['same_category'] = true;
return $entries;
}
add_filter("avf_post_nav_loop_args", function($args, $settings) {
$args["orderby"] = array( 'post_date' => "ASC", 'ID' => "ASC");
return $args;
}, 10, 2);
The filter avia_post_nav_entries filter is no longer necessary.
Best regards,
Ismael
Thats the old illustrator error. Because illustrator (in former versions) always uses this class with index ( st0, st1, st2 etc.)
So there is a mess if there are more than one inline svg used on a page. The last one on page makes the rules for that class.
The big advantage of using inline svgs is that you can influence some colors ( fill, stroke etc. ) by external css.
If you are now using the transparency logo option from enfold – that logo is placed later in the DOM than the primary logo.
If that logo uses the same classes inside ( sti ) than this will determine the rules for it.
You can use the code from Mike – but then do not use the transparency logo option. The fill color will then be set by that extra class set from enfold after header shrink scroll has finished.
My advice is – after Illustrator has saved the file – to open those svgs in a good text editor (Sublime Text for Mac or Notepad ++ for Windows) and change those classes to something more unique. Make sure that within the defs (style) you had to replace the .st1 and the class=”st1″ (etc.) in your svg.
PS: newer Illustrators will have the custom classes : cls-1 – same problem.
I recently provisioned a new server and migrated several of my existing websites to the new server. The new server provides PHP 8.0 and above. The old server was running 7.4.
Several of the websites now have issues of not sending out notifications using Enfolds built in contact form.
As an example see website here https://bridgetbycinacounseling.com running the build below.
PHP 8.0
WordPress 6.5.5
Enfold Version: 5.6.9
The built in Enfold form is at page below:
I installed a 3rd party contact form, WP Forms at test page below, and this form works properly.
I did this to all of the websites that stopped working and all of the 3rd party contact forms work! Both WP Forms and Gravity Forms.
Which means there is nothing wrong with the website settings or settings on my server as far as the forms properly sending out notifications.
I prefer using Enfolds built in contact form as opposed to 3rd party plugins. If you have any insights or thoughts on what might be going on that would be great.
Hi,
Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Hey woogie07,
You can add extra content in a widget: https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
Best regards,
Rikard
a lot of places do have the solution on this.
But a subsequent solution to the “problem” must be accompanied by a complete recalculation of the existing image formats. This is because you can only influence the calculation basis for the upload process. Existing images are not changed by the snippet alone.
some of the plugins that handle the recalculation do have a solution for uploading process too. Because i’m not shure if the enfold existing snippet:
add_filter("avf_jpeg_quality", "avf_set_quality_mod", 9999, 1);
add_filter("avf_wp_editor_set_quality", "avf_set_quality_mod", 9999, 1);
function avf_set_quality_mod($quality) { $quality = 55; return $quality;}
has influence on other image formats ( only pixel based can be handled on general ) but i guess that the snippet above does not work with png files.
A nice little tool is from Shortpixel reSmush.it – see some info: https://shortpixel.com/
for me the free version is good enough.
Hi Guenni007,
das ist nicht richtig, denn ich habe auf einer anderen Seite mit der gleichen Enfold Version nicht dieses Problem.
_________
Hi Guenni007,
that is not correct, because I do not have this problem on another page with the same Enfold version.
yes – you are right – it only happens if you want to assign both to the link, then the title set here overwrites the content title.
_____________
ja – du hast Recht – es passiert auch nur wenn man dem Link beiden zuordnen will, dann überschreibt der hier gesetzte Titel den Content Titel.
wenn du enfold 5.7.1 hast dann öffne mal iconbox.php
auf Zeile: 692 ff:
case 'both':
if( $title )
{
$title = "<a href='{$link}' title='" . esc_attr( $linktitle ) . "' $blank>$linktitle</a>";
}
und ersetze durch:
(replace with:)
case 'both':
if( $title )
{
$title = "<a href='{$link}' title='" . esc_attr( $linktitle ) . "' $blank>$title</a>";
}
siehe hier oben links: https://enfold.webers-webdesign.de/3-columns/
you can see on line 708 the correct way for only title case.
Hey koomo,
You can’t hide it with CSS since it’s an iframe. Did you try using version 3 instead under Enfold->Google services?
Best regards,
Rikard
Hi,
Thanks for letting us know. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Hey Marko,
The update to 5.7.1 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,
Did you try to toggle the file compression options and select to activate the option to delete old CSS and JS files under Enfold->Performance?
Best regards,
Rikard
MarkoGuest
Hello there,
Almost 10 years ago I creatred a website using Enfolf 3.4.7. Is it posible to update from 3.4.7 to latest theme version? I will buy new theme, that is not a problem, I just wanted tho check if this update is possible?
Hey rosiet5,
Thank you for the inquiry.
Which font are you trying to upload? By default, only Google Fonts are allowed in the Enfold > Import/Export > Custom Font Manager. If you’re trying to upload fonts from different sources, make sure that the file structure is correct. Please review the File Structure section in the documentation below:
// https://kriesi.at/documentation/enfold/typography/#how-to-upload-custom-fonts > File Structure
Best regards,
Ismael
Hi,
You’re quite welcome, and thank you for using Enfold! Please don’t hesitate to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
Ismael
Hi Enfold support team,
I’ve found a few other posts on how to change the ‘Please login to comment.’ or Want to join the discussion?’ text around the comments area on Single Posts, but none of the steps seem to be working for me. Just wondering if there’s a recent approach to doing this please, thank you :-)
Kindest regards,
Tom
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,
Mike
Hi,
Thanks the is pretty good, probably better that my approach, see my text here:
My test ▸ https://enfold.savvyify.com/guenni007-sidebar-header/
I probably need a little more css, but thank you for sharing :)
Best regards,
Mike
Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
#main .avia-content-slider .slide-meta time {
display: none;
}
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.
Best regards,
Mike