Hi,
Thank you for the inquiry.
You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the code. If the issue persists, please provide the login details in the private field so that we can check the modification further.
Best regards,
Ismael
Hi,
Thank you for the inquiry.
That is the default behavior of the menu. The main menu displays in desktop view and switches to the hamburger (mobile) menu at certain breakpoints, such as tablet view and smaller screens.
If you want to display the hamburger menu on desktop, go to Enfold > Main Menu > General > Menu Items For Desktop and set it to Display as Icon.
Let us know if you need more info.
Best regards,
Ismael
Hey James,
Thank you for the inquiry.
It’s not possible to create a blank template in the theme options, but you can select the existing Blank – No Header, No Footer template in the Page > Template settings. If you want to create your own template, you can use the enfold > template-builder.php file as a reference. Please check the screenshot below.
View post on imgur.com
Best regards,
Ismael
HenderGuest
Hello friends, I am writing to you because I am currently using your Enfold theme and suddenly the footer has stopped being displayed completely, and in the configuration everything seems to be correct, can you help me?
I have not been able to figure out how to post this in the support forum.
Hey Ad-Min747,
Which hosting provider are you using? Did you try importing the demo manually? https://kriesi.at/documentation/enfold/import-demos/#how-to-manually-import-a-theme-demo. If you need further help, then please include admin WordPress login details in private.
Best regards,
Rikard
Hi,
Thanks for the update. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
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 xfacta,
Please try the following in Quick CSS under Enfold->General Styling:
.avia-icon-list-container {
margin: 10px 0 30px 0;
}
Best regards,
Rikard
Has anyone else experienced issues with the Enfold theme not propagating correctly after updating Woocommerce or Woocommerce Payments plugins?
-
This topic was modified 1 year ago by
So Evolve. Reason: Additional website URL's
Hello, we have recently noticed in our dev environment (Enfold 6.0.8) our footer is no longer appearing across every page as it should. In fact, it is not appearing at all. If you could please let me know if there is some sort of configuration that may have recently changed. Or one that could resolve this issue & restore our footer.
How can I create events in ENFOLD which no longer be displayed automatically at the end date, but the events that are still active should move up in order.
There is a plugin for this? I have not found one.
Thanks for a reply
Greetings Fred
because of there is only a layout with columns.
So please go and set a 1/1 column below that – to see how enfold handles the rest.
the first column now can be select via:
#top.postid-335 .entry-content-wrapper .submenu-col instead of #top.postid-335 .entry-content-wrapper .flex_column.first
on your layout there is no parent element that you can give a custom class to. So we had to work with page/post IDs
If you have that on all single posts – than we can select more global as f.e.: single-post etc.
PS : there is no slug of the post on default enfold.
Dear Folks,
To create a perfectly blank page, do I need to add a file to the directory that contains the page templates through FTP?
I assume that if I create my own template they will not be overwritten when the theme is updated?
This will save me from creating/activate a child theme.
Is this possible to create my own blank page directly from the Enfold theme options?
Many thans for your help.
Best regards,
James
Hello everyone, unfortunately the Paypal addon from Ninja Forms has recently stopped working with Enfold. if I set wordpress to a standard theme it works, if I activate it in Enfold, it no longer works. A customer sells his product through it, so I hope you can help. I assume it happened with the last or penultimate update, because before it worked without any problems.
Thanks in advance and greetings KiM
Hallo zusammen, leider funktioniert seit kurzem das Paypal Addon von Ninja Forms nicht mehr zusammen mit Enfold. setze ich wordpress auf ein standard Theme geht es, aktiviere in Enfold, geht es nicht mehr. Ein Kunde verkauft darüber sein Produkt, daher hoffe ich ihr könnt helfen. Ich vermute es ist mit dem letzten oder vorletzten Update passiert, denn zuvor ging es problemlos.
Danke im voraus und Gruß KiM
you can have both – column sticky and sidebar sticky
.responsive body#top.postid-335 {
overflow-x: visible;
}
#top.postid-335 #wrap_all {
overflow: visible;
}
@media only screen and (min-width: 768px){
#top.postid-335 .entry-content-wrapper {
display: flex;
justify-content: space-around;
align-items: flex-start;
}
#top.postid-335 .entry-content-wrapper .flex_column.first{
position: -webkit-sticky !important;
position: sticky !important;
top: 100px; /*** depends on your header-height after scrolling ***/
min-width: 120px; /*** you can have here absolute Values ***/
}
#top.postid-335 #main div > .container {
display: flex;
justify-content: space-around;
align-items: flex-start;
}
#top.postid-335 .sidebar{
position: -webkit-sticky !important;
position: sticky !important;
top: 60px; /*** depends on your header-height after scrolling ***/
width: 30% !important; /*** you can have here different width than on global settings of Enfold ***/
}
}
see here the example page for sticky sidebar with code : https://webers-testseite.de/sticky-sidebar/
Try to make a screenshot of your enfold layout you like to have. Or describe it better.
On your sandbox the parent element is the entry-content-wrapper
now you like to have the first column to be sticky and the second one scrolls. The sidebar on the right should scroll away too?
Hi,
i am looking for a sitemap plugin that works well with enfold?
kin d regards Jak
Hey Kate,
Thank you for the inquiry.
Please use the following css code and make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings afterward.
#top .main_color .av-catalogue-content {
color: #ececec;
}
Let us know of the result.
Best regards,
Ismael
Hey Silvia,
Thank you for the inquiry.
You can adjust the settings in the Header > Extra Elements > Enfold WPML Language Flags (Global Setting). Or add this code in the functions.php file:
function avia_remove_main_menu_flags(){
global $avia_WPML;
add_filter( 'wp_nav_menu_items', [ new avia_WPML, 'handler_append_lang_flags' ], 9999, 2 );
remove_filter( 'wp_nav_menu_items', [ 'avia_WPML', 'handler_append_lang_flags' ], 9998, 2 );
remove_filter( 'avf_fallback_menu_items', [ 'avia_WPML', 'handler_append_lang_flags' ], 9998, 2 );
remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10 );
remove_action( 'ava_main_header_sidebar', 'avia_wpml_language_switch', 10 );
}
add_action('init','avia_remove_main_menu_flags', 9999);
IMPORTANT: Please make sure to create a site backup before editing the functions.php file.
Let us know of the result.
Best regards,
Ismael
Hey Gunter,
Recently needed to use the ALB Timeline element for a client, and had these observations:
1. There appears to be zero documentation on this element? https://kriesi.at/documentation/enfold/ – can’t see it anywhere here?
2. The real issue though is that all content within the class av-milestone-date timeline-text is duplicated in the HTML of the page (might be the case for other classes as well, but we are only using the Date field in the timeline element and not the title field, so not sure but guessing it’s probably the same). It’s not visible on the page, but is hidden. But still, this means a much bigger DOM than needed and duplication of content that crawlers can read. Is there a reason for this, or a better way around it by refactoring this element?
You can check and example in private.
Thanks for taking a look
Tim.
Hey sophie,
For technical support, please login to the support forum and open a new thread. Also please include the URL to your actual site in the new thread.
Best regards,
Rikard
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
Hi,
Thanks for the update. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Sophie BretonGuest
I tried : too many extensions don’t install! it doesn’t work!!!!!!
Please add following line to Functions.php file in Appearance > Editor
add_theme_support( ‘avia_demo_store_downloaded_files’ );
Download the zip file of the demo you would like to import from https://github.com/KriesiMedia/enfold-library/tree/master/demos
Extract it in uploadsavia_demo_files folder. If you are importing Enfold 2017 demo, files should be extracted inside enfold-2017 so it should look as uploadsavia_demo_filesenfold-2017
Go to Enfold theme options > Demo Import and import the demo
dont bother bro the solution support will provide will be a solution that looks like chinese dealing with :
How to manually import a theme demo
Please add following line to Functions.php file in Appearance > Editor
add_theme_support( ‘avia_demo_store_downloaded_files’ );
Download the zip file of the demo you would like to import from https://github.com/KriesiMedia/enfold-library/tree/master/demos
Extract it in \uploads\avia_demo_files\ folder. If you are importing Enfold 2017 demo, files should be extracted inside \enfold-2017\ so it should look as \uploads\avia_demo_files\enfold-2017\
Go to Enfold theme options > Demo Import and import the demo
——
i am considering buying another theme as this is just impossible for a non pro to use it
i suggested a video tutorial but no response
Dear enfold support team
I implemented the social media icons in my enfold mobile burger menu
with code from Mike
https://kriesi.at/support/topic/fullwith-dropdown-unter-hamburger-menu-mit-social-media-icons/#post-1266922
The social icons are only shown in the burger mobile menu if the user has an account and is logged in.
How can I fix this?
Regards,
Michael
Hi, so I’ve since installed the Barn2 plug in “Woocommerce product filters” but I can’t get it to work on Enfold’s product grid. Please can you help?
Thank you
Sarah
hi team, wouldnt be a good idea to edit a video showing how to :
How to manually import a theme demo
Please add following line to Functions.php file in Appearance > Editor
add_theme_support( ‘avia_demo_store_downloaded_files’ );
Download the zip file of the demo you would like to import from https://github.com/KriesiMedia/enfold-library/tree/master/demos
Extract it in \uploads\avia_demo_files\ folder. If you are importing Enfold 2017 demo, files should be extracted inside \enfold-2017\ so it should look as \uploads\avia_demo_files\enfold-2017\
Go to Enfold theme options > Demo Import and import the demo
because frankly , a newby wont even know where to start here as in the “Editor” it is clearly written : “* PLEASE DO NOT EDIT THIS FILE!”
you guys are cool to share processes but you assume we all understand what this mean.
a step by step video tutorial would fix the demo download headaches (also duplicator process)
Hi Enfold is hanging whenever I try to edit causing a time out and then our sever blocks me and I need to get unblocked by our sever people.
My feeling is this started when my server peple moved us to a new server but they say they have other WordPress sites not causing any issues.
My theme and plugins are all up to date. I use WP cache and have cleared the cache, but the problem persists as soon as I try to edit a page or post.
Please can you advise.
-
This topic was modified 1 year ago by
JennyGr.
-
This topic was modified 1 year ago by
JennyGr.