Forum Replies Created
-
AuthorPosts
-
September 11, 2018 at 6:31 am in reply to: Parent theme upgraded to 4.4.1 – site has lost all styles/layouts after update #1008183
Hi,
Thank you for using Enfold.
How did you transfer the content, theme settings and posts to the live site? Did you use the WP Migrate DB plugin?
// https://deliciousbrains.com/wp-migrate-db-pro/doc/quick-start-guide/
Best regards,
IsmaelHi,
We’ve added this code in the functions.php file.
add_shortcode('avia_search', 'get_search_form');And then used the [avia_search] shortcode in the “Header” > “Extra Elements” > “Phone Number or small info text” field. (see private field)
Best regards,
IsmaelHi,
Try to apply the object-fit property to the image. This property is not supported on IE but it works on major browsers.
#top .col-work .avia-image-container-inner img.avia_image { position: absolute; top: 0; left: 0; width: 100%; height: auto; min-height: 462px; -o-object-fit: cover; object-fit: cover; }Best regards,
IsmaelHi,
Thanks for the update.
You have to remove this css code from the Quick CSS field.
#top.category .big-preview.single-big { display: none; }Best regards,
IsmaelSeptember 11, 2018 at 5:23 am in reply to: Old sidebar widget title style flashes on page load #1008171Hi,
Odd. I can’t see the issue when the theme’s File Compression options are disabled. If the option is enabled, the merged stylesheet takes about 300++ ms to load so you can see the default style before the theme overrides it. Try to move the SiteOrigin css modifications to the theme’s Quick CSS field to the child theme’s style.css file then enable the file compression again.
Best regards,
IsmaelSeptember 11, 2018 at 5:11 am in reply to: How can i remove the gaps between these container content view in responsive #1008170Hi,
Have you tried setting the color sections’ Background Repeat to “Stretch to Fit” instead of “Scale to Fit”? You may need to adjust the “Background Image Position” too. Here’s the result when I set the repeat to “Stretch to Fit” instead of “Scale to Fit”, and the position to “top left” instead of “center “center”.
Desktop: https://imgur.com/a/W8KNuKL
Mobile (iPhone 6): https://imgur.com/a/6QXFQAMThis particular setting may not work for every color sections so you have set it a differently.
Best regards,
IsmaelHi,
We would like to help you with the issue but we are not familiar with the plugin’s code. If possible, please contact the plugin author for additional help and forward the info to us once they find the conflict.
Best regards,
IsmaelHey ginnywills,
Thank you for using Enfold.
You can use this hook to add a notification above the billing forms. Just add it in the functions.php file:
add_action( 'woocommerce_before_checkout_form', 'avf_woocommerce_before_checkout_form' ); function avf_woocommerce_before_checkout_form() { wc_print_notice( __( 'ADD NOTIFICATION HERE.', 'woocommerce' ), 'success' ); }Should we close the other thread?
// https://kriesi.at/support/topic/woocommerce-check-out-page/#post-1006474
Best regards,
IsmaelHey Antonia Sondermann,
Thank you for using Enfold.
Did you setup a billing account for your Google Cloud Platform Console? You can setup a billing account here:
// https://console.cloud.google.com/projectselector/billing/enable
More info: https://cloud.google.com/billing/docs/how-to/manage-billing-account
And you may need to update the API key if you’re using the old one or the v2 version.
// https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key
And while you’re at it, please register your theme purchase code to the forum.
// https://kriesi.at/support/register/
Best regards,
IsmaelHey Tima,
Thank you for using Enfold.
1.) What is the screen resolution of your monitor? I got a 1920x1080px screen and the masonry displays as 6 columns because of the following css media query.
@media only screen and (min-width: 1800px) { .responsive.html_stretched .av-masonry-col-flexible .av-masonry-entry, .responsive.html_av-framed-box .av-masonry-col-flexible .av-masonry-entry { width: 16.6%; } }In your screenshot, it is actually displaying the default column width, which is 24.90% or 4 columns. Use the following css code if you want it to display as 3 columns.
@media only screen and (max-width: 1799px) and (min-width: 989px) { .responsive .av-masonry-col-flexible .av-masonry-entry { width: 33.3%; } }2.) Use this css code to remove the date:
#top .av-masonry-date { display: none; }3.) And add this css code to remove the background or set it to transparent:
.main_color .av-masonry-pagination, .main_color .av-masonry-pagination:hover, .main_color .av-masonry-outerimage-container { background-color: transparent; }Best regards,
IsmaelHi,
The update contains various improvements, not necessarily related to security. You’ll find the change log here: https://kriesi.at/documentation/enfold/changelog/
Are you using the advance layout builder for your products? Maybe, we can exclude the product post type from the auto update. Try this filter in the functions.php file.
add_filter('avf_alb_supported_post_types_elmgr', 'avf_alb_supported_post_types_elmgr_mod', 10, 1); function avf_alb_supported_post_types_elmgr_mod($types) { $types = array( 'post', 'portfolio', 'page' ); return $types; }Best regards,
IsmaelSeptember 11, 2018 at 4:12 am in reply to: Color section fixed background doesn't work on iPhone #1008154Hi,
They are actually not the same. They set the actual container, not the background image, as a “fixed” element and change its position to “relative” once the scroll position is equal or higher than the view port height on scroll. You can do the same with the theme if you want to accomplish the same effect. Add two color sections, set both height minimum height to 100% of the browser height, add the background image to the second color section and then apply a unique Section ID to it –e.g., “fixed-section”. After that, add this script in the functions.php file.
add_action('wp_footer', 'avia_scroll_fixed_section', 9999); function avia_scroll_fixed_section() { ?> <script> (function($) { $(document).ready(function () { var fixed = $('#fixed-section'); function avia_scroll_fixed_section() { set_status = function() { var st = $(window).scrollTop(); var h = $(window).height(); console.log(h, st); if(st >= h) { fixed.addClass('fixed-section-arrived'); } else { fixed.removeClass('fixed-section-arrived'); } }; $(window).on( 'scroll', function(){ window.requestAnimationFrame( set_status )} ); set_status(); } avia_scroll_fixed_section(); }); })(jQuery); </script> <?php }And this css code on the Quick CSS field:
#fixed-section { left: 0; right: 0; bottom: 0; z-index: -1; width: 100%; position: fixed; height: 100vh; will-change: transform; } .fixed-section-arrived { position: static !important; }Don’t forget to remove the browser prior to checking the page.
Best regards,
IsmaelHi,
Great! Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
Don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
IsmaelHi,
Select the “portfolio_small” thumbnail of the “portfolio” and “post” custom post type. Again, you have to make sure that the “portfolio_small” thumbnail is selected in the portfolio grid options after regenerating the images.
Best regards,
IsmaelSeptember 11, 2018 at 3:43 am in reply to: Google Maps API problems. This page can't load Google Maps correctly. #1008144Hi,
Did you add any modifications to the theme? It’s still loading the old map script. Please try to manually update the theme again via FTP.
// https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#update-via-ftp
Best regards,
IsmaelSeptember 10, 2018 at 10:52 am in reply to: Mega Menu link "Demo Page Overview" like in 2017 Demo under shop #1007853Hi,
Thanks for the update. This css code should change the color of the menu item bullet or arrow.
.header_color .avia-bullet { border-color: red; }Adjust the color value as needed.
Best regards,
IsmaelHi,
Thanks for the update.
This css code should fix the timeline icon display.
@media only screen and (max-width: 767px) { .avia_transform .avia-timeline-vertical .milestone_icon { opacity: 1; -webkit-transform: scale(1); -ms-transform: scale(1); transform: scale(1); } }Best regards,
IsmaelHi,
We have added the code on the Quick CSS field and disabled the Performance > File Compression options temporarily. Please enable those back once you’re done with the site.
Best regards,
IsmaelHi,
I reverted the logo and menu position back to what it was. Please try to update the theme manually via FTP.
Best regards,
IsmaelHey Kathy,
Thank you for using Enfold.
The mobile menu item is not being rendered inside the menu container. Did you update the whole theme? Please try to update it again manually via FTP.
// https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#update-via-ftp
// https://kriesi.at/archives/the-complete-guide-to-updating-enfoldBest regards,
IsmaelHey DimaP,
Thank you for using Enfold.
I can’t reproduce the issue on my end. The logo resizes properly on every click or scroll. On which browser are you testing this? Please provide a screenshot.
Best regards,
IsmaelSeptember 10, 2018 at 5:29 am in reply to: Customize the category archive page using a grid layout. #1007755Hey webWahine,
Thank you for using Enfold.
1.) You have to adjust the “contents” parameter of the post slider object inside the archive.php file. More info here: https://kriesi.at/support/topic/categorytag-archive-show-read-more-text-link-and-2-columns-instead-of-3/#post-618056
2.) There should be some space between the entries by default but this css code overrides it.
@media only screen and (max-width: 989px) { .responsive #top #wrap_all .flex_column { margin: 0px !important; } }If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
IsmaelHey strumpumpel,
Thank you for using Enfold.
Do you want to resize the button inside the slider? This should help.
@media only screen and (max-width: 480px) { .avia-slideshow-button { font-size: .5em !important; } }Best regards,
IsmaelSeptember 10, 2018 at 5:19 am in reply to: Using the Masonry Gallery Animation with Layout Elements or Images? #1007753Hi,
If you’re using Dude’s code, you should add the custom css class attribute to the color section element where the columns reside.
Or use the following css code and then apply the custom css class attribute to the column elements.#top .product_animation { -webkit-animation: avia_msonry_show_mod 0.8s 1 cubic-bezier(0.175, 0.885, 0.320, 1.075); animation: avia_msonry_show_mod 0.8s 1 cubic-bezier(0.175, 0.885, 0.320, 1.075); } /*pop up animation*/ @-webkit-keyframes avia_msonry_show_mod { 0% { -webkit-transform:translateZ(300px) translateY(200px) rotateX(-70deg); opacity: 0.1; } 100% { -webkit-transform:translateZ(0px) translateY(0px) rotateX(0deg); opacity: 1; } } @keyframes avia_msonry_show_mod { 0% { transform:translateZ(300px) translateY(200px) rotateX(-70deg); opacity: 0.1; } 100% { transform:translateZ(0px) translateY(0px) rotateX(0deg); opacity: 1; } }Best regards,
IsmaelSeptember 10, 2018 at 5:07 am in reply to: Color section fixed background doesn't work on iPhone #1007752Hi,
Thanks for the update.
A quick explanation why fixed elements are a bit erratic on mobile view.
// https://kriesi.at/support/topic/fullscreen-slider-fixed-position-doesnt-work-in-mobile/#post-997863
One of the users provided a fix that converts fixed to static backgrounds on mobile view.
// https://kriesi.at/support/topic/playing-with-new-demos/#post-871865
Best regards,
IsmaelHi,
Thanks for the update.
We adjusted the code a bit. Please try it again.
add_action('wp_footer', 'ava_auto_resize'); function ava_auto_resize(){ ?> <script> (function($){ $(document).ready(function() { $('#top div .avia-gallery img').addClass('avia_start_animation'); var int = window.setInterval(function(){ $(window).trigger('resize'); $(window).trigger('av-content-el-height-changed'); }, 2000); $(window).load(function () { setTimeout(function() { clearInterval(int); }, 2000); }); }); })(jQuery); </script> <?php }Best regards,
IsmaelHi,
Thanks for the update.
We have added these css codes on the Quick CSS field.
.av-instagram-row:last-child .av-instagram-item { padding-bottom: 3px; } .av-instagram-item:last-child { padding-right: 3px; } .av-instagram-row:first-child .av-instagram-item { padding-top: 3px; } .av-instagram-item:first-child { padding-left: 3px; }Best regards,
IsmaelHi,
The login credentials are invalid. Please check it carefully. Have you tried selecting a larger thumbnail before inserting the image?
Best regards,
IsmaelHey Alexander,
Thank you for using Enfold.
Have you tried to re-add the widget? If it’s still not working after re-adding the widget, please delete the instagram widget, go to the wp-content > uploads directory and then delete the instagram folder there. Add this code in the functions.php file.
add_filter('avf_instagram_activate_cron', 'avf_instagram_disable_cron', 10); function avf_instagram_disable_cron() { return false; } add_action('wp_head', function() { delete_option('avia_instagram_widgets_cache'); });Refresh the page a few times right after adding the code then delete them. Add the instagram widget again afterwards. Make sure that you do these steps in order. Let us know if it helps.
Best regards,
IsmaelHi,
Thanks for the update.
Try to edit the framework > php > function-set-avia-frontend.php file, look for this code around line 620:
$metadata = $attributes['loop'] == 1 ? 'preload="metadata"' : 'preload="auto"';Replace it with:
$metadata = $attributes['loop'] == 1 ? '' : '';Best regards,
Ismael1 -
AuthorPosts
