Forum Replies Created
-
AuthorPosts
-
Hi,
This is not working because the layer is set to inherit the font used by the theme and the only available font weights for Open Sans, which is the current font set in the Enfold > General Styling, are 400 and 600. You are trying to set the font weight of the heading layer to 200.
You can add this filter in the functions.php file to register more font weight for Open Sans.
function avia_add_heading_font($fonts){ $fonts['Open Sans New'] = 'Open Sans:100,200,300,400,600,700'; return $fonts; } add_filter( 'avf_google_heading_font', 'avia_add_heading_font'); function avia_add_content_font($fonts){ $fonts['Open Sans New'] = 'Open Sans:200,300,400,600,700'; return $fonts; } add_filter( 'avf_google_content_font', 'avia_add_content_font');
Make sure to select the new font called “Open Sans New” in the General Styling > Fonts panel.
Best regards,
IsmaelJune 16, 2021 at 1:55 pm in reply to: how can i move the js script avia_cookie_check_sessionStorage () in the footer? #1306002Hi,
Crawlers should be smart enough to ignore scripts that are not directly related to the content or at least assign priority on how they should be assessed, so having this small script within the head tag will not affect how search engines crawl the site.
You may need to keep the modification for now if you really need to move it to the footer.
Best regards,
IsmaelHi,
Which demo did you import? The section “why choose us” is not available in the construction demo. You can just ignore the text file and use the xml files to import the demo.
In the contact page, the Google Map element is used, which is under the Media Elements panel of the Advance Layout Builder. You will have to create an API key first. Please check the documentation for more info.
// https://kriesi.at/documentation/enfold/google-map/
Best regards,
IsmaelHi,
We understand. Please let us know if you have any questions regarding the theme.
Have a nice day.
Best regards,
IsmaelHi,
I was actually referring to the cropping option for registered thumbnails. Most of the thumbnails that are generated by the theme are automatically cropped to the exact dimension, while few others are not. But this does not matter anymore since both option that you tried is not working.
Did you install an image optimization plugin? What happens when you disable it?
Best regards,
IsmaelJune 16, 2021 at 1:17 pm in reply to: Number in Price table can not be seen on Apple device #1305989Hi,
Try to adjust the media query further or create another media queries for those devices. You can find examples of css media queries for different devices in the following article.
// https://css-tricks.com/snippets/css/media-queries-for-standard-devices/
Best regards,
IsmaelHey waterwalk,
Thank you for the inquiry.
1.) Would you mind providing a scenario or area of the site where this should be implemented? Generally, the click event listener is used when necessary.
2.) Yes, all fields in the contact form have an associated label by default. It can also be disabled or be replaced with a placeholder when required.
Best regards,
IsmaelHi,
Currently, we do not know what is actually causing the issue, so we cannot give you any solution. Have you tried using the theme’s sliders from the Advance Layout Builder?
Best regards,
IsmaelHi,
Thank you for the update.
We checked the theme options and the Privacy & Cookies > Cookie Handling > Default Cookie Behavior is set to the second option, which is why all external services are enabled by default. You have to set it to either the third or fourth option. And you should also update the theme to the latest version, 4.8.3.
Best regards,
IsmaelHi,
Thank you for the update.
It is working properly on our end. The first slider is displayed when the screen size is more than 767px. And the second slider only shows when the screen width is equal or less than 767px, the first slider at this point is hidden.
Best regards,
IsmaelJune 15, 2021 at 3:12 pm in reply to: Full width slider change options of position of text and buttons to center below #1305829Hi,
You might have forgotten to include the site URL. Please post it in the private field.
For the meantime, try to use this css code to adjust the position of the caption.
.caption_bottom .slideshow_caption { bottom: 50px; }
Best regards,
IsmaelHey Intell,
Thank you for the inquiry.
Which font are you trying to upload? Please note that the font manager is intended for Google fonts, so uploading fonts from other sources might return unexpected results.
Best regards,
IsmaelHi,
Thank you for the inquiry.
The snippet is not working correctly because window.load function is no longer valid. Please try to replace the snippet with this one.
// activates a sort button based on the psort query parameter function ava_activate_sort_button() { if(!$_GET["psort"]) return; ?> <script> (function($){ $(document).ready(function() { <?php echo '$(".'. $_GET["psort"] .'_sort_button").trigger("click");'; ?> }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_activate_sort_button');
Best regards,
IsmaelJune 15, 2021 at 2:19 pm in reply to: Social Share Xing missing after Update to Enfold 4.8.3 #1305821Hey!
Regarding the second filter, you might have to replace is_single with is_singular(“page”) and add this css code to adjust the width of the ul tag.
#top .av-share-box ul { width: 100%; }
Replace the snippet with this one.
function avia_add_social_toolbar_template_builder($content = "") { if (is_singular("page")) { $content .= avia_social_share_links(array(), false, '', false); $content .= ''; } return $content; } add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1);
Best regards,
IsmaelJune 15, 2021 at 11:49 am in reply to: Cannot add images to enfold gallery / masonry gallery #1305783Hey sroemer,
Thank you for the inquiry.
The login account above is not working or is invalid. Please check the info carefully or provide another admin account so that we could check the issue. Have you tried deactivating the plugins temporarily?
Best regards,
IsmaelHi,
Thank you for the update.
We may have to set the builder to debug mode so that we could inspect the shortcodes in the builder. The Appearance > Editor is not accessible, so we are not able to set it. The following documentation provides for more info about the debug mode.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode
You have to copy the snippet from the documentation in the functions.php file.
Best regards,
IsmaelHey CS,
Thank you for the inquiry.
Where can we see the issue? Which builder element or blog layout are you using? If the layout is set to grid, the avia_post_slide_query filter should have worked. Please provide the page URL so that we can inspect the issue further.
Best regards,
IsmaelHey nickthe,
Thank you for the inquiry.
Have you tried adjusting the style of the heading with css instead of wrapping them inside a bold or b tag? You can also adjust the style of the heading tags in the Enfold > Advanced Styling panel. Unfortunately, adding special characters and html code in the title field is not allowed because it breaks the shortcode or the element.
Best regards,
IsmaelJune 15, 2021 at 10:23 am in reply to: Google Analytics Cookies are loaded automaticaly on load #1305756Hi,
Sorry for the delay. We provided a reply in this thread, which seems to be a duplicate. https://kriesi.at/support/topic/google-analytics-cookies-are-loaded-automaticaly/#post-1305519
We will close this thread now. Please continue on the thread above.
Best regards,
IsmaelHi,
The drop down or the sub menus in the burger menu overlay are not displaying correctly because of this css code.
.home ul.sub-menu, .page-id-33 ul.sub-menu, .page-id-160 ul.sub-menu, .page-id-164 ul.sub-menu, .page-id-167 ul.sub-menu, .page-id-170 ul.sub-menu, .page-id-173 ul.sub-menu, .page-id-176 ul.sub-menu, .page-id-179 ul.sub-menu { display: none !important; }
You have to remove it or adjust it accordingly.
Best regards,
IsmaelJune 15, 2021 at 10:16 am in reply to: Does Enfold or WordPress Automatically Add Canonical Links? #1305754Hey SyberKnight,
Thank you for the inquiry.
It is automatically added by WordPress in the head tag using the wp_head hook and with the following function as the callback.
// https://developer.wordpress.org/reference/functions/rel_canonical/
If you want to remove it, just add this code in the functions.php file.
remove_action( 'wp_head', 'rel_canonical' );
Best regards,
IsmaelHey Eduardo,
Thank you for the inquiry.
The enterprise version of reCAPTCHA is not currently supported by the theme. You will have to use the available versions in the Theme Options > Google Services panel for now.
If you would like to implement it yourself, please check this documentation.
// https://cloud.google.com/recaptcha-enterprise/docs/instrument-web-pages
Best regards,
IsmaelHey bcerin,
Thank you for the inquiry.
Have you tried setting a different menu for mobile in Enfold > Main Menu > General > Alternate Menu for Mobile settings? The solution that we provided in the previous thread is already included in the latest version of the theme, 4.8.3. Please make sure that the theme or the site is updated.
Best regards,
IsmaelHey digitalprint2222,
Thank you for the inquiry.
Where can we see the section where the custom css classes were applied? Please provide the site URL in the private field so that we can check it. This is working properly when we tested it on our end.
Best regards,
IsmaelJune 15, 2021 at 9:00 am in reply to: Not getting the smooth scrolling on One Page Demo when clicking menu items. #1305739Hi,
@smorano: As @madsonic mentioned above, it works when we set jQuery to an older version. We installed the jQuery Migrate plugin in the site and disabled the file compression settings temporarily.
@madsonic: Thank you for the info. Do you see any errors when setting jQuery to older version? You may need to keep the plugin enabled for now.Best regards,
IsmaelHi,
Alright. Let us know if you need further assistance. You may need to add css rules in the css media queries to adjust the height value of the modified elements (e.g the testimonial section) on different screen sizes. The layer slider seems to have the same height on mobile and desktop view, so having the same css rule for both should be enough.
@thinkjarvis: Thanks for the info.
Best regards,
IsmaelJune 15, 2021 at 8:41 am in reply to: Sub Menu Element – remove bullets and add own icon (mobile with toggle switch) #1305737Hey jhieronimus,
Thank you for the inquiry.
The site is asking for another authentication, probably the htaccess. Please include the htaccess authentication in the private field so that we can login and check the site.
You can adjust the style of the burger menu in the Enfold > Main Menu > Burger/Mobile Menu panel. Set the Menu Overlay Style to minimal or the third option if you want to remove the lines.
Best regards,
IsmaelHi,
Thank you for the info.
You may need to create a custom shortcode that selects and renders a contact form shortcode based on certain conditions. Please check the following documentation for more info about the shortcode API.
// https://codex.wordpress.org/Shortcode_API
Best regards,
IsmaelHey JanBierhof,
Thank you for the inquiry.
We get this error whenever we try to change the name.
Error: Vul uw naam en bericht in AUB.
Klik hier om terug te gaanYou may need to contact the script or plugin authors for more info regarding the chat box issue. Please note that support for third party scripts and plugins are limited. Please check the following link.
// https://kriesi.at/support/register/#av_section_2
Best regards,
IsmaelHi,
But as soon as I make a selection of a downloaded file and zip it again with macos
So it works when you upload the original zip file? You can actually select the font variation or styles that you need when using the google-webfonts-helper and only download those variations excluding the others. But you have to rename the files and make sure that it follows Google’s naming conventions. Example.
Nunito-Black.woff
Nunito-Regular.woff
Nunito-ExtraLightItalic.woff
Nunito-Bold.woffThe custom font uploader will not be able to recognize a font with an arbitrary name.
Best regards,
Ismael -
AuthorPosts