Forum Replies Created
-
AuthorPosts
-
Hi,
Did you enable the Enfold > Performance > File Compression settings? Please try to disable or toggle that option after editing the file. I checked the site on Edge running on IE10 mode, but I couldn’t reproduce the issue — the main slider displays fine.
Best regards,
IsmaelHi,
Thanks for the update.
This is probably related to the Gutenberg configuration that is in the theme. Please edit the config-gutenberg > class-avia-gutenberg.php file. Look for this code around line 216, then comment it out or remove it.
add_action( 'admin_menu', array( $this, 'handler_wp_admin_menu' ), 999 ); add_action( 'admin_bar_menu', array( $this, 'handler_wp_admin_bar_menu' ), 999, 1 );Best regards,
IsmaelHi,
What is the current version of your WordPress installation? The function apply_filters_deprecated was introduced on version 4.6, so you have to make sure that the site is running on the latest version of WordPress, which is 5.2.1. And yes, you should remove the entire enfold folder before replacing it with the latest version.
Best regards,
IsmaelHey Dave,
Thank you for using Enfold.
That filter is intended for the default logo. It’s not going to change the markup of the transparent logo. For the transparent logo, you may need to change the markup or value of the $sub variable using the “avf_logo_final_output” filter. The $sub variable holds the markup of the transparent logo. An example can be found here:
// https://kriesi.at/support/topic/how-to-change-header-logo-link-based-on-user-role/#post-1109309
Best regards,
IsmaelHi,
I’m not sure what you’re referring to.
We can’t find any parameter to disable the cover image. That’s what I meant. Anyway, I’m glad your developer fixed it. If you have more questions, please feel free to open a new thread.
Best regards,
IsmaelHi,
Sorry for the delay.
1.) You can use the “avf_default_icons” filter to change the icon of the social icons.
Docs: https://kriesi.at/documentation/enfold/icon/#change-icon-used-for-standard-theme-elements-
2.) Create a new menu and set it as the Enfold Footer Menu under Theme Locations.
3.) Video backgrounds are actually disabled on mobile devices, so you have to add a fallback image. This image will show instead of the video on mobile devices. And regarding the autoplay, that’s a browser policy so we can’t really do anything about it — autoplay is disabled by default.
// https://developers.google.com/web/updates/2017/09/autoplay-policy-changes
Best regards,
IsmaelJuly 18, 2019 at 7:00 am in reply to: Enfold – preview page looks perfect – saved page wrong & different from preview #1119796Hi,
Great! Glad to hear that you figured it out. It’s true that adding comparison symbols can break the content of the advance layout builder. Unfortunately, we don’t have a fix for that yet, so you just have to avoid doing that.
Best regards,
IsmaelHi,
Thanks for the update.
Can we access the site without adding it to our hosts file? I tried logging in but the wp-admin redirects to or displays a 404 page.
Best regards,
IsmaelHi,
Thank you for the update.
We can’t access the dashboard using the login account above. Please check it carefully. Or provide another then we’ll check the site again.
Best regards,
IsmaelHi,
Thank you for the update.
Did you disable revision for this site? Please enable that option back because we won’t be able to repeatedly test the page without revisions.
// https://woorkup.com/disable-limit-wordpress-post-revisions/
Best regards,
Ismael-
This reply was modified 6 years, 8 months ago by
Ismael.
Hey Tobias,
Thank you for using Enfold.
Did you activate the child theme as a network theme? The changes to the child theme’s style.css file should affect every site connected to that network by default. I haven’t seen a multisite installation for a while so I could be wrong. Can we access the site?
Best regards,
IsmaelHi,
Thank you for the update.
Are the Performance > File Compression settings enabled? Please toggle those settings or disable them temporarily.
Or post the login details in the private field and we’ll check it.
Best regards,
IsmaelHi,
Add it in the functions.php file of the child theme. If the site is not using a child theme yet, please follow this link.
// https://kriesi.at/documentation/enfold/child-theme/
Best regards,
IsmaelHi,
Thank you for the update.
This filter should prevent the google font script from rendering.
add_filter( 'avf_output_google_webfonts_script', 'avf_output_google_webfonts_script', 10, 1 ); function avf_output_google_webfonts_script( $activate ) { return false; }// https://kriesi.at/support/topic/disable-google-font-loading-via-google/#post-969672
Best regards,
IsmaelHi,
Yes, that’s possible. Just add this css code along with the previous one.
#top .price, #top .price span, #top del, #top ins { font-size: 20px; line-height: 24px; } #top #wrap_all .main_color .price ins { color: red; }Best regards,
IsmaelHey Manuela,
Thank you for using Enfold.
That is disabled on smaller screens by default. You can enable it back by adding the following css code.
@media only screen and (max-width:767px) { .responsive #top #wrap_all #header { position: fixed; } }Best regards,
IsmaelHi,
You can place the logo on the left of the header above the menu, then insert additional content in the header using widgets. You can toggle the logo and menu position in the Enfold > Header > Header Layout panel. Look for the “Menu and Logo Position” settings.
// https://kriesi.at/documentation/enfold/header/#Header-Layout
Regarding the header widget, please follow this one:
// https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
Best regards,
IsmaelHi,
@milano24ore: Thank you for the info. As we’ve said earlier, there are certain limitations to how the analysis detects content in the builder. Unfortunately, there is no plan on making the builder fully compatible with the analysis tool, at least not as of this moment.Best regards,
IsmaelHi,
@shrinkray: We replied in your thread: https://kriesi.at/support/topic/mobile-stacking-order-for-uneven-width-columns/
Best regards,
IsmaelHi,
You can apply the flex property to the entry-content-wrapper container. That’s the immediate parent container of the columns.
#customSection .entry-content-wrapper { display: flex; flex-direction: row; }The #customSection is the Section ID of the color section containing the columns. And according to the documentation, you can sort the columns like this:
#customSection .flex_column:nth-child(1) { order: 2; } #customSection .flex_column:nth-child(2) { order: 1; }Of course you have to wrap the code in a css media query if it’s intended for mobile devices or smaller screens.
Best regards,
IsmaelHi,
if you can figure out the file download issue I’d be happy to do this myself.
Are you doing this on a Windows 10 machine? Try to install a zip extractor software like WinRar.
// https://rarlab.com/download.htm
It should ask you for a password when you try to extract the file.
Best regards,
IsmaelHi,
@xoidberg: Thanks for the info. You can actually remove that code because what it does is prevent the recapcha script from loading when there is no contact form element in the page. Try to replace the whole is_recaptcha_active function with the following code.
public function is_recaptcha_active() { global $post; if( ! $post instanceof WP_Post ) { return false; } $api_vn = $this->api_vn; if( $api_vn == '' ) return false; $secret_key = $this->get_secret_key(); $public_key = $this->get_public_key(); return $public_key && $secret_key; }@osaez: We are going to include a new and better version of the spam protection in the next patch. Please wait for that. If you want to test it now, check the private field.
Best regards,
IsmaelHi,
Thank you for the update.
It seems to be related to the title container. The items positioned correctly when we shortened the title until it only occupied a single line. This css code might help.
#top .container .av-inner-masonry-content { min-height: 80px; }Best regards,
IsmaelHi,
it only shows hide on…
You have to edit the first column in the row. Look for the Full Width Breakpoint in the Screen Options panel. Let us know if that helps.
Thank you for the update.
Best regards,
IsmaelHi,
Thank you for using Enfold.
I really can’t figure the issue. There’s no error or anything. Have you tried to re-upload or at least re-assign the images in the slider? That might help.
Best regards,
IsmaelHey zeadZeven,
Thank you for using Enfold.
You should add the transition property to create a color switch animation.
// https://www.w3schools.com/css/css3_transitions.asp
Example:
.Werte_column_1_hover:hover { background-color: green!important; transition: all 2s; }Let us know if you need help with that.
Best regards,
IsmaelJuly 17, 2019 at 4:11 am in reply to: Child Theme Style.css does not effect main theme styles #1119364Hi,
Thank you for the update.
It should be style.css file without the “s”. Please rename the file. And don’t forget to toggle the Enfold > Performance > File Compression settings afterwards, if it’s enabled.
Best regards,
IsmaelHey laurah.,
Thank you for using Enfold.
The position of the background inside the cell is actually adjustable. You can have the top part of the image visible by adjusting the starting position of the image to be at the top of the cell container instead of having it vertically and horizontally centered. Edit the grid row cell, look for the “Background Image Position” and set it to “Top Center”. In the demo, the position of the background image is set to “Center center” by default.
Best regards,
IsmaelHey!
So, I would like to be able to keep using the iconlist in my footer (column 1) widget, but not have it create the error message that you now are seeing.
Yes, that’s possible. Just disable the theme’s default schema markup — you can do that in the Enfold > Layout Builder panel and install the plugin that we suggested above. By disabling the theme’s schema, you get rid of error and with the plugin, you will be able to create a JSON-LD markup that’s not entwined with the template and will probably generate a more valid structure. Again, site data structuring or schema improvements is the responsibility of the site owner and/or developer, so it’s outside the scope of support.
Cheers!
IsmaelHi,
Awesome! Glad we could help.
Please take a moment to review our theme and show your support https://themeforest.net/downloads.
And don’t forget to bookmark Enfold Documentation for future reference.Have a nice day.
Best regards,
Ismael -
This reply was modified 6 years, 8 months ago by
-
AuthorPosts
