Forum Replies Created

Viewing 30 posts - 9,331 through 9,360 (of 67,443 total)
  • Author
    Posts
  • in reply to: Team Member Description in Lightbox #1374722

    Hi,

    Does it work when you adjust the float property from left to none in the following css rue?

    .white-popup .team-img-container {
       max-width: 300px;
       float: left;
       margin: 0 20px 10px 0
    }
    

    Try to replace it with this css.

    .white-popup .team-img-container {
       max-width: 300px;
       float: none;
       margin: 0 20px 10px 0
    }
    

    Best regards,
    Ismael

    Hi!

    Thank you for the update.

    The script above will trigger a browser resize which should force the gallery items to reposition and remove the unwanted spaces, it is a temporary fix until we figured out the actual cause of the issue. You can now remove it since we already confirmed that the issue is caused by a plugin. If you want to re-enable lazy loading option from the plugin, you can add the script back.

    Cheers!
    Ismael

    in reply to: Recaptcha v2- WPML #1374563

    Hi!

    Thanks for following up.

    Please replace the enfold\framework\php\class-grecaptcha.php again with the updated code below.

    // https://pastebin.com/aT4tDH0c

    Then use this filter instead.

    add_filter('avf_google_recaptcha_apiurl', function($apiurl, $context) {
    	if($context == 'frontend')
    	{
    		$lang = apply_filters( 'wpml_element_language_code', null, []);
    		$apiurl = $apiurl . "?hl=" . $lang;
    	}
    
    	return $apiurl;
    }, 10, 2);
    

    If the issue persists, please provide the WP and FTP details in the private field so that we can test the changes.

    Regards,
    Ismael

    in reply to: Page tests issues with aria menu + colours #1374562

    Hey Jaro,

    Thank you for the inquiry.

    — Certain ARIA Roles Must Be Contained By Particular Parents

    The menu items are already wrapped in a ul element with the role attribute and the value is set to “menu”, so this is a false positive.

    — Id Attribute Value Must Be Unique

    The id attribute of the menu items are already unique, so once again this report is not accurate.

    — Ul And Ol Must Only Directly Contain Li Script Or Template Elements

    Not sure what this means but when we checked the menu-hlavne-menu container, it only contains li elements, and nothing else.

    — Elements Must Have Sufficient Color Contrast

    It seems to be referring to the text block containing the “uk-margin-remove” paragraph. You can adjust the color of the paragraph in the text block’s Styling > Font Colors panel, or manually apply the color as inline css styles. For the menu items, you should be able to adjust the Main Menu Links colors in the Enfold > Advanced Styling panel.

    Best regards,
    Ismael

    in reply to: Create simple popup with Enfold #1374560
    in reply to: Update Jquery in the documentation #1374558

    Hi,

    Did you install the dependencies in the dev folder and actually use the scripts to minify the files? If not, then it means that the dependencies or packages (node_modules) do not actually exist in your installation. What is being reported in your tool is just a list of dependencies in the package.json file they deemed vulnerable, the actual packages do not exist. And again, they are “dev dependencies”, so they will not be included in the dev folder even if you installed the dependencies using “npm install”. You can manually remove the dev folder if you think it is unsafe.

    Best regards,
    Ismael

    in reply to: graphic caption with parallax effect in a color section #1374557

    Hey solf,

    Thank you for the inquiry.

    Have you tried using an Image element with parallax options enabled instead of the color section’s background image? Please try to insert an Image element and configure the animations in the Advanced > Animation panel, look for the Parallax Rules settings.

    Best regards,
    Ismael

    in reply to: Category pages not working #1374555

    Hey Referee1988,

    Thank you for the inquiry.

    Did you override any parent theme templates or files in the child theme? The template modifications might have caused this issue. We may need to access the site in order to check the issue further. Please provide an admin an account in the private field.

    Best regards,
    Ismael

    in reply to: Masonry Gallery – Help Me Control Image Size #1374554

    Hey hmsvictory,

    Thank you for the inquiry.

    You can use this filter in the functions.php file to adjust the size of the lightbox image for the masonry gallery element.

    function avf_avia_builder_helper_lightbox_size_mod() {
        return "full";
    }
    add_filter('avf_avia_builder_helper_lightbox_size','avf_avia_builder_helper_lightbox_size_mod', 10);

    This should display the lightbox image in its original size.

    Best regards,
    Ismael

    Hey Burnt Pixel,

    Thank you for the inquiry.

    It is possible that the following condition in the filter is not being met, which prevents the title modification from being applied.

    if ( $args['title'] == 'Blog - Latest News' )
    

    Where can we check the issue? Please provide the site URL and an admin account so that we can check the issue properly

    Best regards,
    Ismael

    in reply to: Permanently ban the Logo from the Header #1374552

    Hey Proleaks,

    Thank you for the inquiry.

    What do you mean by subsite? Is it a different domain using the same theme? If it is, then you may need to re-apply the same css code directly to the subsite in order to hide the logo. Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.

    Best regards,
    Ismael

    in reply to: Team Member Description in Lightbox #1374551

    Hey Eleina,

    Thank you for the inquiry.

    We can’t reproduce the same issue on our end. The title of the items stays below the image as shown in the screenshot below.

    Screenshot: https://1drv.ms/u/s!AjjTfXSRbKTvz074KeJ6MYDpa4cD?e=qJttkd

    Did you fix the layout issue?

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The margin values of the second separator are missing px unit (50, 65).

    #top .hr.av-jgf4q5kq-41-34d41f50754b868025d6fcf99509f194 {
        margin-top: 50;
        margin-bottom: 65;
    }

    Please make sure to include px in the margin values (50px, 65px).

    Best regards,
    Ismael

    Hey Hurricane,

    Thank you for the inquiry.

    Did you install a lazy load plugin or any plugin related to images? The plugin might be preventing the isotope script from correctly adjusting the position of the portfolio items. To fix the issue temporarily, you can use this css code.

    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: Construction Demo: Why Are Pages Blank? #1374547

    Hi,

    Thank you for the inquiry.

    We tried logging in to the site but the login page itself is restricted. How can we get past the restriction? Would you mind providing a screenshot of the issue? You can use imgur, savvyify or dropbox for the screenshot. Thanks.

    The construction demo is actually using the default theme slideshow. You can check it by editing the home page.

    Best regards,
    Ismael

    in reply to: Page completely shot | Enfold restaurant #1374546

    Hey Nic_007,

    Thank you for the inquiry.

    Have you tried reverting the page to any of the previous revisions? Please check the documentation below for more info.

    // https://wordpress.org/support/article/revisions/

    You can also ask your hosting provider to restore the site using a backup if it is available.

    Best regards,
    Ismael

    Hey!

    Sorry for the delay. You have to set the ‘video_mute‘ parameter to false to prevent the video from auto playing. Make sure to check the page on a different browser or in incognito mode.

    Cheers!
    Ismael

    Hey bernadinea,

    Thank you for the inquiry.

    Where do you see the error? The method or function wf_mm::init() is not from the theme, so it is probably called by a third-party plugin or is generated from a custom script. Please try to deactivate the plugins temporarily.

    Best regards,
    Ismael

    in reply to: Offset current post in blog posts (grid) #1374239

    Hi,

    Sorry for the late response. Please try to replace the code with the following filter instead.

    /*
    Removing duplicate blog post (Blog post element must not have offset activated)
    */
    add_filter('avia_post_slide_query', 'avia_post_slide_query_mod');
    function avia_post_slide_query_mod( $query ) {
        global $post;
        if ( is_single() ) {
            $query['post__not_in'] = array($post->ID);
        }
        return $query;	
    }
    

    We were not able to check the page above because it is password-protected. Please post the password in the private field or provide an admin account.

    Best regards,
    Ismael

    in reply to: Background video not playing everytime #1374238

    Hi,

    Background videos still work correctly on our installation, so this probably an issue with a third-party script or plugin, or because of the browser itself. Have you tried disabling the plugins temporarily? What is the version of the Safari browser that your client using?

    Screenshot: https://1drv.ms/u/s!AjjTfXSRbKTvz0ZI8GR5aGUWMjQb?e=Xs9XPm

    Best regards,
    Ismael

    in reply to: Edits not working in advanced styling in Enfold theme #1374237

    Hey garydavis1111,

    Sorry to hear that you are having issues with the theme. Did you try to temporarily disable the Enfold > Performance > File Compression settings after doing adjustments in the Enfold > Advanced Styling panel? Please provide site URL in the private field and a login account so that we can check the issue further.

    Best regards,
    Ismael

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

    Hi,

    if it is possible set it to particular page (e.g https://3dlabstore.com.hk/3d-printing-technology)

    Yes, that should be possible. Please remove the previous code that we suggested above and replace it with the code below.

    function avia_breadcrumbs_trail_mod($trail) {
               if( is_singular( 'post' ) ) {
    	         $trail[0] = '<a href="https://3dlabstore.com.hk/3d-printing-technology" title="3d Printing Technology" rel="">3d Printing Technology</a>';
               }
    	   return $trail;
      }
      add_filter('avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 1);
    

    If this adds the page in the wrong position, please look for this code in the filter above..

    $trail[0]
    

    .. and replace it with:

    $trail[1]
    

    Best regards,
    Ismael

    in reply to: Edit position title and description for masonry #1374235

    Hey hyrion,

    Thank you for the inquiry.

    We have to edit the includes > loop-index.php file directly in order to move the featured image below the title. Please edit the file, remove everything, then replace the content using the code below.

    // https://pastebin.com/ABcmjpQt

    Best regards,
    Ismael

    in reply to: Critical error with PHP 8.1 #1374234

    Hey Sonja,

    Thank you for the inquiry.

    Would you mind posting the errors in the log? Please use pastebin.com and place the link the private field. We will need a login account for the WordPress dashboard as well. Please include the info in the private field.

    Best regards,
    Ismael

    in reply to: Update Jquery in the documentation #1374233

    Hey!

    Did you install the dependencies in the enfold > dev folder? If not, then you should not be worrying at all about this. The dependencies glob-parent and terser are only dev dependencies, which is used by the developers in their own environment to build something else, which also means that these packages do not actually exist in your installation.

    Regards,
    Ismael

    in reply to: Please fix the video playing on all browsers #1374231

    Hey schwabino,

    Thank you for the inquiry.

    Are you using the color section, and did you mute the video? Please provide the site URL in the private field so that we can check the issue properly, and make sure that the theme is updated to version 5.2.1.

    Best regards,
    Ismael

    in reply to: Recaptcha v2- WPML #1374230

    Hey abeldb,

    Thank you for the inquiry.

    The widget will automatically switch to the language of the user or visitor who is viewing the site. Since you are probably in a country using the ES language and your browser set to use the ES language, the widget also uses the ES language. For EN users, the widget will display in EN, same for other languages.

    But if you want the widget to automatically switch based on the site’s current language, please edit the enfold\framework\php\class-grecaptcha.php, replace everything with the code below.

    // https://pastebin.com/hMZWNUMJ

    Then add this filter in the functions.php file.

    add_filter('av_google_recaptcha_apiurl', function($url) {
    				$lang = apply_filters( 'wpml_element_language_code', null);
    				$url = $url . "?hl=" . $lang;
    				return $url;
    			}, 10, 1);
    

    Best regards,
    Ismael

    in reply to: customize comment form #1373835

    Hi,

    We adjusted the css code again to reflect the changes in your screenshot. You can find the code in the Quick CSS field.

    #commentform .comment-form-author, #commentform .comment-form-email {
        float: left;
        z-index: 3;
    }
    
    #commentform .comment-form-author {
        margin-right: 10px;
        width: calc(50% - 10px);
    }
    
    #top #commentform .comment-form-email {
        margin-right: 0 !important;
        margin-bottom: 15px;
    }
    
    #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: 0;
        display: inline-block;
    }
    
    #commentform .comment-form-cookies-consent input {
        top: 1px;
        position: relative;
    }
    
    #commentform input + label[for="comment-form-av-privatepolicy"] {
        left: 0;
    }
    
    #commentform .form-av-privatepolicy.comment-form-av-privatepolicy {
        top: -30px;
    }
    
    #commentform .form-av-privatepolicy.comment-form-av-privatepolicy input {
        top: 2px;
        position: relative;
    }
    

    Best regards,
    Ismael

    in reply to: Offset current post in blog posts (grid) #1373832

    Hey domchocolate,

    Thank you for the inquiry.

    We adjusted the code a bit to include the blog posts grid.

    function ava_exclude_portfolio($query) {
    	if (is_singular('portfolio') || is_singular('post')) {
                     $exclude = avia_get_the_ID();
    		$query->set( 'post__not_in', array($exclude) );
    	}
    }
    
    add_action('pre_get_posts', 'ava_exclude_portfolio');
    

    Best regards,
    Ismael

    in reply to: Using a custom field as excerpt #1373831

    Hey domchocolate,

    Thank you for the inquiry.

    You can use the get_the_excerpt filter to adjust the excerpt of the default posts.

    // https://developer.wordpress.org/reference/hooks/get_the_excerpt

    Make sure to check for the post type.

    Best regards,
    Ismael

Viewing 30 posts - 9,331 through 9,360 (of 67,443 total)