Forum Replies Created
-
AuthorPosts
-
Hi,
Add this filter in the functions.php file to disable the widget’s cronjob.
add_filter('avf_instagram_activate_cron', 'avf_instagram_disable_cron', 10); function avf_instagram_disable_cron() { return false; }Best regards,
IsmaelHi,
Thanks for the update.
This was an issue with the German translation. It’s been fixed on version 4.4.1. Please download the latest version from your Themeforest account and then update your installation via FTP.
// https://kriesi.at/archives/the-complete-guide-to-updating-enfold
// https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#update-via-ftpBest regards,
IsmaelJuly 4, 2018 at 2:15 am in reply to: Search Result Page | System page + Search Field in Menu #980837Hi,
I get the same error. Please contact your hosting provider.
Best regards,
IsmaelHi,
Awesome! 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,
Thanks for the update. I still get the error though. Please ask your hosting provider to configure the security options.
Best regards,
IsmaelHi,
This css code should reveal the background image on mobile view.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .header_color .header_bg { background: transparent url(//www.new.barrelracingtips.com/wp-content/uploads/2018/06/experiment.png) bottom center no-repeat scroll; } .header_color .header_bg { background-size: cover; } .html_header_top.html_header_sticky #top #wrap_all #main { margin-top: -50px; } }Best regards,
IsmaelHi,
Thanks for the update.
The media files can’t be imported properly so I had to upload them manually. I also did a database search and replace to adjust the image url. The images displayed properly after this but they’re still not accessible in the Media panel. Are you going to replace the images with your own?
Please remove the browser cache prior to checking the site.
Best regards,
IsmaelHi,
Thanks for the update.
The theme is now update to date but the theme options is still not displaying properly so I had to deactivate some of the plugins temporarily. Please activate them one at a time to find the cause of the issue.
Best regards,
IsmaelHey NBSGMBH,
Thank you for using Enfold.
Did you update the theme to version 4.4.1? Please provide a link to the site so that we can inspect it.
Best regards,
IsmaelHey aintzerga,
Thank you for using Enfold.
The maximum size of the masonry thumbnail is set to 705x705px so you have to increase it. Use the following plugin then go the Settings > Media panel. Adjust the size of the masonry thumbnail, update, save and then regenerate the thumbnails.
// https://wordpress.org/plugins/simple-image-sizes/
Best regards,
IsmaelHi,
Thank you for using Enfold.
Adjust the default caption margin to create more space for the button. You can also decrease the size of the button on mobile view. Try this css code.
@media only screen and (max-width: 767px) { .avia-caption-content p { margin: 5px 0; } #top .avia-slideshow-button { margin-top: 5px; } }Don’t forge to purge the cache prior to checking the page.
Best regards,
IsmaelJuly 3, 2018 at 7:15 am in reply to: How can I disable masonary gallery animation but allow column animation #980417Hey realisedesign,
Thank you for using Enfold.
You can define your own transition or effect. This is the default animation.
/*pop up animation*/ @-webkit-keyframes avia_msonry_show { 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 { 0% { transform:translateZ(300px) translateY(200px) rotateX(-70deg); opacity: 0.1; } 100% { transform:translateZ(0px) translateY(0px) rotateX(0deg); opacity: 1; } } /*animated arrow animattion*/ @-webkit-keyframes avia_fade_move_down { 0% { -webkit-transform:translate(0,-20px); opacity: 0; } 50% { opacity: 1; } 100% { -webkit-transform:translate(0,20px); opacity: 0; } } @keyframes avia_fade_move_down { 0% { transform:translate(0,-20px); opacity: 0; } 50% { opacity: 1; } 100% { transform:translate(0,20px); opacity: 0; } }More info about css keyframes: https://www.w3schools.com/CSSref/css3_pr_animation-keyframes.asp
Best regards,
IsmaelHey DUALWERK,
Thank you for using Enfold.
We received a few inquiries about this and it seems like setting the “will-change” property to “transform” fixes the issue. Please use this css code.
.avia-chrome .avia-bg-style-fixed { will-change: transform; }Related thread: https://kriesi.at/support/topic/chrome-67-broke-backgroundfixed/
Best regards,
IsmaelHi,
That’s odd. Please try to decrease the default image quality. The theme sets it to 100 instead of the WP default value of 80.
function av_return_100(){ return 80; } add_filter('jpeg_quality', 'av_return_100'); add_filter('wp_editor_set_quality', 'av_return_100');You have to regenerate or upload the images again.
// https://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
IsmaelHi,
You can use the advance layout builder for the posts but you can’t display its content in the blog or the blog overview page because it will render the shortcodes instead of the actual content. Do note that the content will display in the single post page. If you want to display something in the blog overview page or the category pages, set the Excerpt manually. You have to enable the Excerpt box from the post editor’s Screen Options.
Best regards,
IsmaelHi,
Thanks for the update.
Remove the “avia_post_nav_settings” and then set the parameters directly on the entries filter.
add_filter( 'avia_post_nav_entries', 'avia_post_nav_entries_mod', 10, 2); function avia_post_nav_entries_mod($entries, $settings) { if(is_singular('portfolio'))) { $entries['prev'] = get_next_post(true, '', 'portfolio_entries'); $entries['next'] = get_previous_post(true, '', 'portfolio_entries'); } return $entries; }Best regards,
IsmaelJuly 3, 2018 at 6:38 am in reply to: 4.4.1 apparently changed content in my posts and totally screwed up my mathjax #980400Hi,
Thanks for the update. Please let us know once the dev site is accessible. And point us to the script so that we can check it.
Best regards,
IsmaelHi,
No worries. Please feel free to open a new thread if you need anything else. :)
Best regards,
IsmaelJuly 3, 2018 at 6:33 am in reply to: Problems with Google Maps: "Google Maps API warning: RetiredVersion" #980397Hi,
I modified the framework > php > class-gmaps.php file so the api check gets through regardless of the geocoding result. I had to do this because the geocoding service is asking for another authentication.
Geocoding Service: This API project is not authorized to use this API. For more information on authentication and Google Maps Javascript API services please see: https://developers.google.com/maps/documentation/javascript/get-api-key js?v=3.32&callback=av_backend_maps_loaded&key=AIzaSyAmYRbX9tTqk3Cg0Qi3PSJqzUHQvudRv2M:42I pushed the issue to the team. Please try to create another key for the Geocoding Service API so that we can test it further.
Best regards,
IsmaelJuly 3, 2018 at 5:32 am in reply to: Search Result Page | System page + Search Field in Menu #980386Hi,
I see. Would you mind creating a test page so that we can inspect the issue?
Best regards,
IsmaelHi,
Thanks for the update. I adjusted the filter a bit. Please use this one instead.
add_filter('shortcode_atts_av_google_map', 'avf_shortcode_atts_av_google_map', 10, 4); function avf_shortcode_atts_av_google_map($out, $pairs, $atts, $shortcode) { $out['saturation'] = '-50'; return $out; }Best regards,
IsmaelHi,
Yes, it’s possible. Use this filter in the functions.php file.
add_filter( 'comment_form_fields', 'avf_privacy_comment_text', 10, 1); function avf_privacy_comment_text($fields) { $output = '<p class="comment-form-avf-privatepolicy">Hinweise zur Verarbeitung Deiner Angaben und Widerspruchsrechte: <a target="_blank" href="#">Datenschutzerklärung</a>.</p>'; $fields['comment-form-avf-privatepolicy'] = $output; return $fields; }Adjust the href attribute of the link tag.
Best regards,
IsmaelJuly 3, 2018 at 4:35 am in reply to: Center two icons next to each other doesn't work with WooCommerce #980378Hi,
Awesome! Glad it is fixed! :)
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,
IsmaelJuly 3, 2018 at 4:34 am in reply to: Reduce number of pictures for Instagram Widget and Mobile Devices #980377Hi,
Thanks for the update.
Add this css code inside that css media query. You may need to adjust the max-width value to 768px.
div .av-instagram-row:nth-child(2) { display: none !important; }Best regards,
IsmaelHi,
Thanks for the update.
1.) Use the theme’s Custom Font Manager in the Enfold > Import/Export panel. You’ll be able to upload google fonts locally instead of fetching them from Google itself.
2.) Yes, it’s possible. Go to the Enfold > Main Menu panel and then set the “Menu Items for Desktop” to “Display as icon”. Configure the Burger/Mobile Menu style afterwards.
Best regards,
Ismael -
AuthorPosts
