Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the update.
We adjusted the above filter a bit and added a conditional tag to it so that the settings will only be applied to single portfolio pages. It should work properly now.
Best regards,
IsmaelHi,
Thank you for the update.
Have you tried to mute the video, or disable its audio? We found this error in the console when we check the page that contains the video slider.
NotAllowedError: The play method is not allowed by the user agent or the platform in the current context, possibly because the user denied permission.
According to the following discussion, we have to add the “allow” attribute in the iframe tag to enable autoplay for vimeo videos.
// https://github.com/vimeo/player.js/issues/389
Please try this script in the functions.php file.
function ava_iframe_parameters(){ ?> <script> (function($){ $(document).ready(function() { function avia_iframe_parameters(container) { var iframe = jQuery('iframe[src*="vimeo.com"]', container); iframe.each(function() { $(this).attr('allow', 'autoplay'); }); } avia_iframe_parameters('body'); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_iframe_parameters');
This will add the attribute in the iframe tag.
Best regards,
IsmaelHi,
Thank you for the update.
Did you remove the browser cache after adding the code and before checking the page? Is the Performance > File Compression settings disabled? If not, please disable the settings temporarily prior to checking the page. The css code above should contain the background image and prevent it from overflowing outside the slider.
Best regards,
IsmaelHey!
,they increased memory to 4GB from 1GB and still same problem
They said it is impossible for the 4G allocation to work.
Why would they increase the memory if they know that it’s not going to be actually applied? Shared hosting never has any “dedicated” resources — they are sets of virtual machines running on bare metal servers.
Can you point us to the GoDaddy shared hosting plan that you have for the site? Even for Google, Azure or AWS — some of the largest hosting companies in the world — a shared-core virtual machine only has a 0.6GB of memory and will cost you around $4-5 a month, but we are not really sure if it’s the same for GoDaddy.
Try to increase the memory limit directly from the .htaccess file.
Cheers!
IsmaelNovember 15, 2019 at 10:41 am in reply to: Avia Full screen slider: Start with random slide? #1157130Hey marscui,
Thank you for the inquiry.
The full screen slider doesn’t have this option, but you can accomplish it using the layer slider plugin. You have to enable the Shuffle Mode option from the Slider Settings > Slideshow > Other settings section to display the slides in random order.
Best regards,
IsmaelNovember 15, 2019 at 10:36 am in reply to: Layerslider behind transparent menu with standard editor #1157128Hi,
Thank you for the update.
One of reasons is, that with extended editor, the Single Post Navigation arrows are NOT shown.
When a slider or any full width element is added in a page, the post navigation will be automatically disabled because it tends to overlap with the full width element. We have to use the following filter in the functions.php file to change that behavior.
function avf_post_nav_settings_mod($settings) { $settings['is_fullwidth'] = false; $settings['skip_output'] = false; return $settings; } add_filter('avf_post_nav_settings','avf_post_nav_settings_mod', 999, 1);
When we create a layerslider and set “transparent header”, it works perfect when using the “enhanced editor”.
We actually explained it above. The container in the default template, where the layer slider and the rest of the content of the post are added, is not full width and unlike in the ALB, the layer slider is not added directly below the header before the rest of the content. You have to modify the single.php file, or the includes > loop-index.php file. Unfortunately, this will require changes that are beyond the scope of support.
Best regards,
IsmaelHi,
Thank you for the update.
Why is there not an own Enfold tool to be able to purge all that media without utility?
There are plugins in the repository that already have the this functionality, so adding the same thing in the theme is not really advantageous. Those plugins are safe to use, but it’s always wise to create a backup first before using them so that you can restore the site in case something went wrong.
Best regards,
IsmaelHi,
Thank you for the update.
The test page no longer exists, so we couldn’t inspect the element. Did you remove it? Please add it again or provide a link to the page containing the element that you want to modify. Or try to use this css code to decrease the height of the titles in the tab section.
#top .av-section-tab-title { padding: 0 20px 0 20px; display: inline-block; text-decoration: none; } #top .av-tab-no-image .av-inner-tab-title { margin-bottom: 0; margin-top: 0; } #top .avia-tab-title-padding-default .av-outer-tab-title { padding: 0; }
Best regards,
IsmaelHi,
Thank you for the update.
We are not really sure about the actual logic behind it, but the first thing that comes to mind is to keep the title attribute filled, so it’s not empty. You can always override the template in the child theme if you don’t really need to add a description for the featured featured image using the the title attribute. It can be considered as a bug or an error if the title or the description field is not working.
Best regards,
IsmaelHi,
Thank you for the update.
The main stylesheet in the wp-content/uploads/dynamic_avia folder is not found. The file should be regenerated whenever you toggle any of the theme options, but it’s not working as it should. Please try to correct the permission settings of files and folders in the server.
// https://wordpress.org/support/article/changing-file-permissions/#example-permission-settings
Best regards,
IsmaelNovember 15, 2019 at 9:21 am in reply to: Page builder's min-height seems to be causing problems #1157095Hi,
Thank you for the update.
The minimum height property is probably added automatically by the slider because it’s not from the theme. And if you noticed the actual revolution slider wrapper’s height property value is the same as the value of the minimum height, so it’s possible that the slider applies it on both the wrapper and its parent container.
<div id="revolutionslider_1" class="avia-layerslider avia-revolutionslider main_color avia-shadow avia-builder-el-3 el_after_av_section el_before_av_section slider-not-first container_wrap fullsize" style=" <strong>min-height: 405px;</strong>" data-ce-key="265"> <!-- START HOW CARDS REVOLUTION SLIDER 6.1.3 --> <rs-fullwidth-wrap id="rev_slider_2_1_forcefullwidth" style="margin-top:0px;margin-bottom:0px;" data-ce-key="266"><rs-module-wrap id="rev_slider_2_1_wrapper" data-source="post" style="background: rgb(231, 231, 231) none repeat scroll 0% 0%; padding: 0px; margin: 0px auto; position: absolute; overflow: visible; width: 792px; left: 0px; <strong>height: 405px;</strong>" class="" data-ce-key="267">
`
Best regards,
IsmaelHi,
Thank you for the update.
The theme doesn’t disable the WP REST API and it’s not using it either, so it’s probably not the issue. The API is already merged in the core, but you can use the following plugin to ensure that the endpoints are enabled.
// https://wordpress.org/plugins/wp-rest-api-controller/
Have you tried resetting the plugin? Create a restore point or a backup of the site first just in case.
Best regards,
IsmaelHi,
Awesome! Glad it works. We’ll keep the thread open as long as you wish. Please don’t hesitate to give us an update if anything comes up.
Best regards,
IsmaelNovember 15, 2019 at 8:59 am in reply to: Can't get privacy / cookie consent acceptance to work #1157090Hi,
Thank you for the update.
We deactivated the cache plugins and turned off the Performance > File Compression settings temporarily to regenerate the scripts required for the new privacy options. We also set the Default Cookie Behaviour to the first option so that all cookies are accepted on load — user can always opt out manually if they wish. We also enabled the advanced options and set it so that the page auto reloads once the user accepted the cookies. You can always configure the options back when necessary. The map in the locations page now works properly when we check. However, the modal popup window still doesn’t display on page load. We had a hunch that it’s due to the lightbox script, so we created a dummy page and added an image element, and as suspected, the lightbox popup is not functioning properly (see private field). We didn’t find any errors or anything, so it’s possible that there’s a conflict somewhere — with the plugins or a custom script. Can we deactivate the plugins temporarily?
Best regards,
IsmaelNovember 15, 2019 at 8:30 am in reply to: Navigation is very shaky in IE & FF when scrolling #1157086Hi,
Thank you for the update.
The site is down when we visited it again. Are you doing some improvements in the server?
// https://www.isitdownrightnow.com/vanderavoirt.be.html
Please update us once the site is back so that we can inspect the navigation again.
Best regards,
IsmaelNovember 14, 2019 at 3:06 pm in reply to: child CSS doesn't show up on front-end correct with performance theme setting #1156816Hi,
The changes added to the style.css file or the Quick CSS field will not be included in the merged stylesheet while the Performance > File Compression settings are enabled. You have to toggle it, or turn it off and on again to regenerate the stylesheets and include the recent modifications. That’s how it works. What you can do is keep the settings disabled while you’re working on the site and enable it back once you’re completely done.
Thank you for understanding.
Best regards,
IsmaelNovember 14, 2019 at 2:58 pm in reply to: Implementing the same theme setting to all languages using Enfold+WPML #1156811Hi,
@beenee: Yes, export/import of the theme options is still the easiest way to apply the current settings to other languages. If you have css modifications and intend to use it across the site or for all languages, put the css code in the child theme’s style.css file instead of the Quick CSS field.
Best regards,
IsmaelHi,
Thank you for the update.
The indicator for the active anchor is not working properly because you’re not using color sections or grids to divide the content in the page. The anchors names or ID were applied in the link tags and is not recognize by the script that detects for the current menu item. Try to separate the content using color sections or grids and apply the anchor name in the Section ID field.
Best regards,
IsmaelHi,
Thank you for the inquiry.
This is an issue with the isotope script used in the masonry element. The grid requires a window resize event in order to correct the items’ position. Adding the following script in the functions.php file should help.
add_action('wp_footer', 'ava_auto_resize'); function ava_auto_resize(){ ?> <script> (function($){ var int = window.setInterval(function(){ $(window).trigger('resize'); $(window).trigger('debouncedresize'); }, 2000); $(window).on('load', function() { setTimeout( function() { clearInterval(int); }, 2000); }); })(jQuery); </script> <?php }
Best regards,
IsmaelNovember 14, 2019 at 6:16 am in reply to: Import of Enfold-Demo "One Page Restauraunt" has a few bugs #1156660Hi,
Thank you for the info.
We will forward this to the team and have it fix as soon as possible. Please don’t hesitate to open a new thread if you need anything else. Have a nice day.
Best regards,
IsmaelNovember 14, 2019 at 6:11 am in reply to: Slider shows underneath under navigation. Need help with CSS. #1156659Hi,
Thank you for the update.
The background of the first section is showing behind the transparent header background. You have to adjust the padding above the main container so that it is positioned at the very bottom of the header container. Please add this css code to adjust the top padding.
.html_header_top.html_header_sticky #top #wrap_all #main { padding-top: 205px; }
Best regards,
IsmaelHi,
Thank you for the clarification.
Unfortunately the snippet above removes all update notifications at once.
Sorry for missing that info. The filter should only unset notifications from the layer slider plugin. Can we access the dashboard and the file server? We would like to test the filter in your installation. Please post the login details in the private field.
Best regards,
IsmaelHey Grobi,
Thank you for the inquiry.
You should apply the style to the main header container instead of the logo container. Try to replace the css with the following code.
#header_main { position: fixed; top: 0; right: 0; left: 0; z-index: 1000!important; background-image: url("https://einklang-heilpraxis.de/wp-content/uploads/2019/10/wald.jpg"); background-size: cover; }
Please don’t forget to remove the previous css, and toggle the Performance > File Compression settings.
Best regards,
IsmaelNovember 14, 2019 at 5:41 am in reply to: 3 Different Problems: Heading font weight, Button on text and cookie banner. #1156645Hi,
Thank you for the update.
Glad to know that most of the issues are fixed. For the comment form button, please use the following css code to move it downwards away from the privacy checkbox/text.
#commentform .form-submit { margin-top: 50px; }
Best regards,
IsmaelHi,
Thank you for the update.
We can reproduce the issue on our end, but we are not really sure what’s causing it. Can we access the file server? We would like to do some tests and debug the issue. Please post the FTP details in the private field.
Did you modify the .htaccess file?
Best regards,
IsmaelHi,
Thank you for the update.
You can either trim the content to decrease the height of the container, or adjust the font size of the text inside.
.wpcs_content_main p, .wpcs_content_main li { font-size: 10px; line-height: 2em; }
You can also adjust the padding around the content and remove the minimum height from the following css modification.
#wpcs_content_inner_8438 { padding-top: 10!important; margin: 0px !important; border: none !important; } div#wpcs_content_inner_8438 { display: none; max-width: 100%; min-height: 0; background: #fcfcfc; padding: 20px 20px 20px 20px; margin: 60px 40px 60px 40px; color: #666666; border: 1px solid #ffffff; }
Then adjust the bottom position of the pseudo element.
#wpcs_content_inner_8438::after { content: ''; background: url("/../../wp-content/uploads/2017/12/footer_figures_bg.png"); width: 190px; height: 130px; position: absolute; bottom: 0; }
Best regards,
IsmaelHi,
Thank you for the update.
Enabling the file compression again should not cause any problems. Disabling the option only unmerge the stylesheets, and re-enabling it will put them back together in a single file again, but this time it will include the recent css modifications. And again, please don’t forget to remove the < style > tag when you add it in the Quick CSS field or the style.css file as suggested previously.
@import url('https://fonts.googleapis.com/css?family=Caveat&display=swap');
Best regards,
IsmaelHi,
Thank you for the update.
Have you tried to adjust the height of the color section to make room for the background image? Or try to set the background attachment from “parallax” to “fixed”. The parallax container automatically resizes its container based on the size of the parent color section, so it might not be the best option for the image.
To remove the border of the next section, use this css code.
#after_section_1 { border-top: 0; }
Best regards,
IsmaelHi,
Thank you for the update.
Are you using the Table of Contents widget anywhere in the site? We disabled it temporarily from the functions.php file, line 708.
//register_widget( 'avia_auto_toc' );
You should be able to access the dashboard now without the error.
Best regards,
IsmaelNovember 14, 2019 at 4:53 am in reply to: Edit "Content Elements" such as Icon Box & Button #1156626 -
AuthorPosts