Forum Replies Created

Viewing 30 posts - 601 through 630 (of 66,027 total)
  • Author
    Posts
  • in reply to: page speed super slow on mobile #1481772

    Hi,

    Thank you for the inquiry.

    To improve LCP, you can preload the first image above the fold and make sure that all images are compressed.

    https://wordpress.org/plugins/preload-lcp-image/

    For more info on how to optimize the loading speed, you can check out the articles below.

    https://wpengine.com/resources/improve-wordpress-site-speed/
    https://gtmetrix.com/wordpress-optimization-guide.html

    Best regards,
    Ismael

    in reply to: Scroll header #1481771

    Hi,

    No problem! Let us know if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: White bar at the top #1481701

    Hi,

    Thank you for the inquiry.

    We are not seeing the top bar on the site. Is it only visible when you’re logged in?

    View post on imgur.com

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    We may need to access the site to further check the issue. Please provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: Scroll header #1481699

    Hey sitadi,

    Thank you for the inquiry.

    You can start with this css code:

    
    @media only screen and (min-width: 768px) {
    
      /* Add your Desktop Styles here */
      .html_header_top .header-scrolled .logo.avia-standard-logo {
        left: 200px;
        transform: none;
      }
    
      .html_header_top .header-scrolled #custom_html-4 {
        margin-top: -150px;
      }
    }
    

    Best regards,
    Ismael

    in reply to: Tablet version Grid Row #1481698

    Hey Diana,

    Thank you for the inquiry.

    You can try this css code to adjust the breakpoint of the grid row cells:

    @media only screen and (max-width: 1025px) {
      .responsive #top #wrap_all .av-flex-cells .no_margin {
        display: block;
        margin: 0;
        height: auto !important;
        overflow: hidden;
        padding-left: 8% !important;
        padding-right: 8% !important;
        width: 100%;
      }
    }

    Best regards,
    Ismael

    in reply to: Burger menu display #1481697

    Hey sitadi,

    Thank you for the inquiry.

    Try to add this css code to adjust the z-index of the header container where the menu resides.

    @media only screen and (max-width: 768px) {
    
      /* Add your Mobile Styles here */
      .responsive #top #wrap_all #header_main>.container {
        z-index: 1000 !important;
        position: relative;
      }
    }

    Best regards,
    Ismael

    in reply to: Adding click ID to Button elemen #1481696

    Hi,

    Where can we check the button? Have you tried using Click Classes instead of Click ID in the trigger condition?

    https://support.google.com/tagmanager/answer/7182738?sjid=13411867830563470274-NC

    The trigger condition can be set to Click Classes > contains > “custom-element-class”. The class “custom-element-class” can be added in the Button element’s Advanced > Developer Settings > Custom CSS Class field. Please note that the changes in the console might take some time to propagate or take effect. You may need to test if the changes apply after a few hours.

    Best regards,
    Ismael

    Hey AndreasWinkler,

    Thank you for the inquiry.

    The site seems to be using the correct permalink when we checked the About page. Did you figure this out? (see private field)

    Best regards,
    Ismael

    in reply to: A small magnifying glass instead of text in the menu #1481694

    Hey schweg33,

    Thank you for the inquiry.

    In the Navigation Label field of the search menu item, you can replace the text with the icon shortcode or an icon image.

    [av_font_icon icon='search' font='svg_entypo-fontello' style='' caption='' size='40px' position='left' color='' link='' link_dynamic='' linktarget='' title_attr='' sonar_effect_effect='' sonar_effect_color='' sonar_effect_duration='1' sonar_effect_scale='' sonar_effect_opac='0.5' animation='' id='' custom_class='' template_class='' element_template='' one_element_template='' av_uid='av-m9qks9nw' sc_version='1.0' admin_preview_bg=''][/av_font_icon]
    

    Best regards,
    Ismael

    Hey goldengate415,

    Thank you for the inquiry.

    Fixed background images with background-size set to cover are not fully supported on iOS devices.

    https://caniuse.com/background-attachment > Known Issues

    iOS has an issue preventing background-attachment: fixed from being used with background-size: cover – see details

    You may need to set the background-attachment to scroll on iOS devices or smaller screens.

    @media only screen and (max-width: 1024px) {
      /* Add your Mobile Styles here */
      .avia_mobile .avia-full-stretch {
          background-attachment: scroll !important;
      }
    
      .avia-bg-style-fixed {
          background-attachment: scroll !important;
      }
    }

    Best regards,
    Ismael

    in reply to: Lottie #1481692

    Hey extraeyes,

    Thank you for the inquiry.

    Are you using the Lottie Animation element? You just need to download the .lottie or .json file, then upload it to the element by clicking Insert Animation under Content > Lottie Animation > Choose A Lottie Animation in the Lottie Animation element.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Themeforest Theme Issue: Frontend Not Updating #1481691

    Hi,

    We tried editing the home page and it seems to be updating correctly. Which element are you trying to edit? Please make sure to purge the cache before checking.

    Best regards,
    Ismael

    in reply to: Layout Question For Grid Row Element #1481690

    Hi,

    Thank you for the inquiry.

    Have you tried using the Layer Slider element? You can also add an Image element and manually position it as fixed using custom css.

    https://www.w3schools.com/css/css_positioning.asp

    Best regards,
    Ismael

    Hi,


    @Maspelin
    : For the other site, you can try this css code:

    #top .menu-item-search-dropdown > a.avia-svg-icon svg:first-child {
        z-index: 100;
        fill: #ffffff;
        left: -8px;
        pointer-events: none;
    }

    If the issue persists, please don’t hesitate to open another thread.

    Best regards,
    Ismael

    in reply to: Enfold full width logo in header #1481688

    Hi,

    You can add this css code to make the logo fullwidth:

    .logo, .logo img {
        width: calc(100vw - 100px);
    }

    Best regards,
    Ismael

    in reply to: Mega Menu Styling wie andere Website #1481573

    Hi,

    Sorry for the delay. Unfortunately, the menu layout you’re after is not possible with the default mega menu feature. You may need to install third-party menu extensions such as Ubermenu, Quadmenu or Max Mega Menu. Please check the links below:

    https://wpmegamenu.com/
    https://quadmenu.com/
    https://www.megamenu.com/

    Best regards,
    Ismael

    in reply to: Add social icon #1481572

    Hi,

    Glad to know that you managed to make this work! Let us know if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: Enfold full width logo in header #1481571

    Hi,

    Thank you for the update.

    You can start by setting Enfold > Header > Header Layout > Menu and Logo Position to Logo center, Menu below. This won’t make the logo full width, but it will center-align it. To remove the menu, add this css code:

    #header_main_alternate { display: none; }
    

    The maximum number of columns per row is 5. We recommend using the 1/4 Column element and displaying the items in two rows. If you really need to display 8 columns in a row, you can manually create a flexbox.

    https://css-tricks.com/snippets/css/a-guide-to-flexbox/

    Best regards,
    Ismael

    in reply to: Adding click ID to Button elemen #1481570

    Hey envis,

    Thank you for the inquiry.

    You can apply a unique ID or class name to the button in Advanced > Developer Settings > Custom ID / Custom CSS Class field. Please check the documentation below:

    https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support

    Best regards,
    Ismael

    in reply to: Portfolio grid sort by page order #1481569

    Hey GavinGriffiths,

    Thank you for the inquiry.

    The Page Order field is not available in the Portfolio post type by default, but you can add it using this filter in the functions.php file:

    /* Change portfolio post type settings */
    function avf_portfolio_cpt_args_mod($args) {
    	$args['supports'][] = 'page-attributes';
    	return $args;
    }
    add_filter('avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod');
    

    Best regards,
    Ismael

    Hey Enfoldfanatic,

    Thank you for the inquiry.

    We found script errors in the console which might be related to the issue. The error is generated from these scripts:

    <script>
        jQuery(window).load(function() {
            jQuery('#wrap_all img.avia_image').removeAttr('title');
        });
    </script>
    <script>
        jQuery(window).load(function() {
            jQuery('a').removeAttr('title');
            jQuery('img').removeAttr('title');
        });
    </script>
    

    What happens when you remove the scripts or replace them with the following code?

    <script>
      jQuery(window).on('load', function() {
        jQuery('#wrap_all img.avia_image, a, img').removeAttr('title');
      });
    </script>
    

    Best regards,
    Ismael

    in reply to: Breadcrumb – Home Link #1481567

    Hi,

    Thank you for opening another thread.

    We adjusted the filter a bit. Please try it again:

    function avia_breadcrumbs_trail_mod($trail)
    {
        if ( is_product() || is_product_category() ) {
            $trail[0] = '<a href="https://shop.akhurst.com/" title="Product Page" rel="">Home</a>';
        }
        return $trail;
    }
    add_filter('avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 1);

    Best regards,
    Ismael

    in reply to: Change button size in top bar #1481565

    Hi,

    Thank you for the update.

    Try to add this css code to further decrease the font size of the elements in the top bar and adjust its height.

    @media only screen and (max-width: 768px) {
    
      /* Add your Mobile Styles here */
      #top #header_meta a,
      #top #header_meta li,
      #top #header_meta .phone-info {
        font-size: 13px;
      }
    
      #top #header_meta .phone-info {
        padding: 0;
        margin: 0;
      }
    
      #top #header_meta .sub_menu {
        line-height: 16px;
      }
    }

    View post on imgur.com

    Best regards,
    Ismael

    Hi,

    Yes, the fallback should work as long as there is a text block in all of the posts. If not, you’ll need to define the excerpt manually. To display the title, make sure to select the correct option in the Define Blog Grid layout settings.

    Best regards,
    Ismael

    Hey kalla77,

    Thank you for the inquiry.

    Have you tried unsetting the default item?

    function my_woocommerce_catalog_orderby( $orderby ) {
            unset($orderby["default"]); // remove default item
    	unset($orderby["menu_order"]);
    	unset($orderby["rating"]);
    	unset($orderby["rand"]);
    	unset($orderby["id"]);
    
            return $orderby;
    }
    add_filter( "avf_wc_product_order_dropdown_frontend", "my_woocommerce_catalog_orderby", 20 );

    If you can promote the user to an admin account, we’ll try to it further.

    Best regards,
    Ismael

    in reply to: Formatierung #1481562

    Hey hm.stedler,

    Thank you for the inquiry.

    Have you tried using the 1/2 Column element from the Advanced Layout Builder? You can add two 1/2 Columns side by side, place the text in the first column, and the image in the second. Let us know the result.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: GALLERY OUTLINE and #1481561

    Hi,

    The default wp-login or wp-admin redirects to 404. Please include the custom login URL in the private field.

    Best regards,
    Ismael

    in reply to: Change color of menulinks #1481419

    Hey dorisb123,

    Thank you for the inquiry.

    The main menu should be editable in the Enfold > Advanced Styling panel. If the issue persists, try to toggle or temporarily disable the Enfold > Performance > File Compression settings, then deactivate the cache plugin. Let us know the result.

    Best regards,
    Ismael

    Hi,

    Thank you for the info @mediaformers!

    Best regards,
    Ismael

Viewing 30 posts - 601 through 630 (of 66,027 total)