Forum Replies Created

Viewing 30 posts - 22,981 through 23,010 (of 35,206 total)
  • Author
    Posts
  • in reply to: Partner/logo element mobile #1069916

    Hi,
    Thanks, that is nice to hear.
    I assume we can close this now, but I like to ask anyway. Shall we close this then?

    Best regards,
    Mike

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

    Hi,
    Please see the screenshot in Private Content area, of before and after to ensure we are talking about the same element. If after clearing your browser cache it still doesn’t work, then Please include a admin login in the Private Content area so we can take a look.

    Best regards,
    Mike

    in reply to: Enfold 4.4.1 & Gutenberg #1069797

    Hi,
    Glad to hear, thanks 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: Double sided (switching) image effect? #1069796

    Hi,
    Unfortunately the element is now set up for “transform” which is for 2D or 3D animation, and what you want is “transition” which is for values to occur smoothly over a specified duration. But they can not be just switched out one for the other, the HTML also needs to be different.
    But we can replace the image on the page with a transition on hover, this css will only target the one image on the page of the surfer girl, and on hover will slowly swap it out. To test add this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.page-id-10723 .avia-image-container.avia-builder-el-7 img:hover {
    opacity: 0 !important; 
    transition: opacity 1s linear !important; 
    }
    #top.page-id-10723 .avia-image-container.avia-builder-el-7 {
    background: url('https://new.restube.com/wp-content/uploads/2018/11/MG_0710-1-845x684.jpg') !important;
    background-size: contain !important; 
    }

    If you want to use this on other images you will need to set a custom class to each image so it can be targeted, with the Enfold Theme Options > Layout Builder > Show element options for developers
    and I can explain the code so you can do it.

    Best regards,
    Mike

    in reply to: Accordion Filter Tabs CSS #1069781

    Hi,
    Sorry to do so would be some intensive code that is beyond what we can offer here, but you could hire a freelancer.

    Best regards,
    Mike

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

    Hi,
    That was the idea, the thought was to change the max width for the mobile header layout so that it would cover phones in landscape>
    Instead, try going to: Enfold Theme Options > Main Menu > General > Menu Items for mobile, and change to 990px
    2019-02-20-214456

    Best regards,
    Mike

    Hi,
    Please copy the contact folder: \enfold\config-templatebuilder\avia-shortcodes\contact\
    to your new shortcodes folder so it will be like: /enfold-child/shortcodes/contact/ (this assumes that your child theme is /enfold-child/)
    then edit line 460 in contact.php
    search for “Thank you for your Message!”
    2019-02-20-205045
    Then clear your browser cache and check.
    The reason we want to copy the folder to your child theme and then edit the file there so so the next time you update you won’t lose the changes. If you make the changes to the parent theme, it will also work, until you update, then you will lose the changes.
    All of the elements can be modified this way.
    If you would like help with this, Please include a admin login & FTP access in the Private Content area.

    Best regards,
    Mike

    in reply to: Partner/logo element mobile #1069764

    Hi,
    Thanks, I found the error, Please clear your browser cache and check.

    Here’s the final css:

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

    Best regards,
    Mike

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

    Hi,
    Sorry, I have not done anything to your site, only because I couldn’t think of a solution for the two types of order in the same element. But I did see your site on Google, it was number 20.

    Best regards,
    Mike

    in reply to: Make the Menu Overlay Transparent #1069762

    Hi,

    @marcoricci76
    , I believe you are talking about this element:
    2019-02-20-185954
    the reason the sub-heading is in multiple lines is because the “.slideshow_caption” element is only 42% of the page, this will correct that.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .slideshow_caption {
        width: 100% !important; 
    }

    To change the font, please use this css:

    .slideshow_caption h2.avia-caption-title,.slideshow_caption .avia-caption-content {
         font-family: 'Roboto' !important; 
    }

    Please adjust the font to suit, and Then clear your browser cache and any cache plugin, and check.
    Please note that if you are using a font that is not already displaying on the same page, you should upload it to Enfold Theme Options > Import/Export > Custom Font Manager to force it to display.

    Best regards,
    Mike

    in reply to: Issue with shopping buttons #1069759

    Hi,
    Thanks, I checked again, and it’s working as my screenshot shows on the Shop Demo.
    Please include a link to your page so I can check what is wrong.
    Your HTML doesn’t provide enough information.

    Best regards,
    Mike

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

    Hi,
    @Anton, I would not recommend including your login here, as this is not your post, your details will not be private.
    Perhaps it would be better to open your own thread.
    I don’t know why it would not work on an iPad, but I did find a topic that points to scroll not working with iPad, unfortunately, I don’t have an iPad to test with.

    Best regards,
    Mike

    in reply to: Partner/logo element mobile #1069509

    Hi,
    Thanks, but your link is now a 404 error, I couldn’t find the element in the pages or posts, please check.

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, to replace the breadcrumb title, Try adding this code to the end of your functions.php file in Appearance > Editor:

    function replace_breadcrumb_title(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
      $(".breadcrumb-title").text("Je bent hier:");
     });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'replace_breadcrumb_title');

    To change the auto-respond header “Thank you for your message” you will need to change line 460 in \enfold\config-templatebuilder\avia-shortcodes\contact\contact.php
    Then add the directory /shortcodes/ to your child theme,
    then copy the /contact/ directory to it with all 3 files in it, contact.js, contact.css, contact.php
    so you will have this path: /enfold-child/shortcodes/contact/
    Then add this code to the end of your functions.php file in Appearance > Editor:

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
      $template_url = get_stylesheet_directory();
          array_unshift($paths, $template_url.'/shortcodes/');
    
      return $paths;
    }

    now your child theme contact element will overwrite the theme contact element, you can read more here.

    Best regards,
    Mike

    in reply to: WooCommerce Product Page Display Error #1069274

    Hi,
    Perhaps this plugin would help: YITH WooCommerce Tab Manager or this one: Woocommerce Custom Tabs
    I don’t believe trying to replace the advanced layout editor will help with woocommerce tabs.

    Best regards,
    Mike

    in reply to: Accordion Filter Tabs CSS #1069270

    Hi,
    Sorry for the late reply, I took a look at your page and I believe the issue is that you have too many tags. The tags are meant to work like a single line of words, like breadcrumbs along the top of the element, where you might have a handful of keywords to choose from.
    Please see our demo:
    2019-02-19-223828
    I would recommend reducing your keywords.
    But one option would be to use this css in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.page-id-9 .av-accordion-tab-sort-filter .taglist a {
        display: inline-block !important; 
        width: 31% !important; 
    }

    This would be the expected results:
    2019-02-19-230818
    Best regards,
    Mike

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

    Hi,
    Sorry I’m not sure how we can achieve having chronological order and random order for the same element on the same page, because when we added the function to make the element have random order it affected the element on the whole site, we don’t have a way to tell it random and chronological in two sections on the same page.
    I hope this makes sense.

    Best regards,
    Mike

    Hi,
    Thanks for the login, I took a look and also tried to research possible reasons for it but didn’t find any answers.
    When I look at your page source code the “locations” is not in the code:
    2019-02-19-214555
    and as you said, even switching to the Twenty Seventeen theme didn’t make it show, so it’s safe to say this is an issue with the plugin. Since you have the Pro version, I would recommend asking The Events Calendar support, as this may be something they know about.
    Sorry I wasn’t more help.

    Best regards,
    Mike

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

    Hi,
    Thank you, once we hear back from the dev team I will post their solution here, but it may take a couple of days.
    Thank you for your patience.

    Best regards,
    Mike

    in reply to: Partner/logo element mobile #1069249

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

    @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: 25%!important;
    }
    .responsive #top #wrap_all .avia-content-slider-odd .slide-entry {
        clear: none !important; 
    }
    }

    2019-02-19-204906
    If this doesn’t help, please include a admin login in the private content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: Menu submenu active state #1069247

    Hi,
    The script above was to remove the Die ZSG highlighting when on the pages ZVEI-Akademie, Publikationen, & e-Statistik
    When reloading the page it might take a second for the script to fix the menu.
    I took another look and it’s working for me when clicking or reloading the page, but I do note that your page loads a little slow so there is a flash of red on Die ZSG.
    You may not experience this if you use a caching plugin to load the site quicker, I assume that you are not right now.

    Best regards,
    Mike

    in reply to: Enfold 4.4.1 & Gutenberg #1069245

    Hi,
    I see that you are using Enfold v4.4.1 with WordPress v5.0.3, you will need to update Enfold to the latest version.
    Since your version of Enfold is using the old Envato API instead of the Token, which is now used, you will need to manually update.
    You can update via FTP or with a plugin called Update Theme and Plugins from Zip File, Please note that if you update via FTP, you will need to remove the old theme folder “enfold” first (via FTP) then upload the new “enfold” folder at /wp-content/themes/enfold/
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.

    Here are the steps to update with the plugin
    *Please ensure your “PHP Max Upload Size” is at least 20mb, because Enfold is 16.7mb.
    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

    in reply to: Hide product warning #1069241

    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: 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

Viewing 30 posts - 22,981 through 23,010 (of 35,206 total)