Forum Replies Created

Viewing 30 posts - 14,401 through 14,430 (of 66,805 total)
  • Author
    Posts
  • in reply to: oop-up contact form #1297300

    Hi,

    Thank you for the update.

    We do not remember adding that css code, but you can try adding it in the other languages’ General Styling > Quick CSS field, or in the child theme’s style.css file. To see the changes in the front end immediately, make sure that the Performance > File Compression settings for all languages are disabled or make sure to toggle it. And please purge the cache and do a hard refresh before checking the page.

    Best regards,
    Ismael

    in reply to: Logo SrcSet? #1297298

    Hi,

    Alright. Let us know if the modification above changes anything. It should convert the default logo markup and add the srcset attribute to it.

    Best regards,
    Ismael

    Hi,

    What you see in the screenshot below is the value of the Shop Description field, and it can be edited in the Enfold > Shop Options panel.

    Screenshot: https://imgur.com/a/FvuyqMO

    If you want to see the title there, just edit the Shop Description and place the actual title of the shop page.

    For the archive pages, if you want to include the category title there, try to modify the enfold/config-woocommerce/config.php file, look for the avia_woocommerce_parallax_banner function and around line 1180, look for this code.

    if($description) $output .= "".$description."";
    

    Replace it with:

    $output .= "<h1>".get_the_archive_title()."</h1>";
    if($description) $output .= "<p>".$description."</p>";
    

    Best regards,
    Ismael

    in reply to: Masonry Blog not as expected #1297291

    Hi,

    Why is the Masonry Blog not responsive and has to be customized that much?

    The element is actually responsive but it does not work well with too much excerpt. It is suppose to highlight the featured images, not be covered with text.

    Have you tried using a different Size Settings such as the Flexible Masonry? The advantage with this size option is that the image and the caption have separate containers so they do not overlap each other. Just make sure that the uploaded images have the same size and aspect ratio to get a perfect grid. The same thing can be done with the Portfolio Grid element, or the Blog Posts element set to grid layout.

    whole container is too narrow and

    You can also adjust the maximum container width for larger screens with css.

    @media only screen and (min-width: 1800px) {
        .responsive .container {
            max-width: 1600px;
        }
    }

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    We tried to access the site but it is not loading properly. Is the site down? Please disable the security plugin temporarily or configure the firewall. Or let us know when the site is up again.

    Best regards,
    Ismael

    in reply to: Wrong logo on mobile and some desktop pages #1297286

    Hi,

    Thank you for the update.

    Can we access the site again? The token above has already expired. Please provide another token or an admin account so that we could check the site further. Make sure that the Appearance > Editor panel is accessible.

    Best regards,
    Ismael

    in reply to: avia_instagram_widgets_cache 588619 #1297164

    Hey eleonorabienno,

    Thank you for the inquiry.

    Are you still using the Instagram widget? If not, then you can safely delete the avia_instagram_widgets_cache entry from the database.

    If you want to delete the entry, add this code in the functions.php file.

    
    function avf_instagram_disable_cron() {
    	return false;
    }
    
    add_action('wp_head', function() {
    	delete_option('avia_instagram_widgets_cache');
    });
    add_filter('avf_instagram_activate_cron', 'avf_instagram_disable_cron', 10); 
    

    Purge the cache or disable the cache plugin temporarily, then refresh the page a few times. Delete the snippet above afterwards.

    IMPORTANT: Please make sure to create a site backup first before doing the steps above.

    Best regards,
    Ismael

    in reply to: Custom elements templates modify in all languages #1297159

    Hi,

    Sorry for the delay. Did you lock the Edit Gallery option? The Edit Gallery option should be locked if you want the changes to reflect on every language. Also, after adding a new image or after updating the CET, you have to edit it, click the Green Book button again and when you get to the Edit ALB Custom Element Template page, look for the Language > Translations section and update the translations. You will be redirected to the WPML’s Translation Editor, just save and close. These steps have to be repeated for every language.

    Locked Edit Gallery option: https://imgur.com/mszvmCl

    Best regards,
    Ismael

    in reply to: Portfolio Masonry – polylang – 3 sprachen #1297146

    Hi,

    Thank you for the update.

    How did you translate the pages? Did you translate the images to other languages? If the media files are not yet translated, please check the following documentation.

    // https://wpml.org/documentation/getting-started-guide/media-translation/

    Best regards,
    Ismael

    in reply to: 'Use Any Font Plugin' and Main menu font #1297144

    Hey TrevorMF,

    Thank you for the inquiry.

    What is the name of the font that you are trying to use? You can use this css to change the default style of the menu items including its font-family.

    .av-main-nav > li > a {
    	display: block;
    	text-decoration: none;
    	padding: 0 13px;
    	font-weight: normal;
    	font-weight: 600;
    	font-size: 13px;
            font-family: "name of font", serif;
    }

    You can also configure the menu style in the Enfold > Advanced Styling panel, but you may not be able to select the font from the plugin.

    Best regards,
    Ismael

    Hi,

    Thank you for opening another thread. Glad to know that you were able to improve the site performance.

    As we have discussed in the previous thread, major contributors to the layout shift in the home page are the ads. They are dynamically created and inserted on page load, causing the elements below them to shift or adjust.

    Screenshots: https://imgur.com/iqhf8s4, https://imgur.com/vF3wdci

    I believe you have already fixed this by defining the height of the element where the ads are supposed to be added to.

    Best regards,
    Ismael

    in reply to: Horizontal Icons + Text #1297129

    Hey pipedream,

    Thank you for the inquiry.

    How would you like the icon list to display? Please provide a screenshot or a mockup using imgur or dropbox.

    You can use this css code to move the icon content container below the actual icon.

    .avia-icon-list .iconlist_content_wrap {
        overflow: unset;
    }
    

    And if you want to remove the dashed line, use this css code.

    .avia-icon-list .iconlist-timeline {
        display: none;
    }
    

    Best regards,
    Ismael

    in reply to: Enfold – Content Slider creating CLS issues #1297127

    Hi,

    Thank you for the update.

    Lazy loading actually increases layout shifts in the page, specially when the dimension (width and height) of the elements are not defined. To prevent layout shifts caused by the slider, you may need to define the height of its parent container, in this case the column element, to prevent the elements from shifting when the slider finally loads.

    You can add custom css to do that.

    // https://kriesi.at/documentation/enfold/add-custom-css/

    Best regards,
    Ismael

    in reply to: adjustments to the horizontal timeline (milestones) #1297125

    Hey fkm,

    Thank you for the inquiry

    How did you adjust the size of the icon? Did you use a custom css? You can insert additional css to adjust the position of the elements.

    Example:

    
    /* adjusts the horizontal date lines and dot */
    .avia-timeline-horizontal .av-milestone-date span {
        left: -63px;
    }
    
    /* adjusts the milestone content wrapper */
    .avia-timeline-horizontal.av-milestone-placement-top .av-milestone-content-wrap {
        left: -5px;
    }
    
    /* adjusts the milestone description container */
    .avia-timeline-horizontal .av-milestone-contentbox {
        position: relative;
        left: -20px;
        top: 20px;
    }
    

    Best regards,
    Ismael

    in reply to: change gallery width for mobile #1297123

    Hey mattb1169,

    Thank you for the inquiry.

    Are you using the Gallery element from the Advance Layout Builder? If yes, then you can use this css code to adjust the width of the gallery items on mobile view.

    @media only screen and (max-width: 767px) {
        #top #wrap_all .avia-gallery .avia-gallery-thumb a {
            width: 100%;
        }
    }
    

    Please note that the css above will affect every gallery in the site and if you want to only apply it to a specific gallery, apply a custom css class or ID to the element and use that instead of the generic gallery selector (.avia-gallery).

    // https://kriesi.at/documentation/enfold/add-custom-css/

    Best regards,
    Ismael

    in reply to: gallery thumbnail bug #1297121

    Hey rustleredv,

    Thank you for the inquiry.

    Looks like the gallery is using the original image instead of a thumbnail. To change that, edit the Gallery element, go to the Styling panel, then try to set the Gallery Preview Image Size to Portfolio(495×400) or any thumbnail with cropping enabled. When cropping is enabled, WP will crop and resize the image to the specified thumbnail dimension regardless of the original aspect ratio.

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    The 3rd and 4th heading row is missing because for some reason, a new line is created before the closing single straight quote of the 3rd column’s content property.

    <style type="text/css">.avia-table-2 td:nth-of-type(0):before { content: 'Spezifikation'; } .avia-table-2 td:nth-of-type(1):before { content: 'SVTM1200CNC'; } .avia-table-2 td:nth-of-type(2):before { content: 'SVTM1600CNC'; } <strong>.avia-table-2 td:nth-of-type(3):before { content: 'SVTM2000CNC
    '; }</strong> .avia-table-2 td:nth-of-type(4):before { content: 'SVTM2500CNC'; } </style>
    

    The issue starts here..

    .avia-table-2 td:nth-of-type(3):before { content: 'SVTM2000CNC
    '; }
    

    To fix the issue temporarily, try to use this css code.

    @media only screen and (max-width: 767px) {
      .page-id-5788 .avia-table-2 td:nth-of-type(0):before {
        content: 'Spezifikation';
      }
    
      .page-id-5788 .avia-table-2 td:nth-of-type(1):before {
        content: 'SVTM1200CNC';
      }
    
      .page-id-5788 .avia-table-2 td:nth-of-type(2):before {
        content: 'SVTM1600CNC';
      }
    
      .page-id-5788 .avia-table-2 td:nth-of-type(3):before {
        content: 'SVTM2000CNC';
      }
    
      .page-id-5788 .avia-table-2 td:nth-of-type(4):before {
        content: 'SVTM2500CNC';
      }
    }
    

    Best regards,
    Ismael

    in reply to: 4.8.2 bug with beta #1297117

    Hey goldengate415,

    Thank you for the info.

    The lightbox srcset feature is still in beta mode as described in the options page, so issues should be expected. It adds the srcset attribute to the lightbox images so that the appropriate thumbnail size is used based on the size of the current screen. This improves performance because smaller images are loaded.

    Is there a development or staging version of the site? Please post the site or page URL containing the lightbox so that we could check the issue further.

    Best regards,
    Ismael

    in reply to: RankMath Issues #1297115

    Hey Eduardo,

    Thank you for the inquiry.

    Where can we see this issue? Did you modify the register-portfolio.php file? Please post the site URL in the private field so that we could check the issue properly.

    You could also disable the debug mode to temporarily hide those warnings. In the wp-config.php file look for the WP_DEBUG and WP_DEBUG_DISPLAY constants and set them to false.

    define("WP_DEBUG", false);
    define("WP_DEBUG_DISPLAY", false);
    

    Best regards,
    Ismael

    in reply to: Add language switch under the burger icon #1297114

    Hey Markus,

    Thank you for the inquiry.

    You can use one of the snippets that we provided in the following threads, and modify it a bit so that the language switcher is rendered beside the icon menu.

    // https://kriesi.at/support/topic/wpml-language-selector-in-main-menu/#post-314208
    // https://kriesi.at/support/topic/wpml-language-switcher-offers-languages-in-which-no-content-is-available/#post-1182955

    Best regards,
    Ismael

    Hey Bernd,

    Thank you for the inquiry.

    The previous handlers for the language switcher have been transferred to a different config file. Try to use this filter instead.

    
    //--------------------------------------------------------------
    // Remove Enfold Language Switcher
    //--------------------------------------------------------------
    function avia_remove_main_menu_flags(){
            remove_filter( 'wp_nav_menu_items', array( 'avia_WPML', 'handler_append_lang_flags' ), 9998, 2 );
    	remove_filter( 'avf_fallback_menu_items', array( 'avia_WPML', 'handler_append_lang_flags' ), 9998, 2 );
            remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10 );
            remove_action( 'ava_main_header_sidebar', 'avia_wpml_language_switch', 10 );
    }
    add_action('after_setup_theme','avia_remove_main_menu_flags');
    
    

    Or use this..

    function avia_append_lang_flags( $items, $args )
    	{
    		return $items;
    	}
    

    Best regards,
    Ismael

    in reply to: Timeline images animation #1297112

    Hi,

    Thank you for the info.

    The image in the milestone bullet is actually added as background and not as an actual image element, so it cannot have the overlay or the hover effect. But you can use css to create a different overlay effect.

    .milestone_icon .milestone_inner:before {
        opacity: 0;
        content: '>';
        display: table;
        text-align: center;
        vertical-align: middle;
        width: 100%;
        height: 100%;
        transition: all 1s;
    }
    
    .milestone_icon:hover .milestone_inner:before {
        background: rgba(255,255,255,0.5);
        opacity: 1;
    }
    

    Best regards,
    Ismael

    in reply to: Enfold with LearnDash #1297110

    Hi,

    Thank you for the update.

    You should be able to use the Advance Layout Builder (ALB) for products. There should be an ALB switch button just below the product title field. Are you not seeing that button?

    We logged in using the account above but we cannot access the dashboard. Please change the user role of the account to admin, or provide another account.

    Best regards,
    Ismael

    in reply to: Logo SrcSet? #1296974

    Hey Thomas,

    Thank you for the inquiry.

    Looks like the srcset option for the logo is not working properly because the dimension (width and height attributes) is defined in the markup. To make it work, please edit the enfold/framework/php/function-set-avia-frontend.php and around line 686, look for this code..

    $logo_img = "<img {$resp_attr} {$dimension} alt='{$alt}' title='{$title}' />";
    				$logo = "<{$headline_type} class='logo'><a href='{$link}'>{$logo_img}{$sub}</a></{$headline_type}>";
    

    .., then replace it with:

    	$logo_img = "<img {$resp_attr} alt='{$alt}' title='{$title}' />";
    				$logo_img = Av_Responsive_Images()->make_image_responsive( $logo_img, attachment_url_to_postid($logo), '' );
    				$logo = "<{$headline_type} class='logo'><a href='{$link}'>{$logo_img}{$sub}</a></{$headline_type}>";
    

    We will forward the issue to our channel.

    Best regards,
    Ismael

    in reply to: Future/coming events not working properly #1296964

    Hi,

    Glad we could be of help! Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    Hey PremiumFood,

    Thank you for the inquiry.

    The slider looks alright on our end — the slider images are displaying properly. Please check the screenshot below.

    // https://imgur.com/zmUZNBg

    How can we reproduce the issue?

    Best regards,
    Ismael

    in reply to: Transition Speed on Easy Slider #1296961

    Hey sitesme,

    Thank you for the inquiry.

    You will have to directly modify the enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.js file and adjust the transitionSpeed option around line 42.

    //transition speed when switching slide
    		transitionSpeed:900,
    

    Or pass the options parameter in the js/shortcodes.js file, around line 180.

    $('.avia-slideshow:not(.av_fullscreen)', container).aviaSlider();
    

    Best regards,
    Ismael

    Hey sldeutsch,

    Thank you for the inquiry.

    If complex animations or moving contents are not required, you can easily add a hero image using a Color Section with background or a Fullwidth Easy Slider. Have you tried those elements yet?

    Best regards,
    Ismael

    in reply to: Adsense automatic ads #1296916

    Hey danielem78,

    Thank you for the inquiry.

    Looks like the ads are there but they are not rendering properly. We do not see any errors in the console, so it is a bit difficult to know what is actually causing the issue.

    Please try to disable the Autoptimize plugin temporarily, then purge the cache. Loading the script files separately might help.

    Best regards,
    Ismael

    in reply to: Leaflet Marker Popup not working #1296915

    Hey SNiestroj,

    Thank you for the inquiry.

    Looks like this is a known issue on version 1.7.1 as discussed in the following thread.

    // https://github.com/Leaflet/Leaflet/issues/7255

    To fix the issue temporarily, please use this filter in the functions.php file.

    add_filter("avf_leaflet_maps_params", function($params) {
    	 $params[] = 'tap="false"';
    	 return $params;
     }, 10, 1);
    

    We will forward the issue to our channel.

    Best regards,
    Ismael

Viewing 30 posts - 14,401 through 14,430 (of 66,805 total)