Forum Replies Created

Viewing 30 posts - 15,541 through 15,570 (of 66,839 total)
  • Author
    Posts
  • in reply to: Fullwidth Easy Slider Video Issue #1271773

    Hey A,

    Thank you for the inquiry.

    We found the videos in the first and third slide and both of them are playing automatically. Did you replace the second video with a locally hosted video instead of using vimeo?

    Best regards,
    Ismael

    in reply to: Product Widget not working #1271772

    Hey ancrerouge,

    Thank you for the inquiry.

    What is the actual name of the widget in your language? And where did you add it? Please post the actual name of the widget and provide a link to the page where the widget is supposed to display.

    Best regards,
    Ismael

    in reply to: Navigation flackert beim Laden der Seite #1271771

    Hey akodo,

    Thank you for the inquiry.

    Could you provide a screenshot of the navigation issue? We could not reproduce it on our end and this is what we see on initial load.

    Screenshot: https://imgur.com/Fb4Kbsb

    Best regards,
    Ismael

    in reply to: place order woocommerce button translate #1271769

    Hey dadisk8,

    Thank you for the inquiry.

    You could use the following plugin to provide translations for texts or strings that are not yet translated.

    // https://wordpress.org/plugins/loco-translate/

    Another solution is to use the following plugin to replace the default text with another.

    // https://wordpress.org/plugins/say-what/

    Best regards,
    Ismael

    Hey rescott72,

    Thank you for the inquiry.

    You may need to set the position property of the text or code block element containing the images to absolute instead of fixed so that they are positioned relative to the parent container, and so that they do not scroll along with the document. Have you tried that?

    Best regards,
    Ismael

    in reply to: Delete Lightbox Image description in Gallery Element #1271765

    Hey RosannaK,

    Thank you for the inquiry.

    The lightbox by default uses the title of the image or the value of the title attribute as the image description. To hide it, we could use this css code.

    .mfp-title {
       display: none !important;
    }
    

    You could also edit the title and caption value of the images in the Media > Library panel.

    Best regards,
    Ismael

    in reply to: New Custom Post Types #1271763

    Hi,

    What is the actual slug of the Bulldog Businesses post type? In the avf_alb_supported_post_types filter, you have to use the slug of the post type instead of its name.

    // https://developer.wordpress.org/plugins/post-types/registering-custom-post-types/#a-custom-slug-for-a-custom-post-type

    Example:

    function avf_alb_supported_post_types_mod( array $supported_post_types ) {
    	$supported_post_types[] = 'businesses';
    	return $supported_post_types;
    }
    add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1);
    

    Best regards,
    Ismael

    Hey rendersby,

    Thank you for the inquiry.

    Looks like the text or paragraph alignment has been set to justify, but we are not seeing the issue anymore. Did you adjust the style of the post content?

    // https://www.w3schools.com/cssref/pr_text_text-align.ASP

    Unfortunately, it is not possible to display the full content of the ALB in the archive or category pages without significant modification in the template files.

    Best regards,
    Ismael

    Hey samanthashea,

    Thank you for the inquiry.

    The site or the section with the hero image is not loading at all on mobile view, and it might be due to this error.

    Uncaught TypeError: can't access property "load", google.charts is undefined
        <anonymous> https://site.com/wp-content/cache/autoptimize/js/autoptimize_94dd58b7cc85f595286a6b5b508a0e87.js:1689
    autoptimize_94dd58b7cc85f595286a6b5b508a0e87.js:1689:50
    
    

    Did you install a charts plugin from Google? Please try to disable the Autoptimize plugin temporarily, then purge the cache.

    Best regards,
    Ismael

    in reply to: Amazon Site Stripe Photods have disappeared from this post #1271744

    Hey samanthashea,

    Thank you for the inquiry.

    The images are visible on our end, but we notice that they take a bit while to load. Did you install or enable lazy load option? Please check the screenshot below.

    Screenshot: https://imgur.com/nQ8f5Kx

    Best regards,
    Ismael

    in reply to: Google Analytics 4 and cookie law!? #1271723

    Hey gregorh,

    Thank you for the inquiry.

    We have not included it in the privacy options yet, but users should be able to simultaneously disable or enable both analytics scripts using the current cookie toggle for the tracker. This is possible as long as both scripts are inside the Enfold > Google Services > Google Analytics.

    Both version of analytics generate the same cookies, so using the Custom Cookie option may not work. But if you would like to create your custom solution, the function that renders the analytics script is inside the functions-enfold.php file. Just look for the avia_print_tracking_code function.

    We are not actually sure if it is possible or if it is necessary to use both versions of the analytics script in the same site.

    Best regards,
    Ismael

    in reply to: Editing Enfold Homepage with Elementor #1271722

    Hi,

    Thank you for the info.

    The Advance Layout Builder (ALB) cannot be used to edit content that was added using the Elementor builder. They generate different content for the post, so you have to choose beforehand which builder you would actually like to use and stick to it.

    Best regards,
    Ismael

    Hi,

    Thank you for following up.

    You do not need to add the whole line in the file. All you need to do is remove the esc_html function wrapping the title attribute, or this part.

     esc_html( $atts['title'] )
    

    It should be replaced with..

     $atts['title']
    

    Let us know if it works. Please do not forget to purge the cache or do a hard refresh before testing it.

    Best regards,
    Ismael

    in reply to: Sizing and positioning queries #1271589

    Hi,

    There was a missing closing curly brace in one of the css media queries in the Quick CSS field. We add it back right below this code.

    #footer .widget p {
            font-size: 12px;
    }
    

    And regarding the logo, we made sure that the full size version of the logo is selected and added this css code to vertically align the logo inside the header.

    .logo img {
    	display: inline-block;
    }

    Best regards,
    Ismael

    in reply to: Blog Layout Related Entries to Recent Entries Instead #1271587

    Hi,

    Thank you for the update.

    It is working properly on our end. This is how the final or modified query should look.

     $my_query = get_posts(
                                array(       
                                    'post_type' => get_post_type($this_id),
                                    'showposts'=>$postcount, 'ignore_sticky_posts'=>1,
                                    'post__not_in' => array($this_id))
                                );
    

    Best regards,
    Ismael

    in reply to: Center and enlarge search field on search results page #1271585

    Hi,

    Thank you for the info.

    We adjusted the snippet in the functions.php file and confirmed that the placeholder is being replaced with the specified value on mobile view or on screen width lesser than or equal to 989px. If you would like to adjust the placeholder value, just look for this line in the snippet.

    $(".av_searchform_wrapper").find("#s").attr("placeholder", "Search");
    

    Screenshot: https://imgur.com/Jlog5sS

    Best regards,
    Ismael

    in reply to: Blog post image sizes suddenly all different sizes? #1271581

    Hi,

    Could you also provide the FTP details? We would like to check if the thumbnails actually exists in the uploads folder. Right now, the grid or the Blog Posts element falls back to the original image instead of displaying the selected thumbnail.

    We actually deactivated the Smush plugin. Did you configure it before?

    Best regards,
    Ismael

    in reply to: RoadMap 2021 for Enfold #1271580

    Hi,

    According to our developers, the next release will include the latest feature called “Custom Elements”, which is a more advance template system for the Advance Layout Builder, and it will surely contain fixes for open issues, compatibility patches for PHP 8.0 and WP 5.6, but there is no ETA yet.

    Thank you for your continued support.

    Best regards,
    Ismael

    in reply to: How do I delete unused image thumbnails? #1271503

    Hi,

    Thank you for the update.

    I try to manually remove them using the following your snippet in the functions.php

    Adding the snippet in the functions.php file will only deregister the thumbnail sizes but it will not remove those that are already generated. To remove the existing thumbnails, you have to regenerate the images using the plugin (Regenerate Thumbnails) that we suggested above. This process might take a while depending on the number of images uploaded in the site, and since the site contains many, expect it to take some time.

    IMPORTANT: Please do not forget to create a backup or a restore point before proceeding with the thumbnail regeneration.

    Best regards,
    Ismael

    in reply to: Cannot edit a page with Easy Slider on Windows 10 #1271502

    Hi,

    Thank you for the info.

    We enabled the debug mode for the builder, so you could manually edit the shortodes in those pages and manually replace the iframe with the Youtube URL. When the debug mode is enabled, you will find a shortcode editor just below the actual builder. Just look for the iframe tag or the element where it was added, replace it with the actual Youtube URL, then update the page. This should make the pages editable again.

    Best regards,
    Ismael

    in reply to: Enfold Woocommerce #1271501

    Hi,

    Is there any solution to custom product pages template with ALB ?

    When ALB is enabled, a blank template will be used instead and all elements from the default product template such as the price, product photo, etc will be removed or will not render at all. You have to manually add them again using the available elements in the ALB when necessary.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Blog misbehaving #1271500

    Hi,

    Thank you for the update.

    That view is from the post page in the archive.

    1.) The comments area will only display in the actual post page. Are you expecting it to display in the archive page as well? (see private field)

    2.) According to an article, this is a permission issue or it is possible that the Facebook app or page is not yet live and not yet public. To fix it, you may need to toggle the page’s visibility status. Have you tried that?

    Best regards,
    Ismael

    in reply to: Payment issue with update to WooCommerce 4.8 #1271497

    Hi,

    Thank you for the info.

    It seems to be working properly on our end — the paypal window pops up and we do not see any errors in the console after finalizing the product order. Please check the screenshot below.

    Screenshot: https://imgur.com/Sbd6jiz

    After setting the jQuery version to legacy mode, did you toggle the Performance > File Compression settings and purge the cache? You could also try it on incognito mode.

    Best regards,
    Ismael

    in reply to: Content is desappear! #1271496

    Hi,

    @Pas70: Sorry about that. We forgot to add the snippet. Here is it.

    add_action('wp_footer', 'ava_auto_resize');
    function ava_auto_resize(){
    ?>
    <script>
    (function($){	
    	var int = window.setInterval(function(){
    		$(window).trigger('debouncedresize resize');
    	}, 1000);
    	
    	$(window).load(function () {	
    		setTimeout(function() {
    			clearInterval(int);
    		}, 3000);
    	});
    })(jQuery);
    </script>
    <?php
    }
    


    @ancrerouge
    : Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Masonry Grid editing text #1271486

    Hi,

    Unfortunately, we cannot help you with custom code or features that are not actually included in the theme. You may need to contact the previous developer or ask another with the customization. This is as stated on our support policy.

    Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: Static related post. #1271485

    Hi,

    Glad to know that it is working. :)

    You could use the following plugin to adjust the default size of the thumbnails. The name of the thumbnail size used for the related entries is “square”.

    // https://wordpress.org/plugins/simple-image-sizes/

    The size can be changed in the Settings > Media panel and you have to regenerate or upload the images again afterwards.

    Best regards,
    Ismael

    in reply to: Need Urgent Support with Site Crash ! #1271484

    Hi,

    Sorry for the delay. You should be able to generate the error logs using the snippets provided in the following documentation.

    //https://wordpress.org/support/article/debugging-in-wordpress/#wp_debug_log
    // https://wordpress.org/support/article/debugging-in-wordpress/#example-wp-config-php-for-debugging

    Just make sure that that the WP_DEBUG and WP_DEBUG_LOG are set to true.

    What are the actual specs of the server?

    Best regards,
    Ismael

    in reply to: Media Upload and Enfold's Thumbnail Sizes #1271480

    Hi,

    Thank you for the update.

    Do you actually check the generated thumbnails instead of the full size or the original version of the image? Please note that the jpeg_quality will only affect the generated thumbnails, but not the original source of those thumbnails.

    This filter works properly on our end.

     add_filter("avf_jpeg_quality", "avf_set_quality_mod", 9999, 1);
     add_filter("avf_wp_editor_set_quality", "avf_set_quality_mod", 9999, 1);
    
     function avf_set_quality_mod($quality) {
    	$quality = 100;
    	return $quality;
     }
    

    Please check the screenshot below.

    quality: https://imgur.com/zcVAIdU
    file size: https://imgur.com/PDFZp1B

    You could clearly see the quality and file size difference when the default_jpeg_quality is set to 10 version 100. Selected size is Fullscreen Sections/Sliders.

    Best regards,
    Ismael

    in reply to: Mediaelementplayer and Safari #1271470

    Hi,

    When checking in safari, when you console.log anything in the setTimeout function or within the ifelse statement, do you see the result? Older IE browsers, version 10 or older, usually return the same errors or display the same problems as Safari browsers, but we could not reproduce the same issue. The mute/unmute works fine on IE11 and on IE10/IE9 emulation.

    We will forward the issue to our channel.

    Best regards,
    Ismael

    in reply to: Parallex #1271468

    Hi,

    Let us know when you have found a solution. Again, you could use the css code above to adjust the size of the background image. Please also note that it is possible to set the width and height of the background image in percentage based on the size of the parent element.

    // https://www.w3schools.com/cssref/css3_pr_background-size.asp

    Best regards,
    Ismael

Viewing 30 posts - 15,541 through 15,570 (of 66,839 total)