Forum Replies Created

Viewing 30 posts - 961 through 990 (of 34,859 total)
  • Author
    Posts
  • in reply to: Background color on hover of second submenu #1478800

    Hi,
    Unfortunately, there is not a way to add images to the top bar menu like the mega menu.

    Best regards,
    Mike

    in reply to: home page config #1478798

    Hi,
    When I examine while logged in there is no delay in the header slider to show, these does occur when logged out, this is a typically sign of a caching plugin.
    I see that your WP Rocket is still active, when I disable it and clear my cache while logged out this doesn’t occur.
    I left it disabled, please clear your browser cache and check.
    If you want to examine further, try disabling each WP Rocket setting one at a time and clear your browser cache and check until you find the setting causing the issue.

    Best regards,
    Mike

    in reply to: Change the Blog List Layout icon #1478795

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Enfold 7.0 bug #1478701

    Hey mvi,
    I don’t see a difference for the scrolldown arrow between your two sites.
    Try this filter instead:

    add_filter('avf_default_icons','avia_replace_standard_icon_scrolldown', 10, 1);
    function avia_replace_standard_icon_scrolldown($icons)
    {
    $icons['svg__scrolldown']	 = array( 'font' =>'flaticon_culina', 'icon' => 'uf106');
    return $icons;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    in reply to: Since update 7.0 SVG icons problem #1478700

    Hey Olivier SIA09,
    We would need a admin login to examine, but I believe that if you examine this new filter for v7.0 and adjust it should work
    This filter changes the search icon:

    add_filter('avf_default_icons','avia_replace_standard_icon', 10, 1);
    function avia_replace_standard_icon($icons)
    {
    $icons['svg__search']	 = array( 'font' =>'svg_entypo-fontello', 'icon' => 'leaf');
    return $icons;
    }

    also note that the new built-in, svg icons are using “words” instead of the charter codes, if you hover over the icons in the icons element the title will show you the “words” if you have uploaded your own fontello icons use your charter codes
    You can see the list here: /enfold/includes/config-enfold/init-base-data.php
    Screen Shot 2025 03 05 at 4.06.41 PM
    these are the social icons:
    Screen Shot 2025 03 05 at 4.10.02 PM

    Best regards,
    Mike

    Hi,
    When creating a product with the ALB and you want to show the thumbnails under the main image you will first need to ensure that you have Enfold Theme Options ▸ Shop Options ▸ Product gallery ▸ WooCommerce 3.0 product gallery enabled.
    Enfold Support 5875
    Then add this css to your child theme stylesheet or the theme option Quick CSS

    .single-product .flex-control-thumbs li {
        display: flex !important;
        float: left;
    }

    then add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_shortcode( 'avs_product_gallery_hook', 'avs_product_gallery_hook_callback' );
    function avs_product_gallery_hook_callback( $atts ) {
    ob_start();
    woocommerce_show_product_images();
    $content = ob_get_clean();
    return $content;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    and add this shortcode to your page where you want the image to show in a code block:
    [avs_product_gallery_hook]
    Enfold Support 6606
    Enfold Support 6608
    the switch occurs on click and not hover, as per woocommerce.
    This will only work on product pages and not shop or archive pages, perhaps there is a plugin that will do that but you will prob need to also use the default editor instead of the ALB.

    Best regards,
    Mike

    in reply to: How to remove this linefrom no transparency header? #1478505

    Hey Jak73,
    Your page requires a login to view, please provide.

    Best regards,
    Mike

    in reply to: Centre Product Title & Price on Mobile #1478504

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Items in burger menu to align to the top #1478503

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    your test product doesn’t have a gallery, I see other product images at the bottom of the page in columns, but these are not part of the product gallery, so it is not possible.
    It looks like you built the product with the ALB, try using the default editor and add your gallery under the product image in woocommerce, this should give you the effect you are looking for, as I understand.

    Best regards,
    Mike

    in reply to: Dimension of thumbnails in grid of category archive #1478500

    Hi,
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

      function custom_script() { ?>
      <script>
      (function($){
        $('#top.archive .main-title.entry-title a').each(function() {
          var text = $(this).text();
          $(this).text(text.replace('Archiv für: ', '')); 
      });
      })(jQuery);
      </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_script', 99 );

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    in reply to: AJAX reload on payment method change in checkout page #1478498

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Kritischer Fehler #1478407

    Hey Whippert,
    There mat may be a few issues, first lest start with if you are using the installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    If that is true, has your host enabled the PHP ZipArchive Extension?

    Best regards,
    Mike

    in reply to: Version 7.0 – Strange search button text display #1478404

    Hi,
    Please leave the search icon enabled, but remove the css above, and disable any caching plugins so we can check again.

    Best regards,
    Mike

    in reply to: Version 7.0 – Strange search button text display #1478400

    Hi,
    I can not reproduce this on my demo site, and your site seems to have the search icon disabled. One other user had the search icon with a z-index of “-1”
    perhaps this is also your issue, this css seems to help:

    #top .menu-item-search-dropdown > a.avia-svg-icon svg:first-child, #top .menu-item-search-dropdown > a.avia-svg-icon img[is-svg-img="true"] {
        z-index: 1;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Missing search icon after update #1478399

    Hey renita01,
    I can not reproduce this on my demo site, but your two sites have the search icon with a z-index of “-1”
    this css seems to help:

    #top .menu-item-search-dropdown > a.avia-svg-icon svg:first-child, #top .menu-item-search-dropdown > a.avia-svg-icon img[is-svg-img="true"] {
        z-index: 1;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hey Matt,
    This seems to be a duplicate thread that we answered, thinkjarvis also points out that

    on sites where bots have alreaedy hit and created a sitemap for them to crawl – They will continue to try and crawl those links because they already know they exist.
    On new Enfold sites where Bots can no longer crawl the links – All is fine because there is no way for them to access the filter urls in the first place, therefore do not know the links exist.

    The Dev Team writes:
    On shop overview page the dropdowns for sort by and display do not have a href=” but only a data-href and link is done by js.
    When I check my install there is no link:
    Screen Shot 2025 03 01 at 6.09.07 AM

    Best regards,
    Mike

    in reply to: Menu item to break over 2 lines #1478394

    Hey ausgesonnen,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #menu-item-96 a .avia-menu-text {
        white-space: normal;
        word-wrap: break-word;
        display: block;
        width: 150px;
        text-align: right;
        line-height: 15px;
    }
    

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.
    adjust to suit
    Screen Shot 2025 03 02 at 11.37.32 AM

    Best regards,
    Mike

    Hey Silje,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .single-product .avia-image-overlay-wrap:hover {
    transform: rotateY(180deg);
    }

    before hover:
    Screen Shot 2025 03 02 at 11.25.00 AM
    on hover:
    Screen Shot 2025 03 02 at 11.26.01 AM

    Best regards,
    Mike

    in reply to: Link #1478392

    Hi,
    I find no links in your product: https://www.nodem-it.com/product/cisco-meraki-mt20-hw/
    for your blog post: https://www.nodem-it.com/personnalisation-du-support-materiel-i2c/
    it is best to use the steps above, which you seem to have already done, when I check.

    Best regards,
    Mike

    in reply to: Getting enfold form to return data #1478391

    Hey tonyiatridis,
    The login is not working, please check.
    Typically, if you are using your host email and you are not using a smtp plugin the host SpamAssassin spam blocker will delete the email before it gets to your email.
    If you are not using your host email domain and using gmail or such, they will delete your email as spam.
    WP Mail SMTP typically works well but you must use your smtp email login and password, see the plugin for configuration.

    Best regards,
    Mike

    in reply to: Supporting Enfold with own plugin #1478389

    Hi,
    @Jason this is not currently possible, if you would like to request this feature the Dev Team has opened a new Github Feature Request for users to place requests and follow them as the Dev Team reviews them.

    Best regards,
    Mike

    in reply to: Item in burger menu don’t change color #1478387

    Hey ausgesonnen,
    Mobile devices don’t have a “hover” color, only desktop devices do.

    Best regards,
    Mike

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: One background image not showing on mobile #1478385

    Hey northorie,
    I’m nt sure what image is showing on mobile, perhaps a screenshot would help.

    Best regards,
    Mike

    in reply to: Widget link wrong hover color #1478384

    Hi,
    Works when I test:
    Screen Shot 2025 03 02 at 8.33.39 AM
    try again or provide admin login.

    Best regards,
    Mike

    in reply to: desktop view – widget and menu alignment #1478383

    Hi,
    duplicate quesion: https://kriesi.at/support/topic/desktop-view-menu-and-burger-to-align-with-content/

    #top #header .av-main-nav > li > a .avia-menu-text {
        right: -10px;
    }

    adjust to suit.

    Best regards,
    Mike

    in reply to: desktop view, Menu and burger to align with content #1478382

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #header .av-main-nav > li > a .avia-menu-text {
        right: -10px;
    }

    adjust to suit.

    Best regards,
    Mike

    in reply to: Items in burger menu to align to the top #1478381

    Hi,
    Please change the padding to suit.

    Best regards,
    Mike

Viewing 30 posts - 961 through 990 (of 34,859 total)