Forum Replies Created

Viewing 30 posts - 22,021 through 22,050 (of 34,223 total)
  • Author
    Posts
  • in reply to: image sizes – page load #1069234

    Hi,
    The srcset is being used for the news thumbnails in your footer, this is the element we are talking about right? If you want to control the sizes in the srcset then the Simple Image Size plugin will allow you to do this.

    Best regards,
    Mike

    in reply to: Mobile: Sticky header and NON-sticky Top Bar #1069226

    Hi,
    @Anton I’m sorry, I was trying to hurry and the jQuery was just the raw script and not formatted for WordPress, if you want to try it try this code below. This works on my localhost, but unless I see the page in question I can’t be sure that the settings are the same.
    The css does make the “header” sticky which includes the topbar. Again I would need to see the site to see why it might not work for you.

    
    function custom_script(){
      ?>
      <script>
     (function ($) { 
      $(window).scroll(function() {    
          var scroll = $(window).scrollTop();
          if (scroll >= 100) {
              $("#header_meta").css('display', 'none');
          } else {
               $("#header_meta").css('display', 'block');
          }
      });
      })(jQuery); 
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');
    

    Best regards,
    Mike

    in reply to: Mobile: Sticky header and NON-sticky Top Bar #1068986

    Hi,
    Sorry for the late reply, I took a look at your example site and then tested what you described on my localhost, and found that we can make the header sticky on mobile with this css:

    @media only screen and (max-width: 800px) {
      .responsive #top #wrap_all #header {
        position: fixed !important; 
      }
    }

    but to hide the top-bar on scroll we can use this jQuery:

    (function ($) { 
      $(window).scroll(function() {    
          var scroll = $(window).scrollTop();
          if (scroll >= 100) {
              $("#header_meta").css('display', 'none');
          } else {
               $("#header_meta").css('display', 'block');
          }
      });
      })(jQuery);

    We could refine it a little better if we could see your Enfold build of the site, have you begun this yet or are you still working on a mockup?

    Best regards,
    Mike

    in reply to: Lost header transparency on mobile devices #1068784

    Hi,
    Sorry for the late reply, I see that you had some css for a transparent mobile header, but I don’t think that it was correct, so I added:

    @media only screen and (max-width: 766px) { 
      .responsive #top #main {margin-top: -80px!important;}
      #top #wrap_all .av_header_transparency {background-color: transparent!important;}
      div#header_main > .container {display: block !important;}
      }

    Please clear your browser cache and check that it is now the way you wanted it

    Best regards,
    Mike

    in reply to: Bottom margin of a column inside a color section on mobile #1068778

    Hi,
    Sorry for the late reply, 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: 767px) { 
    .responsive #top #wrap_all #hardware .flex_column {
    margin-bottom: 0px !important;
    }

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, I couldn’t find the missing elements in your source code, I imagine you have tried disabling your plugins or removing your custom functions?
    Please include a admin login in the Private Content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Header sticky and too big on landscape mobile screens #1068767

    Hi,
    Sorry for the late reply, try adding the orientation landscape to your media queries, such as this:

    @media only screen and (max-width: 812px) and (min-width: 375px) and (orientation: landscape) {
      .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item {
        display: none !important; 
      }
    
      .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item-avia-special {
          display: block !important; 
      }
    }

    Best regards,
    Mike

    in reply to: Single post sidebar not styled #1068761

    Hi,
    sorry for the late reply, for the English sidebar I see the issue is the left side margin, please try this css:

    .sidebar_right .inner_sidebar {
    margin-left: 30px !important; 
    }

    The reason your css is not working for the french pages is because the code is not in the french merged css, I know you said that you added the css, but please try disabling the merged css and check the box at the very bottom of the options page to delete old files.
    then save your theme options and see if it then works, once you have it working you can turn the merged css back on but then save your theme settings again so the file gets built.

    Best regards,
    Mike

    in reply to: Menu submenu active state #1068757

    Hi,
    Sorry for the late reply, I was not able to login, but examining your page shows that “Publikationen” is the child of “Die ZSG” because “Die ZSG” has these classes:
    “current-menu-ancestor current-menu-parent”
    If you hover over “Die ZSG” you will see “Publikationen” under it in the sub-menu, along with “e-Statistik” & “ZVEI-Akademie”.
    You could change how these menu items are related to each other, but I assume this would not be what you want to do.
    So the other option is to remove the parent menu item class when on the child page so the parent is not highlighted, Try adding this code to the end of your functions.php file in Appearance > Editor:

    function remove_parent_menu_highlighting(){
      ?>
      <script>
    (function ($) { 
      $(window).load(function() {
           if ($("body").hasClass("page-id-456")) {    
              $("#menu-item-28165").removeClass('current-menu-item');
          } 
           else if ($("body").hasClass("page-id-9416")) {
             $("#menu-item-28165").removeClass('current-menu-item');
          }
           else if ($("body").hasClass("page-id-9218")) {
             $("#menu-item-28165").removeClass('current-menu-item');
          } 
           else {
        }
      });
      })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'remove_parent_menu_highlighting');

    Best regards,
    Mike

    in reply to: Partner/logo element mobile #1068744

    Hi,
    Sorry for the late reply, if I understand correctly you would link your team to look like this on mobile:
    2019-02-18-212446
    If so then replace your code above with this:

    @media only screen and (max-width: 767px) { 
    .responsive #top #wrap_all .avia-content-slider-odd .slide-entry.slide-parity-even {
        clear: none !important; 
    }
    .responsive #top .avia-smallarrow-slider .flex_column {
        margin: 0px!important;
        width: 50%!important;
    }
    }

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, Thanks for the login, I see that you are using the “Advanced AJAX Product Filters for WooCommerce” plugin and the “WOOF – WooCommerce Products Filter” plugin, which both are product filters, perhaps there is a conflict, have you tried disabling your other plugins?

    Best regards,
    Mike

    in reply to: Picture and text zoom on smartphone #1068727

    Hi,
    If I understand correctly, you would link the first gallery to continue to be in random order, as it is now. But the second gallery you would like it to be in chronological order?
    You are also using the same gallery element for both galleries on the same page, so we would need to find a way to add this option?

    Best regards,
    Mike

    in reply to: image sizes – page load #1068723

    Hi,
    WordPress creates a srcset of images and lets the browser pick the one it wants to use. You could control the image sizes with the Simple Image Size plugin.
    Another option would be to disable the images srcset, Try adding this code to the end of your functions.php file in Appearance > Editor:

    //disable responsive images srcset
    function disable_srcset( $sources ) {
        return false;
    }
    add_filter( 'wp_calculate_image_srcset', 'disable_srcset' );

    Best regards,
    Mike

    in reply to: Zoom on mobile devices #1068709

    Hi,
    Glad 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 under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Custom Link in Menu to Hidden Color Section not working? #1068707

    Hi,
    Thanks for the login, but I’m unable to add the function to your functions.php, your site says we should try via FTP.
    So please include a FTP login in the Private Content area.

    Best regards,
    Mike

    in reply to: full width sub menue styling with :visited #1068706

    Hi,
    The “:visited” would have remembered that setting until the cache was cleared, so changing the color for the next section would have been hard because there is no way to undo it.
    If you were not using the plugin I would have suggested using the built-in classes for the menu colors with css, such as:
    “current_page_item” & “current-menu-item”
    I’m glad that it worked out, I assume we can close this now, but I like to ask. Shall we close this then?

    Best regards,
    Mike

    in reply to: Image disappears when menu at full size #1068684

    Hi,
    I changed the transparent logo path at: Enfold Theme Options > Header > Transparency Options > Transparency Logo
    There are two places to set the logo, the other one is at: Enfold Theme Options > Logo
    Please see the old and new paths in the Private Content area.

    Best regards,
    Mike

    in reply to: Enfold 4.5.4 Widgets with Shortcodes not visible #1068677

    Hi,
    Thank you for sharing this, in my report I had pointed out that if you add a shortcode to the body, the widget shortcode would then show.
    But I’m glad you were able to confirm this.

    Best regards,
    Mike

    in reply to: Website content no longer viewable #1068671

    Hi,
    Thanks for the updates, I took a look at your site and everything seems in order. I assume we can close this now, but I like to ask. Shall we close this then?

    Best regards,
    Mike

    in reply to: Double sided (switching) image effect? #1068670

    Hi,
    Please include the url to the page in question so we can examine the elements.

    Best regards,
    Mike

    in reply to: Tab Section – increase space for tab title #1068667

    Hi,
    Glad to help, I assume we can close this now, but I like to ask. Shall we close this then?

    Best regards,
    Mike

    in reply to: Make the Menu Overlay Transparent #1068381

    Hi,
    Please remove the css above and use this instead:

    #top #header .av-main-nav > li > ul.sub-menu > li > a span.avia-menu-text {
    color: #808080 !important;
    }
    #top #header.av_header_transparency .av-main-nav > li > a span.avia-menu-text {
    color: #fff !important;
    }
    #top #header .av-main-nav > li > a span.avia-menu-text {
    color: #000 !important;
    }

    Best regards,
    Mike

    in reply to: Enfold 4.5.4 Widgets with Shortcodes not visible #1068374

    Hi,
    Sorry about the confusion with the GitHub link, it is there for the mods and dev team to easily go to the report, I also linked the report to your post. You can’t see it because it’s a closed group, I should have added a note below it to explain.

    So are you saying that you integrated a white space shortcode to the page so that the widgets work? I would like to see this and test it on my localhost so that I can report it. It may help the dev team solve this.
    Please include admin login in the Private Content area so we can see.

    Best regards,
    Mike

    Hi,
    I’m glad that we figured it out, I guess we could have added the anchors to a code block element and moved them down more manually, and at one point if the top of the sub-menu had not been transparent we would not have seen the gap. CSS offset margins for anchors would have been the other solution here, but it is limited to screen size and browser. You did some very good testing, which many people don’t do, so we would have seen those limitations. I suggested the “Page Scroll to ID” plugin because many threads had reported success with it, and now that we know about the “300 milliseconds delay for scrolling to target on page load” for Safari, it seems quite simple.
    I’m glad it worked out, thank you for your patience.

    Best regards,
    Mike

    in reply to: Demo Loading Help… #1068101

    Hi,
    Sorry for the late reply, I took a look at your site but didn’t find Enfold installed.
    Sometimes the php settings prevent the demos from installing,
    check these on your installation:
    php_value post_max_size 512M
    php_value upload_max_filesize 512M
    php_value max_input_vars 5000
    php_value max_execution_time 300
    php_value max_input_time 300
    php_value memory_limit 512M
    Your webhost will be happy to help set these for you.

    Also check your PHP settings to see if the secure options are activated.
    “allow_url_fopen, “allow_url_include” and “register_globals” are “off”
    Try turning these “on”.

    Best regards,
    Mike

    in reply to: Zoom on mobile devices #1068083

    Hi,
    is that since the code solution above, or did that not help?
    The solution above would affect every page & post.

    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 under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: full width sub menue styling with :visited #1068072

    Hi,
    I think I sorted out the “Jump-to-Nirvana” problem on Mac in the other thread, please check there.

    Best regards,
    Mike

    in reply to: Top Menu all contents are not showing. #1068071

    Hi,
    Thanks, I took a look and while it’s a little hard to see, I think I do. I looked through all of the css on your page and I don’t see anything that could cause this. I also researched this but all I could find is “text-rendering”, it’s really not used much, but you could try it.

    h2.woocommerce-loop-product__title {
        text-rendering: optimizeLegibility !important; 
    }

    or you could try this:

    h2.woocommerce-loop-product__title {
        font-weight: 600 !important; 
    }

    Best regards,
    Mike

    in reply to: Website content no longer viewable #1068070

    Hi,
    Thanks for the login, your child theme is still there, I activated it for you, but your pages don’t seem to be working because you are using WordPress v5.0.3 with Enfold v4.4 you will need to update. We are now at v4.5.4
    I see that you have PHP Version: 5.5.38, the minimum recommended version is v5.6, v7.0 is better.
    Here are the steps to update with the plugin
    First go to your Theme Forest account and download the “Installable WordPress file only”.
    Downloading-the-wrong-zip
    1: please install the plugin: Update Theme and Plugins from Zip File
    2018-10-20-104358
    2: then go to WordPress > Themes > Add New > Upload
    2018-10-20-104649 2018-10-20-105401
    3: after the install, click “Return to Themes page” (NOT Activate)
    2018-10-20-105705
    4: success:
    2018-10-20-110104

    Best regards,
    Mike

Viewing 30 posts - 22,021 through 22,050 (of 34,223 total)