Forum Replies Created

Viewing 30 posts - 13,711 through 13,740 (of 66,126 total)
  • Author
    Posts
  • in reply to: 4.8.2 bug with beta #1297448

    Hi,

    Thank you for the info @Guenni007.

    Best regards,
    Ismael

    in reply to: Button Schriftgröße auf Mobilansicht ändern #1297332

    Hey mbautz,

    Thank you for the inquiry.

    Looks like the slider is hidden on mobile view. If you still need to adjust the size of the buttons, try to use this css code.

    @media only screen and (max-width: 767px) {
    #top #wrap_all .avia-slideshow-button, #top .avia-button, .html_elegant-blog .more-link, .avia-slideshow-arrows a:before {
        max-width: 50%;
        font-size: 13px !important;
    }
    }
    

    Best regards,
    Ismael

    in reply to: Button row colliding with other elements #1297328

    Hey Vojtech,

    Thank you for the inquiry.

    The buttons are not working properly because the diagonal border is covering them. You may need to disable the border or transfer it somewhere else.

    Or use this css code to move the diagonal container downwards.

    .avia_transform .av-extra-border-element.border-extra-diagonal {
        margin-top: -150px;
    }
    

    Best regards,
    Ismael

    in reply to: Display featured image on portfolio page #1297325

    Hey floka168,

    Thank you for the inquiry.

    Did you switch the editor to the advance layout builder (ALB)? The featured image will not display automatically when ALB is active. You have to manually insert an Image element or a Slider from the builder to display an image in the portfolio page. If the classic or default editor is active, the featured image should display automatically.

    Best regards,
    Ismael

    in reply to: Horizontal Icons + Text #1297323

    Hi,

    Thank you for the update.

    Try to use this css code to align the description or content with the icon, and reduce the space after the title.

    
    .horizontal-icons-custom-class ul.avia-icon-list li {
        margin-left: 0;
        margin-right: 40px;
        text-align: center;
    }
    
    .horizontal-icons-custom-class ul.avia-icon-list li {
        text-align: center;
    }
    
    .avia-icon-list .iconlist_icon {
        float: none;
        display: inline-block;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 10px;
    }
    
    .iconlist_content p {
        margin: 0.2em 0;
    }
    
    

    Best regards,
    Ismael

    in reply to: Import, Migrate or Upgrading from older Angular Theme #1297312

    Hey pachnerweb,

    Thank you for the inquiry.

    Angular is a completely different theme from Enfold, so you cannot just export the theme options from one another and transfer the pages. You may have to reconfigure the site from scratch and completely rebuild it from the ground up. The good news is, Enfold has its own Advance Layout Builder, so creating different page templates or layouts from scratch is a breeze, saving you time in the long run, and not to mention the continued support.

    Best regards,
    Ismael

    in reply to: do_shortcode issue on visual builder #1297310

    Hi,

    Execution of shortcodes outside the builder is not allowed by default and the only way to enable it is by using the filter that we suggested above. Did you add this code in the functions.php file?

    function avf_custom_exec_sc_only_mod( $exec_sc_only, $obj_sc, $atts, $content, $shortcodename, $fake ) {
    	return true;
    }
    
    add_filter( 'avf_alb_exec_sc_only', 'avf_custom_exec_sc_only_mod', 10, 6 );
    

    They allow to customize the result page and we are using

    Is it a custom builder? Please ask the plugin author how they return the output or content from that builder, and if there is any filter that we can use to modify its content before rendering it in the page.

    Best regards,
    Ismael

    in reply to: gallery thumbnail bug #1297309

    Hi,

    Thank you for the info.

    Are you using an image optimization plugin, or any plugin that adds responsive options to the images? Please try to disable the plugin temporarily and see if anything changes. And post the login details in the private field so that we could check the site further.

    Best regards,
    Ismael

    in reply to: Language flags back in the menu after upgrading to 4.8.2 #1297308

    Hi,

    Sorry about that. We forgot to replace the add_filter with the remove_filter function. This is why another set of flags occur in the page. We edited the snippet above. Please try it again.

    Why are you not adding this as an option in the theme setting?

    We carefully choose which settings are actually needed in the theme options and try not to include everything in it. This is to keep the theme lean and clean as possible. And besides, having a language switcher on a multi-language site is a must, so it doesn’t really make sense to disable it, unless you want to configure or add your own set of language switcher, which is probably what you are after.

    Best regards,
    Ismael

    in reply to: Submenu links to tab sections #1297306

    Hi,

    Thank you for the update.

    The code above should be added in the functions.php file, not in a code block. Please remove all the code blocks containing the script and use the script above instead. You have to put it in the functions.php file.

    Best regards,
    Ismael

    in reply to: Plugin conflict removes kitchen sink from wysiwyg #1297304

    Hi,

    We had to comment out this line temporarily to make the kitchen sink display in Text Block element again.

    //$tiny['js_plugin_file'] = $this->paths['assetsURL'].'js/avia-tinymce-buttons-4.js';
    

    Screenshot: https://imgur.com/ERuXRhI

    We will let you know once we found the actual cause of the issue. Please keep the modifications for now, and upgrade the theme to the latest version.

    Best regards,
    Ismael

    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

Viewing 30 posts - 13,711 through 13,740 (of 66,126 total)