Forum Replies Created

Viewing 30 posts - 16,951 through 16,980 (of 35,071 total)
  • Author
    Posts
  • in reply to: Woocommerce Category Archive Sidebar not visible #1214980

    Hi,
    Sorry for the late reply and thanks for the FTP access, I updated your theme but this didn’t help, I have asked the rest of the team for their thoughts, thank you for your patience.

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, I have tested several woocommerce hooks to add the sub-menu shortcode which works for the product archive pages but it brakes the layout, so I’m looking into why this is and if there is another way to do this. I appreciate your patience, thank you.

    Best regards,
    Mike

    in reply to: Align last element in equal height columns to bottom #1214337

    Hi,
    Ok, seems like it should be simple but I’m missing something or the equal height javascript is doing something.
    So please remove the css above and add this script, it gets the height of each text section in each row and sets them the same, thus moving the button to the same place in each cell.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_height_script(){
      ?>
      <script>
    (function($){
      $(window).load(function(){
      	$('.flex_column_table.av-equal-height-column-flextable').each(function(){  
         var $columns = $('section.av_textblock_section ',this);
         var maxHeight = Math.max.apply(Math, $columns.map(function(){
             return $(this).height();
         }).get());
         $columns.height(maxHeight);
    });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_height_script');

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: sidebar crashes site #1214327

    Hi,
    If you want to go back to the css solution please disable the plugin so we can try again.

    Best regards,
    Mike

    in reply to: 2 Problems with ALB code for LearnDash, please help? #1214317

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    Hi,
    Thanks for the link, I do see that the icons in the tab are not animating, I have submitted an issue report to the dev team about this using a similar example from a different thread.
    I will report here when I hear back from them.

    Best regards,
    Mike

    in reply to: Column Spacing #1214312

    Hi,
    I’m not sure what you mean by “indipendentely of their number”
    Perhaps if you linked to a test page that we can see what you want to do.

    Best regards,
    Mike

    in reply to: Link to a tab in a Tab Section #1214306

    Hi,
    Thanks for the login, I disabled your custom function and added this one to your child theme functions.php

    function custom_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
    $("a.av-section-tab-title").each(function() {
       var $this = $(this);       
       var _href = $this.attr("href"); 
       var itemId = _href.substring(1, _href.length);
       $this.attr("id", itemId);
    });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Now directly going to /kundcase/#foersaekring opens the tab and scrolls to it.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Custom Post Category Icon #1214298

    Hi,
    Thanks for the login, I adjusted your css to this and now it works:

    .category-elementary-school span.iconfont:before {
      content: "\e800"; 
      font-family: yf-categories;
      color: #fff;
      position: relative;
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Header-Titel und Linkstruktur (Breadcrumb) #1214287

    Hi,
    At Enfold Theme Options > Select Your Editor
    2020-05-19_051551.png

    Best regards,
    Mike

    in reply to: 2 Problems with ALB code for LearnDash, please help? #1214038

    Hi,
    Glad to hear this is helping, unfortunately we can’t move the css to your child theme. Typically, we would override css with the !important; but there is no solution for removing the !important; without another one.
    So I followed @jacqueschoquette’s suggestion and installed the Admin CSS MU plugin and copied all of the modified /avia-builder.css css to it, and then added this script to remove the original css

    function custom_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
        $("link[href*='/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/css/avia-builder.css']").remove();
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    I tested this on your site and it is working and you should not have to update this file after the next update.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Icon box icon #1214023

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Woocommerce Category Archive Sidebar not visible #1214022

    Hi,
    Please include FTP access in the Private Content area.

    Best regards,
    Mike

    Hi,
    Thank you for the feedback, try changing is_archive() to is_product_category() in the code.

    Best regards,
    Mike

    in reply to: Image wirh link jumps onmouseover #1214018

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Align last element in equal height columns to bottom #1214012

    Hi,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .flex_column_table_cell.av-equal-height-column .avia-button-left {
    	position: absolute !important;
        left: 0 !important;
        bottom: 0 !important;
    }

    After applying the css, Please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Thank you, for the Product gallery were you using the “Default enfold product gallery” or the “WooCommerce 3.0 product gallery” or did it not matter?

    Best regards,
    Mike

    in reply to: Woocommerce Category Archive Sidebar not visible #1214002

    Hi,
    Thanks for the login, this is odd, the sidebar is not created on the archive page, I see that you are using v4.7.2, perhaps this was an error in it, please try updating to v4.7.4

    Best regards,
    Mike

    in reply to: Stop testimonials slider from jumping around #1213976

    Hi,
    For the large desktop testimonial slider set the element visibility to hidden on small screens
    2020-05-18_045413.png
    For the small mobile testimonial slider set the element visibility to hidden on large screens
    2020-05-18_045524.png

    Best regards,
    Mike

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Which license on which website #1213898

    Hey Karin_Tara,
    Sorry for the late reply, I believe you are thinking of this link but I don’t think it will tell you which domain your license goes to.
    I recommend writing the 4 licenses down and assign domains to them on the paper and if it ever comes up again you’ll know which licenses you intend to use for each domain.

    Best regards,
    Mike

    in reply to: Layer Slider height mobile and tablet #1213897

    Hey Andrea,
    Sorry for the late reply, as I understand your question, you would like the layerslider to be full visual height on mobile as it is on desktop. For the layerslider responsive means that the slider is scaled down to show the full slider on mobile, that is why it is a box across the top of your page instead of a full screen on mobile.
    The best solution for this is to have two sliders, one for mobile portrait screens and one for desktop landscape screens. For the mobile slider try the canvas size 425px by 500px it seems to work well.
    2020-05-17_211410.png
    You can set the desktop slider to hide on mobile in the layerslider slider settings:
    2020-05-17_212500.png
    and you can set the mobile slider to hide at over 990px like this:
    2020-05-17_212734.png

    Best regards,
    Mike

    in reply to: Not getting pagination buttons #1213895

    Hi,
    Sorry for the late reply and thanks for the login, when you look at the pagination options please note this statement:

    Pagination might not work as expected when there is more than one blog posts element on a page, a post or on the blog page.

    on the same page your slider is showing posts, so I believe that this is causing a known issue. Try removing the slider to see if the pagination then shows.
    I also checked your /work-with-me/ page directly on an Android mobile but the page showed correctly

    Best regards,
    Mike

    in reply to: sidebar crashes site #1213893

    Hi,
    Sorry for the late reply and thanks for the link, I understand you are now using the Q2W3 plugin and not the css:

    aside.sidebar.sidebar_right.alpha.units{
        position: fixed!important;
        width: 400px!important;
        right: 100px!important;
        top: 100px!important;
    }

    Correct? The Q2W3 documentation shows how to disable on mobile
    For screens below 767px you will want the fixed widget disabled and for screen sizes 768px to 1024px you will want to use

        top: 100px;
        width: 250px;

    for it to show well. Does the plugin let you set this?

    Best regards,
    Mike

    in reply to: Image is not changing after selecting variation #1213891

    Hey Jonas,
    Sorry for the late reply and thanks for the login, I had a hard time finding a variable product that had variable images, please link to one product that we can investigate and add variable images to it, perhaps the “Grey Pullover Hoodie” linked below.
    Please see this animation gif to the variable images I mean.
    Video_00012.gif
    you may have to click the image to play.

    Best regards,
    Mike

    in reply to: Custom Post Category Icon #1213889

    Hey MediaMix1,
    Sorry for the late reply and thanks for the link, in my install the only apple icon I have has the bite in it, but with this css you can add it as your default icon:

    span.iconfont:before {
      content: "\e920"; 
      font-family: entypo-fontello;
      color: #fff;
      position: relative;
    }

    2020-05-17_174055.png
    You can follow these steps to find and add a different apple icon if you want.

    Best regards,
    Mike

    in reply to: Image Load #1213886

    Hi,
    Sorry for the late reply, I have checked your page but I didn’t see the “topicpulse” image “blink in”
    I do see that the element animation doesn’t start until in view, often the animation also includes opacity so that might explain the “blink”
    Do you want the animation? Try disabling any animation in the elements on the page and then clearing your browser cache, this might be enough to fix it otherwise we can try blocking any animation that you can’t control from the elements.

    Best regards,
    Mike

    Hey Miki,
    Sorry for the late reply and thanks for the screenshot and link, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 1400px) { 
    .responsive .container {
        max-width: 99% !important; 
    }
    }

    After applying the css, Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: ENFOLD SOCIAL ICONS SHOWING AS BOXES #1213881

    Hi,
    This works for me in incognito and on an Android mobile, I will ask the rest of the team to check on an iPhone.

    Best regards,
    Mike

    Hey opvab,
    Sorry for the late reply, unfortunately, there is not a way to add the secondary menu to the same line as the burger menu, but the social icons are already showing there.
    2020-05-17_163141.png

    Best regards,
    Mike

Viewing 30 posts - 16,951 through 16,980 (of 35,071 total)