Forum Replies Created

Viewing 30 posts - 9,361 through 9,390 (of 67,443 total)
  • Author
    Posts
  • 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,
    Ismael

    Hi,

    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,
    Ismael

    in reply to: Clickable Tab Section #1373828

    Hey 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,
    Ismael

    in reply to: Woocommerce problem #1373827

    Hi,

    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,
    Ismael

    in reply to: Portfolio sorting does not show item from page 2 #1373826

    Hey 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,
    Ismael

    in reply to: Link masonry image to specific URL #1373825

    Hi,

    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,
    Ismael

    in reply to: Knowledge Base #1373714

    Hey 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,
    Ismael

    in reply to: Possible to make lightbox dimensions larger? #1373713

    Hi,

    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,
    Ismael

    in reply to: Product sort order in next previous #1373712

    Hey 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,
    Ismael

    in reply to: Repeat color section on multiple pages #1373711

    Hi,

    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,
    Ismael

    in reply to: Just saying… #1373710

    Hey 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,
    Ismael

    in reply to: do you have a tabbed content element like this? #1373709

    Hey 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,
    Ismael

    in reply to: font size navi widget #1373708

    Hi,

    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,
    Ismael

    in reply to: Image Quality in Gallery #1373707

    Hey 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,
    Ismael

    Hi,

    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,
    Ismael

    Hi,

    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,
    Ismael

    in reply to: Make the thumb recent post bigger #1373704

    Hey 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,
    Ismael

    in reply to: avia-breadcrumb issue in Enfold #1373703

    Hey 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,
    Ismael

    in reply to: Scroll in place #1373702

    Hey 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,
    Ismael

    in reply to: Highlight active navigation menu item #1373701

    Hey 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,
    Ismael

    in reply to: customize comment form #1373700

    Hi,

    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,
    Ismael

    in reply to: Splitted Menu and Logo centered #1373699

    Hey 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,
    Ismael

    in reply to: Shop category thumbnail images are suddenly the wrong size #1373610

    Hi,

    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,
    Ismael

    in reply to: Gallery on Blog Posts just working fine, when logged in #1373609

    Hi,

    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,
    Ismael

    in reply to: WooCommerce Quantity Pickers Glitch #1373608

    Hi,

    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,
    Ismael

    in reply to: Contact form not working after update #1373607

    Hey 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,
    Ismael

    in reply to: Repeat color section on multiple pages #1373606

    Hey 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,
    Ismael

    in reply to: customize comment form #1373605

    Hi,

    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,
    Ismael

    in reply to: product slider formatting on mobile #1373604

    Hi,

    Mike might have used the Advanced > Screen Option > Element Visibility options of the elements to toggle their display on different screens.

    Best regards,
    Ismael

    in reply to: Enfold Versie: 4.8.3 Woocommerce product images problem #1373603

    Hey 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

Viewing 30 posts - 9,361 through 9,390 (of 67,443 total)