Forum Replies Created
-
AuthorPosts
-
July 3, 2018 at 4:25 am in reply to: Full Layer slider not working since the last update of enfold #980372
Hi,
Thanks for the update. I’m still not sure what causes the issue though. I do see this error in the console.
(index):310 Uncaught TypeError: $ is not a function
at HTMLDivElement.((index):310)
at HTMLDivElement.dispatch (jquery.js?ver=1.12.4:3)
at HTMLDivElement.r.handle (jquery.js?ver=1.12.4:3)
at Object.trigger (jquery.js?ver=1.12.4:3)
at Object.a.event.trigger (jquery-migrate.min.js?ver=1.4.1:2)
at a.fn.init.triggerHandler (jquery.js?ver=1.12.4:3)
at Object.load (eval at(layerslider.kreaturamedia.jquery.js?ver=6.7.1:13), :1:165377)
at new t (eval at(layerslider.kreaturamedia.jquery.js?ver=6.7.1:13), :1:193805)
at HTMLDivElement.eval (eval at(layerslider.kreaturamedia.jquery.js?ver=6.7.1:13), :1:2060)
at Function.each (jquery.js?ver=1.12.4:2)Did you modify any of theme files? I would like to check the child theme folder but the Appearance > Editor panel is not accessible. Please enable it.
Best regards,
IsmaelHi,
It used to work fine with the advanced builder, we didn’t change anything to the theme.
I’m not sure how you managed to make it work before but I think the posts were built with the default editor. You can’t display the content of the advance layout builder by default and it’s been that way ever since the theme was created. This is one of the limitations of creating a post using the advance layout builder.
Best regards,
IsmaelHey!
Thanks for the info. I think I found a possible solution. You can use this filter to disable the cronjob from restarting.
add_filter('avf_instagram_activate_cron', 'avf_instagram_disable_cron', 10); function avf_instagram_disable_cron() { return false; }The “activate_cron” property is set to true by default or when the WP_CRON is not disabled.
Regards,
IsmaelHi,
I’m sorry for the late response. We’ve added these css codes on the Quick CSS field to align the opt-in to the left of the header meta container.
@media only screen and (min-width: 768px) { #header_meta h6 a, #header_meta h6 { margin: 0 !important; font-family: 'Open Sans'; } #header #formHTML { position: absolute; left: 200px; top: -13px; } .awbr-grid .awbr-row { margin-left: 0; } }It covers the social media icons when center aligned.
Best regards,
IsmaelJuly 2, 2018 at 9:48 am in reply to: Optimization: how to defer parsing of Javascript and turn off layerslider? #980026Hey Michael,
Thank you for using Enfold.
The remaining scripts (mediaelements, front.js) are generated by third party plugins (WP-EVS, Guild Member Endorsements). The theme can only merge its own scripts and stylesheets by default. Use this filter in the functions.php file if you want to include every enqueued files in the compression.
add_filter('avf_merge_assets', function() { return array('css' => 'all', 'js' => 'all'); });You can find the theme’s merged script here. ( see private field )
Best regards,
IsmaelHey kwanumzen,
Thank you for using Enfold.
I can’t edit the portfolio item (Getting to know zen) and check its content. Please set the user to administrator.
Best regards,
IsmaelHey Eric!
Thanks for the update.
This thread should help.
// https://kriesi.at/support/topic/masonry-element-flickering-on-load-more/#post-969885
The loading icon causes a scrollbar to display intermittently on item load so hiding it should fix the issue.
Best regards,
IsmaelJuly 2, 2018 at 9:14 am in reply to: Reduce number of pictures for Instagram Widget and Mobile Devices #980013Hey Mosaik-Gin,
Thank you for using Enfold.
Where did you add the instagram widget? I can’t find it in the footer section or anywhere in the site. Please provide the actual url of the page containing the widget.
Best regards,
IsmaelHey gooflo,
Thank you for using Enfold.
You can use the “comment_form_default_fields’ to add more fields to the comment form. Default fields are author, email, url and cookies.
// https://developer.wordpress.org/reference/hooks/comment_form_default_fields/
Best regards,
IsmaelJuly 2, 2018 at 9:04 am in reply to: no scale of images – regenerate thumbnails says – file is not a picture #980009Hey xxtita,
Thank you for using Enfold.
Is it working properly when you disable the plugins? I noticed that the EWWW Image Optimizer and Image Cleanup plugins are enabled so they might be causing the issue.
Best regards,
IsmaelHey torahulparashar,
Thank you for using Enfold.
You should adjust the separator value.
$separator = ', ';Add comma instead of space. Or replace the whole filter with this one.
add_filter( 'avf_masonry_loop_prepare', 'avf_masonry_loop_prepare_mod_cat', 10, 2 ); function avf_masonry_loop_prepare_mod_cat( $key, $entries ) { $categories = get_the_category($key['ID']); $separator = ', '; $output = ''; $items = count($categories); $i = 0; if ( ! empty( $categories ) ) { foreach( $categories as $category ) { if($i++ === $items) { $separator = ''; } $output .= '<span alt="' . esc_attr( sprintf( __( 'View all posts in %s', 'textdomain' ), $category->name ) ) . '">' . esc_html( $category->name ) . '</span>' . $separator; } } $key['text_before'] .= trim( $output, $separator ); return $key; }Best regards,
IsmaelJuly 2, 2018 at 8:49 am in reply to: Smooth Scrolling doesn't work in mobile and problem with the color #980002Hey adrianrem89,
Thank you for using Enfold.
Do you want the header to stick on mobile view? This is possible but not recommended because it creates more issues further along which is why it is disabled on mobile view by default. Why do you need the header to stick?
Did you enable the css/js compression in the Enfold > Performance panel? Please disable it temporarily while you work on the site.
Best regards,
IsmaelHey Moses,
Thank you for considering Enfold.
A tech blog should be possible with the Enfold theme. The theme contains a few posts elements such as the magazine and post slider so you can use those to display different variations of posts or articles. Unfortunately, we can’t help you with the purchase. You should contact Themeforest about that.
This is a tech blog created with the theme. https://datenschmutz.net/
Best regards,
IsmaelJuly 2, 2018 at 8:36 am in reply to: 4.4.1 apparently changed content in my posts and totally screwed up my mathjax #979995Hi,
Thank you for using Enfold.
Do you have a dev or a staging site? We need to inspect the issue first. Do note that we don’t provide support for third party plugin as stated on our support policy. Please keep in touch with the plugin author.
Best regards,
IsmaelHey DianaLoola73,
Thank you for using Enfold.
how big I have to create the background image,
Use the size that will work for the standard screen resolutions.
// https://www.w3schools.com/browsers/browsers_display.asp
Unfortunately, fixed backgrounds don’t work properly on phones and tablets specially on iOS.
// https://caniuse.com/#feat=background-attachment
- iOS has an issue preventing background-attachment: fixed from being used with background-size: cover. - Chrome has an issue that occurs when using the will-change property on a selector which also has background-attachment: fixed defined. It causes the image to get cut off and gain whitespace around it. - Firefox does not appear to support the local value when applied on a textarea element.Best regards,
IsmaelHey ImagenGT,
Thank you for using Enfold.
You can only upload google fonts on the custom font manager. If you have a non-google custom font, use the font-face rule.
// https://www.w3schools.com/cssref/css3_pr_font-face_rule.asp
Best regards,
IsmaelHey ballindigital,
Thank you for using Enfold.
Displaying the navigation on load should help instead of on hover. For mobile, try this css code to adjust the column width.
@media only screen and (max-width: 767px) { .responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin { margin: 0; margin-bottom: 20px; width: 49%; margin-right: 1%; } }You may need to apply custom css class attributes to those columns.
Best regards,
IsmaelHi,
Thank you for using Enfold.
We disabled the css/js compression in the Enfold > Performance panel temporarily. Please try to change the settings again.
Best regards,
IsmaelHi,
Thanks for the update.
Did you remove the svg images? I can’t find them in the page.
Best regards,
IsmaelHi,
Remove the #top.home selector if you want it to be applied to the rest of the page.
.html_header_top.html_header_sticky #top #wrap_all #main { padding-top: 55px!important; }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,
IsmaelJuly 2, 2018 at 7:28 am in reply to: Problems with Google Maps: "Google Maps API warning: RetiredVersion" #979959Hi,
Thanks for the update.
I’m trying to debug the issue but I lost the API key when I refreshed the page. Sorry about that. Please add the API key again in the google services field. It seems like the theme’s av_maps_js_api_check ajax function returns 0 as the $valid_key value even if the map API check is successful causing the error response text to display instead of storing the map key. I’m not really sure yet so we need to inspect the issue further. We’ll check it again once you’ve added the API key again.
You can actually store the map api key manually in the database as a temporary workaround.
add_action('init', function { update_option( 'av_gmaps_api_key', 'ADD KEY HERE' ); });Adjust the API key then refresh the page once or twice and then delete the function.
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,
I got a forbidden error when I visited that site. Have you tried to configure the theme options and the advanced styling? All the needed styling adjustments should be available there.
Best regards,
IsmaelHi,
We can’t recommend the same script before because of DSGVO or GDPR. Please try Sucuri or Wordfence to protect your site from third party scripts or spams.
Best regards,
IsmaelJuly 2, 2018 at 6:36 am in reply to: How to set the social icons of the header to another page #979942Hi,
Thanks for the update.
I still get the same error when I modify the file in the Appearance > Editor panel.
Algo fue mal. Tu cambio no se ha podido guardar. Por favor, inténtalo de nuevo. También es posible que tengas que arreglarlo manualmente y subir el archivo por FTP.
Please provide the FTP details in the private field.
Best regards,
IsmaelHi,
However I stumbled upon this other thread. It looks like it’s a cron job causing the error.
Yes, it is the cronjob that’s causing the issue as was mentioned earlier. That cronjob will only be initiated when you add an instagram widget. You can disable cronjob completely by adding this code in the wp-config.php file..
define('DISABLE_WP_CRON', true);Or use this hook in the functions.php file to disable a specific cronjob.
add_action('init', function() { wp_clear_scheduled_hook( 'av_instagram_scheduled_filecheck' ); });Best regards,
IsmaelJuly 2, 2018 at 6:08 am in reply to: Center two icons next to each other doesn't work with WooCommerce #979940Hi,
Thanks for the update.
I can’t see the issue on the shop page. Is this fixed? Please try to wrap the footer page content inside a color section.
Best regards,
IsmaelHi,
The sub menu color is being set to “#bbbbbb” when hovered so that css code is not being applied.
#top #wrap_all .av-main-nav ul > li:hover > a, #top #wrap_all .avia_mega_div, #top #wrap_all .avia_mega_div ul, #top #wrap_all .av-main-nav ul ul { color: #bbbbbb; background-color: #ffffff; }Did you toggle the css/js compression in the Enfold > Performance panel? Please provide the login detains in the private field.
Best regards,
IsmaelJuly 2, 2018 at 5:49 am in reply to: Search Result Page | System page + Search Field in Menu #979937Hi,
I can’t give you the IP address but you can find our locations in the following link.
Or just disable the security plugin temporarily.
Best regards,
Ismael -
AuthorPosts
