Forum Replies Created
-
AuthorPosts
-
Hey markacramer,
Thank you for using Enfold.
You can only configure the theme options of the default language when Polylang is activated. This is why we recommend W P M L instead of this plugin. In W P M L, every language has its own separate theme options.
Best regards,
IsmaelJune 7, 2018 at 11:54 pm in reply to: I need child's style.css file set to overrule generated \uploads\*.css output… #969860Hi,
Thanks for the updates. You should disable the cache/minify plugins or settings while you’re doing some style edits. Enable these options once you’re completely done with the site.
@cmsweb-online: Yes, you can turn on the option when you’re done. The modifications on the style.css file should be safe when updating.
Best regards,
IsmaelHi,
This is the script error in the console which is coming from the “wp-songbook” plugin.
filescript.js?ver=4.9.6:29 Uncaught TypeError: jQuery(...).sortable is not a function at HTMLDocument.<anonymous> (filescript.js?ver=4.9.6:29) at i (load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,utils,moxiejs,plupload&ver=4.9.6:2) at Object.fireWith [as resolveWith] (load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,utils,moxiejs,plupload&ver=4.9.6:2) at Function.ready (load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,utils,moxiejs,plupload&ver=4.9.6:2) at HTMLDocument.K (load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,utils,moxiejs,plupload&ver=4.9.6:2)Please deactivate the plugin via FTP. Rename the plugin folder inside the wp-content > plugins directory.
Best regards,
IsmaelHi,
Thanks for the update. Where can we see this issue? Please create a test page. Make sure that the site is running on the latest version of the theme, 4.4.1.
Best regards,
IsmaelHi,
Thanks for the update. This script might help with the mobile menu issue.
add_action('wp_footer', 'ava_custom_script_mobile_scroll'); function ava_custom_script_mobile_scroll(){ ?> <script type="text/javascript"> (function($) { var lastY; $('body').on( 'mousewheel DOMMouseScroll touchmove', '.av-burger-overlay-scroll', function (e) { var scroll = $(this).scrollTop(); var delta = e.originalEvent.deltaY; var currentY = e.type != 'touchmove' ? 0 : e.originalEvent.touches[0].clientY; if(e.type != 'touchmove') { lastY = 0; } if(delta < 0 || currentY > lastY) { $('.responsive #top .av-main-nav .menu-item-avia-special').css('opacity', 1); } if(delta > 0 || currentY < lastY) { $('.responsive #top .av-main-nav .menu-item-avia-special').css('opacity', 0); } lastY = currentY; }); })(jQuery); </script> <?php }Best regards,
IsmaelHi,
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,
IsmaelJune 7, 2018 at 11:04 pm in reply to: Woocommerce product slider and product grid adding classes to the wrong items #969827Hi,
The latest version of the theme is 4.4.1. You’re probably referring to the WordPress version. Please download the latest version of the theme from your themeforest account and 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,
IsmaelHi,
Thanks for the update. It’s an issue with one of the theme’s performance settings. We set the “Disable Template Builder Elements” settings to the first option temporarily. Please upgrade to version 4.4.1.
Best regards,
IsmaelHi,
We are not really sure why they’re getting the past the contact form. Have you tried using Sucuri?
Best regards,
IsmaelHi,
Have you tried using the “Product List” element? The layout is quite similar to the one you like. It may require a few adjustments.
Best regards,
IsmaelHi,
Thanks for the update.
The checkbox is not included in the single product review template by default. Please try this filter in the functions.php file.
add_filter('woocommerce_product_review_comment_form_args', 'woocommerce_product_review_comment_form_args_mod', 10, 1); function woocommerce_product_review_comment_form_args_mod($form) { $form['comment_field'] .='<p class="comment-form-cookies-consent"><input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes"' . $consent . ' />' . '<label for="wp-comment-cookies-consent">' . __( 'Save my name, email, and website in this browser for the next time I comment.' ) . '</label></p>'; return $form; }Best regards,
IsmaelHey CDuyvis,
Thank you for using Enfold.
1.) There are a few script errors in the console. One of those errors is related to “scribd”. Please try to deactivate the plugins temporarily.
2.) What specific changes are you trying to make?
3.) That option is not the same as the one on the tab element. If it is set to 0, the initial value defaults to 1.
4.) Have you tried setting the “Content height” to the second option? It will auto adjust based on the content.
5.) What is the script that you’re currently using to fix this?
6.) I’m not sure if we can do something about this aside from hiding the element on mobile view. You can still add another kind of element to replace it.
7.) That is possible but I’m not sure if it makes sense to create an element and have it not display on every devices. If you want to hide it temporarily, just save the element as a template and then remove it from the page.
Please note that we don’t entertain multiple questions on a single thread. If possible, please create a single entry for each inquiries.
Best regards,
IsmaelHi,
My bad. There was another issue with the maintenance mode option and Yoast. The fix that is provided here is almost the same as that one so I thought I already reported this issue. Please keep the modifications for now. We’ll forward this again to the development team.
Best regards,
IsmaelHey eKMUch,
Thank you for using Enfold.
Did you translate the portfolio categories or taxonomy? This documentation might help.
// https://wpml.org/documentation/beginners-guide-to-site-translation/translating-taxonomy/
// https://wpml.org/documentation/getting-started-guide/translating-post-categories-and-custom-taxonomies/Best regards,
IsmaelHi,
Thank you for using Enfold.
The default “Raleway” font that is registered in the theme doesn’t have font weight variations. Please upload your own customized “Raleway” font in the Enfold > Import/Export panel. Look for the “Custom Font Manager” button.
Best regards,
IsmaelHi,
Look for this code around line 754:
$html .= "<li {$slide_data} class='slide-{$counter} {$slide_class} slide-id-".$slide->ID."'>"; $html .= $caption; $html .= "</li>";You need to wrap the list inside a link as previously suggested.
$html .= "<a href=".$link."><li {$slide_data} class='slide-{$counter} {$slide_class} slide-id-".$slide->ID."'>"; $html .= $caption; $html .= "</a></li>";Best regards,
IsmaelHey wpler,
Thank you using Enfold.
Have you tried using the icon list element? Instead of creating a new element, use the existing icon list then remove the icon manually with css.
You may need to enable the custom css class field to distinguish a specific icon element.
Best regards,
IsmaelHi,
The code from the first thread removes a few of the layer slider functions. I’m not really sure how they’re affecting the Gravity plugin though. Did you purge the cache after adding the code? Have you tried moving the location of the GF scripts?
add_filter("gform_init_scripts_footer", "init_scripts"); function init_scripts() { return true; }Best regards,
IsmaelHi,
The latest version of the file can be downloaded from your themeforest account. You have to upload it manually via FTP.
// https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/
// https://kriesi.at/archives/the-complete-guide-to-updating-enfoldBest regards,
IsmaelHey bimsenfold,
Thank you for using Enfold.
Yes, the magazine defaults to the thumbnail size which is 80x80px. The current container size is 160x160px as specified in your own css modifications. You can adjust the thumbnail size in the Settings > Media library panel. Or install the plugin.
// https://wordpress.org/plugins/simple-image-sizes/
Adjust the thumbnail size, update, save then regenerate the thumbnails.
Best regards,
IsmaelJune 6, 2018 at 6:55 am in reply to: How to give each category name in minor meta its own color? #967665Hi,
Edit this code.
$cats .= sprintf( '<a href="%s" style="color: %s">%s</a>', get_term_link($term), get_field('color', $term), $term->name );Include the prefix.
<a href="%s" style="color: %s">Prefix here: %s</a>Best regards,
IsmaelHi,
Thanks for the update.
The conditional logic of the av_error404 function has been changed on the latest version of the theme. Please make sure that the site is running on version 4.4.1.
Best regards,
IsmaelHey Gitte,
Thank you for using Enfold.
Look for the get_the_term_list function within that same file. Adjust the “$before” parameter. More info about that function can be found here.
// https://codex.wordpress.org/Function_Reference/get_the_term_list
Best regards,
IsmaelHi,
Thanks for the update. I missed that. My bad. Something odd is happening. The page redirects to google whenever I try to enter the password.
Best regards,
IsmaelHi,
Thanks for the update. Each image should have its own slide. We created an example. (see private field)
Best regards,
IsmaelHi,
Thanks for the update. We had to modify the footer.php file to make the footer option compatible with polylang. We added this code around line 55.
if(function_exists('pll_current_language')) { $slug = pll_current_language('slug'); $post = get_post( pll_get_post($post->ID, $slug) ); }You can now set the custom footer page in your default language. The code above will take care of the rest.
Best regards,
IsmaelHi,
Thanks for the update. We had to modify the footer.php file to make the footer option compatible with polylang. We added this code around line 55.
if(function_exists('pll_current_language')) { $slug = pll_current_language('slug'); $post = get_post( pll_get_post($post->ID, $slug) ); }You can now set the custom footer page in your default language. The code above will take care of the rest.
Best regards,
IsmaelJune 6, 2018 at 5:29 am in reply to: Hi , Sorry I have a problem with the last updated Enfold 4.4 #967630Hi,
Thanks for the update.
Is the new article displaying when a default theme (20seventeen, 20sixteen etc) is activated?
Best regards,
IsmaelHi,
Did you change the blog style? We adjusted the code a bit. Please try it again.
Best regards,
IsmaelJune 6, 2018 at 5:25 am in reply to: Google Analytics – DSGVO Implementation – Tracking Code-Field #967627 -
AuthorPosts
