Forum Replies Created

Viewing 30 posts - 12,661 through 12,690 (of 34,910 total)
  • Author
    Posts
  • 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: Dealing with a bug with easy loading #1341534

    Hi,
    That might be a good idea, it doesn’t look like there was any security fixes since v5.8.3, so you would have a few versions to choose from.

    Best regards,
    Mike

    in reply to: Error on download and import demo files #1341530

    Hi,
    Thank you for your patience and the login, I have looked at your site and it looks like you tried to install the default Enfold Demo:
    2022-02-20_005.jpg
    But it also looks like you have customized the homepage, so in order to help you we will need to Reset the site and you will lose your changes.
    Another issue is that this is the only demo that doesn’t include all of the images and sliders, so even if I manually install this demo for you, some things will still be missing.
    2022-02-20_006.jpg

    I recommend the Enfold 2017 demo as it includes everything and displays the elements better.
    If you would like me to try to manually install the 2017 demo and you agree to reset the site, please include FTP access in the Private Content area.

    If you like the default demo layout the way it is and want to use it, then I recommend continuing to edit your site adding your own images and sliders, as you would have replaced the demo images anyways.
    I hope this makes sense.

    Best regards,
    Mike

    in reply to: Category in Postslider #1341526

    Hi,
    Thanks for the feedback I adjusted your script to this:

    function blog_categories_above_entry_title() { ?>
        <script>
    (function($){
    $( 'article.post-entry' ).each(function() {
    $( this ).find( '.blog-categories.minor-meta' ).css({'top':'unset'}).insertBefore( $(this).find('.slide-entry-title.entry-title').css({'padding-top':'0'}));
    $('.blog-categories.minor-meta a:contains("Steuerberatung")').css({'color':'yellow'});
    $('.blog-categories.minor-meta a:contains("Rechtsberatung")').css({'color':'red'});
    $('.blog-categories.minor-meta a:contains("Wirtschaftsberatung")').css({'color':'blue'});
    });
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'blog_categories_above_entry_title');

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: submenu formatting – initially placed over main menu #1341523

    Hey aboderc,
    Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #header.av_header_transparency + #main #sub_menu1 {
    	top: 122px;
    }

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

    Best regards,
    Mike

    in reply to: Bug: Checkout Error WooCommerce Compatibility 4.8.1 #1341521

    Hey Thomas,
    Thanks for the link to your site, the JQuery Not Defined error is due to this custom script:

    	(function($) {
    		// wait until everything completely loaded all assets
    		$(window).on('load', function() {
    			// remove the click event
    			$( document.body ).off( 'click', 'a.woocommerce-terms-and-conditions-link' );
    		});
    	}(jQuery));

    2022-02-20_002.jpg
    I see the script has a comment // wait until everything completely loaded all assets but since since jQuery 3.5.1 (window).on(‘load’ is deprecated.
    Try window.addEventListener instead like this:

    // wait until everything completely loaded all assets
    window.addEventListener('DOMContentLoaded', function() {
    (function($) {
    	// remove the click event
    	$( document.body ).off( 'click', 'a.woocommerce-terms-and-conditions-link' );
    });
    }(jQuery));
    });

    So check your functions.php for this script and adjust.

    Best regards,
    Mike

    in reply to: Enfold Price #1341519

    Hi,
    Glad to hear, thanks for considering enfold.

    Best regards,
    Mike

    in reply to: problems with website after migration #1341517

    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: Category in Postslider #1341516

    Hi,
    To move the blog categories I added this script to your child theme functions.php

    function blog_categories_above_entry_title() { ?>
        <script>
    (function($){
    $( 'article.post-entry' ).each(function() {
    $( this ).find( '.blog-categories.minor-meta' ).css({'top':'unset'}).insertBefore( $(this).find('.slide-entry-title.entry-title').css({'padding-top':'0'}));
    });
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'blog_categories_above_entry_title');

    but did you want each category to be a random color or a specific color?
    I see you have 4 post categories.

    Best regards,
    Mike

    in reply to: Changing background while loading the startpage #1341515

    Hi,
    Glad this helped, below you will find a link to a WebPageTest and your images could be smaller, try TinyJPG
    I tested one of your images from the WebPageTest and TinyJPG made it 73% smaller
    2022-02-20_001.jpg
    It looks like you only have about 12 images on your homepage so you could manually do this with FTP, download ▸ TinyJPG ▸ re-upload or you can use the TinyJPG plugin, it’s up to you, I believe you have to signup to use the plugin.
    You would find a caching plugin like WP Fastest Cache will also help, other than that your site seems to load well.

    Best regards,
    Mike

    in reply to: Dealing with a bug with easy loading #1341513

    Hey Dzimnikov,
    Thank you for your patience, since the last Smush update it’s lazy loading script has had a conflict/error this is also true for the siteground lazy loading plugin which is built by Smush (WPMU DEV)
    most people find that it adds a space below sliders on first page load, and other lazy loading issues.
    Smush (WPMU DEV) is working on this on behalf of many Smush Pro users here, I recommend waiting for the next Smush update that will hopefully fix this because we can not edit the Smush plugin from within the theme.

    Best regards,
    Mike

    in reply to: Can't Access Pages from the WordPress Dashboard #1341511

    Hi,
    Thank you for your patience and for the login, I found by deactivating your plugins that this was caused by the Yoast SEO plugin giving the error for the All Pages backend page ERR_INCOMPLETE_CHUNKED_ENCODING
    curiosity, not Posts, Portfolio Items, Media, etc. only Pages?
    I tried to disable each option in Yoast one at a time to find the cause but didn’t, I note that your site is not using https so I wonder if this is relevant, do you plan on adding https?

    Best regards,
    Mike

    Hey hengseroffgroup,
    Thank you for your patience, this sounds like you migrated the images via FTP to the new site, but since the images were not imported via the media library WordPress doesn’t recognize that they are there. WordPress doesn’t have a workaround for this because the images must also be added to it’s database, not just a physical file in a directory.
    There are a couple of plugins that will scan the media library directory and try to import them into the database, but even they say that it is not meant as a solution for FTP uploading.
    You can try this, but you may find that you will need to upload these images through the media library.
    Another solution would be to clone your old site with the plugin Duplicator By Snap Creek this will move your files and database and correctly adjust the Serialized database, the only download side is that if your site is very large you will need the Pro version.

    If this is not the situation, then please explain further and include admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: Contact us page #1341501

    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: CSS issue #1341499

    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: Make menu reappear on mobile when scrolling up? #1341497

    Hey transmodiar,
    You can show the “scroll to top” arrow button on mobile with this css in your Quick CSS:

    @media only screen and (max-width: 767px){
    .responsive #top #scroll-top-link {
        display: block;
    }
    }
    

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

    To show the mobile header on scroll up, Try adding this code to the end of your functions.php file in Appearance ▸ Editor:

    function hide_header_on_scroll_down_show_on_scroll_up() { ?>
        <script>
    (function($) {
      'use strict';
      var $window       = $( window );
      var lastScrollTop = 0;
      var $header       = $( '#header_main' );
      var headerBottom  = $header.position().top + $header.outerHeight( true );
      $window.scroll(function() {
              var windowTop  = $window.scrollTop();
              if ( windowTop >= headerBottom ) {
                  $header.addClass( 'myprefix-maybe-sticky' );
              } else {
                  $header.removeClass( 'myprefix-maybe-sticky' );
                  $header.removeClass( 'myprefix-show' );
              }
              if ( $header.hasClass( 'myprefix-maybe-sticky' ) ) {
                  if ( windowTop <= headerBottom || windowTop < lastScrollTop ) {
                      $header.addClass( 'myprefix-show' );
                  } else {
                      $header.removeClass( 'myprefix-show' );
                  }
              }
              lastScrollTop = windowTop;
      });
    }(jQuery));
    </script>
        <?php
    }
    add_action('wp_footer', 'hide_header_on_scroll_down_show_on_scroll_up');
    

    Then add this code in the General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) { 
    .myprefix-maybe-sticky {
      position: fixed !important;
      top: -100px;
      width: 100%;
      z-index: 999;
      opacity: 0;
      background: #fff;
      transition: 0.3s all;
      box-shadow: 0 2px 3px rgba(0,0,0,0.15);
    }
    
    .myprefix-show {
      top: 0;
      opacity: 1;
    }
    }

    Best regards,
    Mike

    in reply to: Form fields not sizing down on mobile #1341486

    Hey biotechz,
    Thank you for the link to your site and the screenshot, Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    .avia_ajax_form {
    	overflow: hidden;
    }

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

    Best regards,
    Mike

    in reply to: Contact us page #1341475

    Hi,
    Glad to hear, shall we close this then?

    Best regards,
    Mike

    in reply to: Set transparent header as default header style #1341446

    Hi,
    This is because the mobile header is not designed to support a Sticky or Shrinking Header, so the class is not enabled.
    Glad that the above script is now working for you, please use it as your solution.
    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: Bug in Avia-gallery item title #1341445

    Hey Jean,
    Please see this solution

    Best regards,
    Mike

    in reply to: CSS issue #1341444

    Hey Jorge,
    Thank you for the login to your site, depending on the structure of your page the .container_wrap_first may contain all of the page content, such as on /membres/support/profile/ or it might only have the first non-full-width container such as on /avocat/profile/ which is this case is a code block element. Full width elements such as color sections are in their own sections outside of the .container_wrap_first.
    2022-02-19_012.jpg
    So to solve this I would determine how to only target the page like this so you can use the display: none; rule, for example look at the body classes and see if they all share one of the same classes.

    Best regards,
    Mike

    in reply to: Woocommerce Product Description #1341441

    Hey Akhurst,
    Thank you for the link to your site, the line-height was 28px, so try this code in the General Styling ▸ Quick CSS field to change t to 14px:

    .template-shop li.product-type-simple {
    	line-height: 14px;
    }

    feel free to adjust to suit, after applying the css, please clear your browser cache and check.i

    Best regards,
    Mike

    in reply to: Category in Postslider #1341440

    Hey Markus,
    The standard business will not show the categories in the post slider, please use the modern business instead
    2022-02-19_160158.jpg
    These two styles are very similar, but if you want the modern business adjusted some we can help, just explain what you would like adjusted.
    I didn’t find a post slider on your site so please create a test page.

    Best regards,
    Mike

    in reply to: Breadcrumb bar background color #1341439

    Hi,
    Thanks for the screenshot, you had this css in your child theme stylesheet:

    #top .title_container .container {
        padding-top: 10px;
        padding-bottom: 10px;
        min-height: 56px;
        background: #F7FCFE;
        border-bottom: solid 1px #e1e5eb;
    }

    it has an extra container, so the correct css is this:

    #top .title_container {
        padding-top: 10px;
        padding-bottom: 10px;
        min-height: 56px;
        background: #F7FCFE;
        border-bottom: solid 1px #e1e5eb;
    }

    I corrected this for you, please clear your browser cache and check.

    Best regards,
    Mike

    Hey Marcel,
    Thanks for your question, you can add custom icons to Enfold via Fontello, please see our documentation here, but I didn’t find any 5-star icons there, so probably the easiest solution would be to modify the html of your current Separation line with jQuery.
    Try adding this code to the end of your functions.php file in Appearance ▸ Editor:

    function five_star_seperator() { ?>
        <script>
    (function ($) {
    $(".avia-builder-el-10 .av-seperator-icon").attr('data-av_icon','' );
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'five_star_seperator');

    this is the expected results
    2022-02-19_009.jpg

    While this will work on your current page I recommend adding a custom class to the seperator element such as five-star and replace the class .avia-builder-el-10 in the script above so you can add this to other pages on your site.

    Best regards,
    Mike

    in reply to: How to make a section sticky at the top #1341435

    Hey JeffBianchi,
    You can try this solution or you can try a plugin like Sticky Menu & Sticky Header
    There are quite a few sticky plugins.

    Best regards,
    Mike

    Hey josk-design,
    Thank you for the link to your site, this is odd because the footer columns are meant to look as you are asking. Please try disabling the theme options Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and enable Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files and remove the broken shortcode above the footer under “Unser Angebot”
    Then clear your browser cache and check.
    If this doesn’t help also try updating to v4.8.9.1 as it contains some fixes and check again.
    If this doesn’t help please include an admin login in the Private Content area so we can investigate.

    Best regards,
    Mike

    in reply to: Content over layerslider #1341433

    Hey whdsolutions,
    Thank you for the link to your site, the class above doesn’t seem to exist on you page anymore .av-kzs87jc8-1ebd7eab26a8447e5588f1ffe46fd523 but the av_three_fifth column is over your layerslider by -300px with this css:

    .flex_column.av-kzs87jc8-e08336bdcc15b256f7f0786898b83ca5 {
        margin-top: -300px;
    }

    Please see the screenshot in the Private Content area.
    I assume that you have since solved this, but I recommend not using the post-css classes like: .av-kzs87jc8-1ebd7eab26a8447e5588f1ffe46fd523 because they will change every time you modify the page.

    Best regards,
    Mike

    in reply to: wie zweite Navigationszeile ausschalten #1341432

    Hey sroetheli,
    Vielen Dank für Ihre Frage, ich glaube, Sie meinen die Breadcrumbs in der Titelleiste
    2022-02-19_005.jpg
    Sie können das in den Layoutoptionen pro Beitrag abschalten
    2022-02-19_006.jpg
    oder in den Themenoptionen für alle Beiträge
    2022-02-19_007.jpg
    Enfold-Designoptionen ▸ Kopfzeile ▸ Kopfzeilenlayout ▸ Kopfzeilentitel und Breadcrumbs

    — Translated with Google —

    Thank you for your question, I believe you mean the breadcrumbs in the title bar
    2022-02-19_005.jpg
    you can trun that off in the layout options per post
    2022-02-19_006.jpg
    or in the theme options for all posts
    2022-02-19_007.jpg
    Enfold Theme Options ▸ Header ▸ Header Layout ▸ Header Title and Breadcrumbs

    Best regards,
    Mike

    in reply to: Multiple demos on one site #1341430

    Hi,
    Each element should have it’s style set in it’s options, so copying the element shortcode should also carry this over, but for global styles you will need to use the Dev inspector.

    Best regards,
    Mike

Viewing 30 posts - 12,661 through 12,690 (of 34,910 total)