Forum Replies Created
-
AuthorPosts
-
November 25, 2022 at 8:43 am in reply to: How to disable autoplay from a Color Section background video #1373830
Hey Michael,
Thank you for the inquiry.
This is possible but you have to edit themes\enfold\config-templatebuilder\avia-shortcodes\section\section.php file directly and adjust the video parameters in the following code around line 1575.
'attr' => array( 'id' => '', 'video' => $video , 'slide_type' => 'video', 'video_mute' => true, 'video_loop' => true, 'video_ratio' => $video_ratio, 'video_controls' => 'disabled', 'video_section_bg' => true, 'video_format' => '', 'video_mobile' => '', 'video_mobile_disabled' => $video_mobile_disabled ) );Set video_mute to true to disable autoplay, then enable the video_controls.
Best regards,
IsmaelNovember 25, 2022 at 8:08 am in reply to: Flaticon ServerIssues: Could not add the font because the server did not respond #1373829Hi,
Thank you for the update.
You may need to choose a different icon font set (make sure it is monocolored and simple) or just directly add the SVG icons using the Image element.
Best regards,
IsmaelHey Tobias,
Thank you for the inquiry.
Are you trying to open the tab section items using the image above the tab section? Adding this script in the functions.php file should help.
// custom script // scroll to active tab section function ava_custom_script_tab_section_scroll() { ?> <script type="text/javascript"> (function($) { function av_trigger_scroll_to_tab(s, e,) { $(s).on(e, function(event) { var load = e == 'load'; loc = load ? window.location.hash : $(this).attr('href'), hash = load ? loc : loc.substring(loc.indexOf('#')), tab = $('.av-section-tab-title[href='+ hash +']'), parent = tab.parents('.av-tab-section-outer-container'), pos = parent.offset(); tab.trigger('click'); if(hash) { setTimeout( function() { $(window).animate({scrollTop: pos.top - 100}); }, 300 ); } }); } $(document).ready(function() { var tabs = $('.av-tab-section-container'); if(tabs.length == 0) return; av_trigger_scroll_to_tab( 'area', 'click' ); av_trigger_scroll_to_tab( window, 'load' ); }); })(jQuery); </script> <?php } add_action( 'wp_footer', 'ava_custom_script_tab_section_scroll', 9999 );Best regards,
IsmaelHi,
Thank you for the info.
It seems to be an issue with the extension Jetpack for Woocommerce. Did you install the Jetpack extension for the shop plugin? Please try to disable it temporarily and check if the issue persists.
Best regards,
IsmaelHey davidhsieh,
Thank you for the inquiry.
This is a limitation of the sorting option. It can only filter or sort posts that actually exist in the current page, related items in the next or previous pages will not be included. Regarding the cut off issue, please edit the tab section element and set the Layout > Height > Content height to Auto adjust to content.
If the issue persists, please try this script in the functions.php file.
add_action('wp_footer', 'ava_auto_resize'); function ava_auto_resize(){ ?> <script> (function($){ var int = window.setInterval(function(){ $(window).trigger('resize'); }, 1500); $(window).on("load", function () { setTimeout(function() { clearInterval(int); }, 500); }); })(jQuery); </script> <?php }Best regards,
IsmaelHi,
Thank you for the clarification.
This is possible but you have to create posts with post format link. You can then add the link or URL as part of the post content. Or use portfolios instead, specify the custom link in the Overwrite Portfolio Link settings.
Best regards,
IsmaelHey Jon Dugdale,
Thank you for the inquiry.
The documentation section in the demo was created using the default posts, and bbPress is used for the forum. You can still install a KB plugin and integrate it in the demo if necessary.
Best regards,
IsmaelHi,
Thank you for the update.
You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css modification. Please make sure to purge the cache afterwards and hard refresh the page.
This is how the lightbox looks after applying the modification directly in the browser.
Screenshot: https://1drv.ms/u/s!AjjTfXSRbKTvzGPQmHQr8HnZ7kFs?e=MOhdPI
Best regards,
IsmaelHey fanlokbun,
Thank you for the inquiry.
Are you referring to the post navigation, the arrows on both sides of the post/product? Please note that the order of the products in the navigation is based on the date the products were created or published. The manual sorting in the catalogue page will not reflect in the post navigation.
Best regards,
IsmaelHi,
Thank you for the update.
Please note that only the color section’s locked options (ex. background color/image, minimum height etc) will be updated when you re-edit the CET element from the editor. The content inside the color section will have to be edited or updated separately. You can also create separate CETs for the content or elements inside the color section.
Best regards,
IsmaelHey Julie,
Thank you for trusting Enfold and for taking the time to write this wonderful message. Happy Thanksgiving to you and your family!
Best regards,
IsmaelHey Ryan,
Thank you for the inquiry.
Yes, there is an element called Tab Section in the Advance Layout Builder. You can check a demo of the element in the page below.
// https://kriesi.at/themes/enfold-2017/#bbpress-forums
Look for the “Deep integration for market-leading plugins.” section. Let us know if that is what you’re looking.
Best regards,
IsmaelHi,
Is hover color possible too?
Yes, that should be possible. Please add this css code just below the first one.
#menu-menuric li:hover a { color: orange; }Best regards,
IsmaelHey trevorwilson,
Thank you for using the theme.
You may need to adjust the size of the Large size thumbnail in the Settings > Media panel. Maximum width and height are set to 1030px by default. After the adjustment, please make sure to regenerate the thumbnails or upload the image again. You can use the plugin below to regenerate the thumbnails in bulk.
// https://wordpress.org/plugins/regenerate-thumbnails-advanced/
Best regards,
IsmaelNovember 24, 2022 at 8:18 am in reply to: New versions of Enfold not available on Theme Update via Enfold Dashboard #1373706Hi,
Thank you for the screenshots.
We may need to access the site in order to check the issue with the footer options. The options are still available on our installation. The issue is probably due to a custom modification or a third-party plugin. Did you add any modifications to the theme, or did you override any template files in the child theme?
Best regards,
IsmaelNovember 24, 2022 at 8:09 am in reply to: Load a default portfolio category — Doesn't seem to work in Firefox #1373705Hi,
Thank you for the update.
It seems to be working correctly on my end as well, using Firefox 107.0 (64-bit) on Windows 10. The sort item Investment Properties is automatically activated on page load. Please check the screenshot below.
Screenshot: https://1drv.ms/u/s!AjjTfXSRbKTvzGLBEjxjzdnVcDpg?e=EpggG6
Which version of the browser are using?
Best regards,
IsmaelHey Antonio,
Thank you for the question.
You can use this css code to adjust the size of the featured image and remove the border.
.news-thumb { padding: 0; height: 52px; width: 52px; border: 0; } .news-thumb img { width: 52px; height: 52px; }Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelHey sailentpooN,
Thank you for the inquiry.
By default, the first item in the breadcrumb should be the home page. Did you add any modifications to the theme? To unset the current first item in the breadcrumb on a single post, please try to add this code in the functions.php file.
function avia_adjust_breadcrumb($trail) { if( is_singular( 'post' ) ) { unset($trail[1]); } return $trail; } add_filter('avia_breadcrumbs_trail', 'avia_adjust_breadcrumb', 50, 1);Best regards,
IsmaelHey peterolle,
Thank you for the inquiry.
This kind of animation or scroll effect is not available in the theme by default, but you might be able to replicate it using the layer slider’s play-by-scroll feature. However, please note that this feature is only available on the premium version of the plugin. Check the link below for more info.
// https://layerslider.com/sliders/play-by-scroll/
Best regards,
IsmaelHey gabrimore98,
Thank you for the inquiry.
Did you apply the anchors or id attribute to the color sections? The theme should automatically apply an active state to the active menu item linking to an anchor. You can find this behavior in the following demo.
// https://kriesi.at/themes/enfold-parallax/#portfolio
The link above is a page preview which we don’t have access to. We need to log in to the site first.
Best regards,
IsmaelHi,
Thank you for the inquiry.
We modified the css code a bit to make the input field accessible again and adjust the position of the checkboxes. You can find the code in the Quick CSS field.
#commentform .comment-form-author, #commentform .comment-form-email { float: left; margin-right: 2%; width: calc(47%); z-index: 3; } #commentform .comment-form-author input, #commentform .comment-form-email input { width: 100% !important; } #commentform .comment-form-cookies-consent { z-index: 0; } #commentform input[type='checkbox'] + label { left: 2.5em; display: inline-block; } #commentform input + label[for="comment-form-av-privatepolicy"] { left: 0; }Best regards,
IsmaelHey Createve_Solutions,
Thank you for the inquiry.
There seems to be an issue with the site’s SSL certificate. Please ask your hosting provider to correct the certificate or SSL issue so that we can access the site properly. Did you do the following modification?
// https://kriesi.at/documentation/enfold/menu/#logo-centered-split-menu
Best regards,
IsmaelNovember 23, 2022 at 8:16 am in reply to: Shop category thumbnail images are suddenly the wrong size #1373610Hi,
The product images in the shop catalogue and related products section seem to be displaying in their original aspect ratio now. Did you figure out the issue? (see private field)
Best regards,
IsmaelNovember 23, 2022 at 8:09 am in reply to: Gallery on Blog Posts just working fine, when logged in #1373609Hi,
Thank you for the inquiry.
Where can we check the gallery issue? Please provide the link in the private field. Have you tried to temporarily disable the Enfold > Performance > File Compression settings? Please make sure to remove the cache after disabling the compression.
Best regards,
IsmaelHi,
Thank you for the confirmation.
We may need to access the site in order to test the script further. Please provide the login details in the private field.
To disable the custom quantity buttons, please edit the enfold\config-woocommerce\woocommerce-mod.js file and remove this code around line 94.
avia_apply_quant_btn();Make sure that file compression is disabled or toggled. You can then adjust the style of the input field using this css code.
#top div .quantity input.qty { height: 43px; width: 103px; display: inline; padding: 0px 5px 0px; line-height: 41px; vertical-align: middle; margin: 0; text-align: center; }Best regards,
IsmaelHey Chris,
Thank you for the inquiry.
The contact form is not working correctly because the checkbox for the “By clicking Send you agree to our Terms of Use and Privacy Policy. *” is missing or invisible. The checkbox has to be checked in order to send the form properly. We tried editing its style to make it visible, but the checkbox is still not accessible. Did you modify the checkbox?
Best regards,
IsmaelHey navindesigns!
Thank you for the inquiry.
You can create a CET version of the color section. Make sure to lock all options that has to be updated globally. Please check the documentation below for more info.
// https://kriesi.at/documentation/enfold/custom-element-templates/
Best regards,
IsmaelHi,
Thank you for the update.
The modification above works correctly when we applied it directly in the browser. Do you remove the cache or hard refresh the page before checking it? We may need to access the site in order to test modification further. Please provide the login details in the private field.
Best regards,
IsmaelHi,
Mike might have used the Advanced > Screen Option > Element Visibility options of the elements to toggle their display on different screens.
Best regards,
IsmaelNovember 23, 2022 at 7:03 am in reply to: Enfold Versie: 4.8.3 Woocommerce product images problem #1373603Hey L.D. Witte,
Thank you for the inquiry.
You have to download the latest version (5.2.1) of the theme and update your installation to fix the issues with the product thumbnails. After the update, add this code in the functions.php file to adjust the size of the images in the shop catalogue.
add_filter( 'avf_wc_before_shop_loop_item_title_img_size', 'avf_wc_before_shop_loop_item_title_img_size_mod', 10, 1 ); function avf_wc_before_shop_loop_item_title_img_size_mod( $thumbnail_size ) { return 'woocommerce_thumbnail'; }Best regards,
Ismael -
AuthorPosts
