Forum Replies Created
-
AuthorPosts
-
Hi,
Yes, the fonts should be usable but you have to select the font in the Enfold > General Styling > Fonts panel. Did you set the fonts?
Best regards,
IsmaelHi,
Thanks for the update.
Edit the blog posts element and set the “Blog Style” to “Grid Layout”.
Best regards,
IsmaelHi,
Thanks for the update. Try setting a minimum height to the icon list container.
.avia-icon-list article.article-icon-entry { min-height: 200px; }Use css media queries to adjust the minimum height value on different screen sizes.
Best regards,
IsmaelHi,
Good to hear. Thanks for the info. Please don’t hesitate to open a new thread if you need anything else.
Best regards,
IsmaelHi,
The spaces are created due to the elements’ padding. You have to turn on the custom css class field so that you can target the elements specifically and adjust the padding value on mobile view.
Best regards,
IsmaelMarch 27, 2019 at 1:55 am in reply to: Create Attribute Filters on Pages using the Enfold Product Grid #1083335Hi,
Thank you for using Enfold.
This is not possible, unfortunately. The product filters or widgets are limited to the default or base shop page. It’s not going to work for the product grid or any other elements outside the default Woocommerce template.
Best regards,
IsmaelHi,
The site is using a different theme. Is that the old site? Please provide a link to the actual page with the issue.
Best regards,
IsmaelMarch 26, 2019 at 8:31 am in reply to: mobile view – problems with special heading and sidebar #1082999Hi,
We can’t reproduce the issue on our end. This is what we get on iPad view.
// https://imgur.com/a/AxOmKRo
Best regards,
IsmaelHey kilimats,
Thank you for using Enfold.
We are not really sure why it’s happening. There are no redirects or page refresh when we check the network activity in the browser inspector tool. Did you add any custom scripts to the theme? Have you tried checking it while the plugins are disabled?
Best regards,
IsmaelMarch 26, 2019 at 8:17 am in reply to: Home page contents disappear when updating/publishing. #1082990Hi,
Thanks for the update.
1.) Make sure that there are no unclosed html tags in the page. These tags if left unclosed can cause the builder to erase the subsequent content.
2.) Set the Enfold > Theme Options > Select Your Editor to “Classic Editor” instead of the new block editor. And disable the plugins temporarily.
Best regards,
IsmaelHi,
Thanks for the update.
You can use this filter in the functions.php file to adjust the markup of the title.
remove_filter( 'post-format-standard', 'avia_default_title_filter', 10, 1 ); add_filter( 'post-format-standard', 'avia_default_title_filter_mod', 10, 1 ); function avia_default_title_filter_mod($current_post) { if(!empty($current_post['title'])) { $heading = is_singular() ? "h1" : "h2"; $output = ""; //$output .= "<{$heading} class='post-title entry-title ". avia_offset_class('meta', false). "'>"; $output .= "<{$heading} class='post-title entry-title' ".avia_markup_helper(array('context' => 'entry_title','echo'=>false)).">"; $output .= " <a href='".get_permalink()."' rel='bookmark' title='". __('Permanent Link:','avia_framework')." ".$current_post['title']."'>".$current_post['title']; $output .= " <span class='post-format-icon minor-meta'></span>"; $output .= " </a>"; $output .= "</{$heading}>"; $current_post['title'] = $output; } return $current_post; }Adjust this line:
$heading = is_singular() ? "h1" : "h2";Best regards,
IsmaelMarch 26, 2019 at 8:02 am in reply to: making changes on pages, shows in preview but does not update to web #1082987Hi,
Thank you for the update.
Are you adding any html code in that page? Make sure that you’re closing the html tags properly because unclosed tags could break the layout of the page. Please check the login credentials above because they seem to be invalid.
Best regards,
IsmaelHi,
The videos should work fine even without the “https” or “http” at the start of the url. It is going to be automatically prepended based on the protocol the site is loaded, so if the site loads over “https”, those youtube videos will load over the same protocol.
Best regards,
IsmaelHi,
Thanks for the update.
We don’t see any issues with the test page. The tab section title and content are both visible. Is this fixed?
Best regards,
IsmaelHey webguy007,
Thank you for using Enfold.
Are you using the grid row element before? We don’t see the described issue on the Services page. Did you find a workaround?
Best regards,
IsmaelHi,
Thank you for using Enfold.
That is possible, but you have to modify the config-templatebuilder > aviashortcodes > slideshow > slideshow.php file. Look for this code around line 227:
"name" => __("Apply a link to the slide?", 'avia_framework' ),Below that line, look for this code:
"std" => "",Set the “std” value to “image”.
"std" => "image",The “Image Link?” std can then be set to “lightbox”. You can find that code around line 251:
"std" => ""),Replace it with:
"std" => "lightbox"),Best regards,
IsmaelMarch 26, 2019 at 4:42 am in reply to: I updated enfold now I'm getting an error with child theme #1082962Hi,
We would like to apologize for the late response.
It seems to be an error with the greensock animation scripts that are included in the layer slider. Would you mind if we deactivate the plugins temporarily while debugging the issue?
greensock.js?ver=1.19.0:18 Uncaught TypeError: i is not a function
greensock.js?ver=1.19.0:18 Uncaught TypeError: Cannot read property ‘length’ of undefinedBest regards,
IsmaelHey sberendss,
Thank you for using Enfold.
You can use action hooks to insert additional content above the shop overview page. An example of that hook can be found in this article.
// https://wpsites.net/web-design/2-ways-to-add-a-widget-before-woo-commerce-product-pages/
Best regards,
IsmaelHey Maarten,
Thank you for using Enfold.
Do you have a test page where we can see the issue? What is the css modification that you have used to fix the issue? Please provide the info in the private field.
Best regards,
IsmaelHi,
Those scripts are for the advance layout builder and should not affect your the site speed. The avia_modal.js file, which is one of their dependencies is not loaded anywhere else except when the ALB is active or currently in used, so the warning occurs.
Best regards,
IsmaelHi,
Thanks for the update.
You can add this hook in the functions.php file to render the language switcher inside the header container. You can then add css codes to adjust the switcher’s position.
add_action( 'ava_main_header', 'ava_wpml_switch_to_header' ); function ava_wpml_switch_to_header() { echo do_action('wpml_add_language_selector'); }Best regards,
IsmaelHi,
Thank you for using Enfold.
1.) This css code should highlight the current menu item.
.main_color .av-subnav-menu > .current-menu-item > a { color: blue; }Unfortunately, you can’t make the parent menu items clickable when the sub menu items are not visible on initial load or the “Hide Mobile Menu Submenu Items” is enabled.
2.) Use this one to adjust the line height of the socket menu items.
#socket .sub_menu_socket li { line-height: 23px; }Best regards,
IsmaelHey aderal2016,
Thank you for using Enfold.
Have you tried using the Widget Logic plugin to control the visibility of the widgets? You can also use the WPML Widget plugin.
Best regards,
IsmaelHi,
Thanks for the update.
The latest error on that log is not critical or fatal and not likely to cause an internal server error. It is also dated March 9, 2019 and completely not related to the theme.
PHP Warning: Invalid argument supplied for foreach() in /home1/ashforth/public_html/wp-content/mu-plugins/wpengine-common/plugin.php on line 1078
Do you have a staging site where we can replicate the issue? We don’t see any fatal errors on that log.
Best regards,
IsmaelHey Pixel_Production,
Thank you for using Enfold.
How do you check the TLS-handshakes? The initial load time of the site on our end, without cache, is less than 10 seconds and less than 2 seconds on succeeding loads. That is not slow considering that the home page itself is more than 3MB. Have you done any optimization to the site? These articles should help.
// https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow
// https://kriesi.at/archives/4-key-wordpress-image-optimization-tipsYou can start with the image compression.
Best regards,
IsmaelHi,
We would like to apologize for not replying immediately.
A fix has been included in the latest version of the theme, 4.5.5. Is the site running on that version? How did you fix it?
Best regards,
IsmaelHi!
Are there any spam protection plugins like Akismet installed in the site? These plugins should filter out spams, delete existing ones or block them completely. A good list of plugins can be found in the following article.
// https://www.wpexplorer.com/antispam-plugins-wordpress/
Regards,
IsmaelHi,
Alright. We’ll close the thread now. Please don’t hesitate to open a new one if you encounter any issues after the update.
Have a nice day.
Best regards,
IsmaelHi,
The images are not displaying when the Section ID is filled because of this css code.
#so-123 img { opacity: 0!important; }Looks like you’re using the generic (.avia-builder-el-11, .avia-builder-el-6 etc) class attributes as selectors for the elements. Those class attributes are temporary and can change based on the number of elements in the page and their order in the builder. Turn on the custom css class field in order to apply a permanent css class attribute to the elements, which can then be used to change their style.
Best regards,
Ismael -
AuthorPosts
