Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the update.
Yes, please provide the WP, FTP login and all the necessary details in the private field so that we can do the modifications. Or if you already hired a developer, you can forward what @Guenni007 suggested above.
Best regards,
IsmaelHi,
Thank you for the update.
It looks different because the sidebar in your page is disabled. You have to enable the page sidebar in order to duplicate the layout seen in the demo. Make sure that the Blog Style is set to Multi Author Blog. And if you are editing the default blog page, make sure that the Enfold > Blog Layout settings are configured properly.
Best regards,
IsmaelHi,
Awesome! Glad that we could help. Please don’t hesitate to open a new thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
It probably looks like that because iOS has issues with fixed backgrounds. Please add this code inside the css media query above.
.avia-fullscreen-slider .avia-slideshow[data-image_attachment="fixed"] > ul > li { background-attachment: scroll !important; }Don’t forget to toggle the Enfold > Performance > File Compression settings after adding the code.
Best regards,
IsmaelHey schwabino,
Thank you for the inquiry.
You can add this filter in the functions.php file to enable the categories for the grid layout.
add_filter('avf_postslider_show_catergories', 'avf_postslider_show_catergories_mod', 10, 1); function avf_postslider_show_catergories_mod($category) { $category = 'show_business'; return $category; }Best regards,
IsmaelOctober 10, 2019 at 7:06 am in reply to: Font not showing up on Mobile (but does show up on Desktop) #1146763Hi,
Thank you for the update.
How did you load or install the font? We found this PHP snippet in the Quick CSS field, which is not supposed to be there because it breaks the merged stylesheets.
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 ); add_action( 'woocommerce_after_single_product_summary', 'woocommerce_template_single_add_to_cart', 15 );`
You have to move it in the child theme’s functions.php file.
Best regards,
IsmaelHey ryane2222,
Thank you for the inquiry.
The popup looks fine our end. How did you add it? Could you provide a screenshot of the layout issue? You can upload the screenshot to imgur or dropbox, then post the link here.
Best regards,
IsmaelHi,
Thank you for the update.
Are you trying to align the textarea and the tab? That is not that easy because the text container above the tab will get taller while the screen width decreases, pushing the tab lower down. You might be able to align it on a particular screen size, but then you have to re-adjust it again on another because the width and height of the text container/column will surely change. What is the purpose of the alignment? The textarea itself can be adjusted by the user directly, so we don’t really see the point of the alignment.
Best regards,
IsmaelHi,
Thank you for the follow up.
You can directly modify the script in the js > avia.js file, look for the “avia_smoothscroll” function and adjust the value of the “fixedMainPadding” variable to adjust the scroll position.
Best regards,
IsmaelOctober 10, 2019 at 6:35 am in reply to: Fullscreen-slider not responsive in mobile (portrait mode) #1146752Hi,
Thank you for the update.
As you can See, in portrait mode the image is cut left and ride.
The slider is supposed to show the images that way because it has to maintain the images’ aspect ratio. How would you like it look like? If you want to focus on the left part of the image, edit the slide and set the “Image Position” to “Center Left”.
Best regards,
IsmaelOctober 10, 2019 at 2:41 am in reply to: iframe lightbox not responsive on tablet and mobile portrait #1146714Hi,
Thank you for the update.
Opening an external page in a lightbox is not really recommended because the space is limited — moreso on mobile devices. You should consider opening the page in a new tab or window. And since the other site (oetztal) can’t save its own cookies inside the frame, the cookie consent bar will always cover the whole page, greatly limiting the view.
Best regards,
IsmaelOctober 10, 2019 at 2:28 am in reply to: The 1st Post in my search results and in Category Archives is missing the title #1146712Hi,
Thank you for the update
We don’t see the issue in the search results page anymore. The featured image and title of the posts are displaying properly in the archive page. Is the issue fixed?
Best regards,
IsmaelHey apajo,
Thank you for the inquiry.
You can adjust the default style of the menu in the Enfold > Main Menu panel. Toggle the “Separator between menu items” settings to remove the borders between the items. And for more style options, go to the Advanced Styling panel and modify the “Main Menu Links” element.
Best regards,
IsmaelOctober 10, 2019 at 2:12 am in reply to: Postion of sub menu container when using transparency layout #1146710Hi Lyse,
You can use this css code to adjust the position of the sub menu container when the header is still transparent.
.av_header_transparency .sub-menu { top: 100px; }It should move it closer to the parent menu item.
Best regards,
IsmaelOctober 10, 2019 at 2:07 am in reply to: Layerslider won't load on iphone (maybe all mobile devices) #1146707Hey CodeSamurai,
The slider in the home page seems to be displaying properly on our end. Is it fixed?
Thank you for the inquiry.
Best regards,
IsmaelHi,
Thank you for using Enfold.
Previously, those fields are activated using a snippet (avia_template_builder_custom_css) in the functions.php file. These snippets will be removed/disabled in the upcoming version, but the fields will stay active as long as it is enabled in the theme options. There’s nothing to worry about.
Best regards,
IsmaelHi,
Thank you for the update.
How are you naming the font sets? Did you follow Yigit’s suggestion above? Please delete the existing font sets in the media library, download the set again — make sure that the name of the set is different from the previous ones — then upload it to the iconfont manager.
Best regards,
IsmaelOctober 10, 2019 at 1:49 am in reply to: Development status parallax effect working on mobile devices #1146704Hi,
Thank you for the update. You can try one of these plugins for now.
// https://wordpress.org/plugins/parallax-image/
// https://wordpress.org/plugins/parallax-scrolling-enllax-js/We are not really sure if the theme’s parallax effect is going to be enabled on mobile view soon, if at all. It doesn’t really add any advantage on mobile view, and if anything the effect just slows down the mobile experience.
Best regards,
IsmaelHi,
Thank you for the update.
The font is either loaded by the recaptcha or the google map services. It is the font used in their widgets. Why are you trying to disable it? There is a way to prevent the font from loading, but it’s not implemented in the theme.
// https://stackoverflow.com/questions/25523806/google-maps-v3-prevent-api-from-loading-roboto-font
Best regards,
IsmaelHi,
Thank you for the update.
The following script might help. Please add it in the functions.php file.
add_action('wp_footer', function() { ?> <script> (function($) { $('.av-image-hotspot').trigger('mouseenter'); })(jQuery); </script> <?php });This will simulate a hover event on the hotspots on page load and it should trigger the script to calculate the position of the tooltip.
Best regards,
IsmaelHi,
@peruwan: Thank you for the inquiry. You can use this filter to append a text before the price.// http://hookr.io/filters/woocommerce_get_price_html/
Please open a new thread if you need further assistance.
Best regards,
IsmaelHi,
UPDATE: Can you set a 404 page in the cerber panel? If we are not mistaken, this line checks if the plugin’s 404 page exists or not.
if ( 0 == crb_get_settings( 'page404' ) ) {Setting a 404 page might help prevent the issue.
Best regards,
IsmaelHi,
When do you usually get the error notifications? Are the errors the same?
We tested the 404 theory and can say, that this can’t be the reason.
The stack trace clearly states that the error occurs in the 404 templates and in the search form icon.
#1 /var/www/clients/xxxxxx/web00/web/wp-content/themes/enfold/includes/error404.php(17): get_search_form() #5 /var/www/clients/xxxxxx/web00/web/wp-content/themes/enfold/404.php(32): get_template_part(‘includes/error4…’) #6 /var/www/clients/xxxxxx/web00/web/wp-content/plugins/wp-cerber/cerber-load.php(3632): include(‘/var/www/client…’) #7 /var/www/clients/xxxxxx/web00/web/wp-content/plugins/wp-cerber/cerber-load.php(1900): cerber_404_page()Please disable the plugin temporarily, wait for the error notification and then post the info here.
Best regards,
IsmaelOctober 9, 2019 at 11:24 pm in reply to: Enfold – with the Visual Artist Demo files – two small issues #1146679Hi,
Sorry for the delay.
We added the following script in the functions.php file to resize the window automatically on page load, which triggers the masonry element animation and reset the scroll position target from 6614px to 5630px.
add_action('wp_footer', 'ava_auto_resize'); function ava_auto_resize(){ ?> <script> (function($){ var int = window.setInterval(function(){ $(window).trigger('resize'); $(window).trigger('debouncedresize'); $(window).trigger('av-height-change'); }, 1000); $(window).on('load', function() { setTimeout( function() { clearInterval(int); }, 5000); }); })(jQuery); </script> <?php }Best regards,
IsmaelHi,
Thank you for the update.
We removed an invalid code in the Quick CSS field and disabled the file compression settings temporarily. Please check the page again. (see private field)
/*outline button color*/ #top .avia-button.avia-color-dark { border-color: #719430;!important; }We removed the semi colon after the hex value.
Best regards,
IsmaelHi,
Thank you for the update.
We upgraded the theme to v4.6.3.1, modified the class-htmlhelper.php file and set the post_status value directly to fix the issue temporarily.
Best regards,
IsmaelHi,
Thank you for the update.
Are you trying to apply borders to the menu items? You can try this css code.
#top #wrap_all .header_color .av-menu-button-colored > a .avia-menu-text { background-color: #6786a1; color: #fff; border-color: red; }You can also adjust the menu style in the Enfold > Advanced Styling panel.
Best regards,
IsmaelHey Michael,
Thank you for the inquiry.
Some of the elements have to be disabled manually because they are still use by other elements or templates in the site. For example, the gallery is still loaded because it is required by the default gallery shortcode. Another example is the post slider css, which is still loaded despite the settings because the archive page requires its stylesheets when the blog layout is set to “grid”.
Best regards,
IsmaelHey senfdazu,
Thank you for the inquiry.
The option is not available by default, but you can do the following steps to render a notification box inside the slider when the users have not accepted the cookies, yet.
Add this script in the functions.php file to append a custom box inside the slider on load.
add_action('wp_footer', function() { ?> <script> (function($) { function getCookie(name) { var value = "; " + document.cookie; var parts = value.split("; " + name + "="); if (parts.length == 2) return parts.pop().split(";").shift(); } var accepted = getCookie('aviaCookieConsent'); if(!accepted) { $('<div class="av-video-privacy-notice"><p>Accept Cookies First</p></div>').appendTo('.av-video-slide'); } })(jQuery); </script> <?php });You can then use this code in the Quick CSS field to style the box.
.av-video-privacy-notice { width: 100%; height: 100%; background: #fff; z-index: 100; position: relative; text-align: center; display: table; } .av-video-privacy-notice p { position: relative; top: 0; display: inline-block; vertical-align: middle; background: orange; border: 1px solid red; border-radius: 2px; padding: 24px 74px; width: auto; top: 74px; }Best regards,
IsmaelOctober 9, 2019 at 11:17 am in reply to: GDPR modal without message bar not possible anymore? #1146467Hi,
That’s odd. There should be 4 options under the “Enable cookie consent messages” settings. Please download the latest version of the theme from your Themeforest account and try to update the theme again manually via FTP.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
Ismael -
AuthorPosts
