Forum Replies Created

Viewing 30 posts - 11,311 through 11,340 (of 34,988 total)
  • Author
    Posts
  • Hi,
    I believe there may be a misunderstanding, consider the “GALERIE” menu item, it is a mega menu item with two columns, so the two item can not be below each other like your regular menu items, perhaps you choose the “mega” option in the menu in error, please review and uncheck this option.
    If I misunderstand your intention please explain further and include the admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: Sticky header – possible to stop at a certain point #1358240

    Hi,
    Thank you for the link to your pages, but I’m not sure why this is occurring, I linked to my demo page below which is currently “header visible and sticky”, I also tested different header settings and it worked for my demo each time.
    Are you manually managing Builder Elements in Enfold Theme Options ▸ Performance ▸ Disable Template Builder Elements?
    Please include an admin login in the Private Content area so we can investigate, are there any other pages where this is not working?

    Best regards,
    Mike

    in reply to: block collant en dessous du menu collant #1358197

    Hi,
    Thanks for the feedback, I changed your css to this:

    .sticky-top {
        position:fixed!important;
        top:0!important;
        z-index:600!important;
    }
    .sticky-top-added {
      position: fixed !important;
      top: -85px;
      width: 100%;
      z-index: 999;
      opacity: 0;
      background: #fff;
      transition: 0.3s all;
    }

    and changed the script to this:

    function custom_collant_script() { ?>
        <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
      $(function() {       
         var scroll_start = 0;
         var startchange = $('.avia-section.collant');
         var offset = startchange.offset();
         var width = $(window).width()
          if (startchange.length){
         $(document).scroll(function() { 
            scroll_start = $(this).scrollTop();
            if((width >= 990) && (scroll_start > offset.top - 85)) {
              document.querySelector('.avia-section.collant').classList.add('sticky-top');
              document.querySelector('#header_main').classList.add('sticky-top-added');
             } else {
              document.querySelector('.avia-section.collant').classList.remove('sticky-top');
              document.querySelector('#header_main').classList.remove('sticky-top-added');
             }
         });
          }
      });
    })(jQuery);
    });
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_collant_script');

    Now when the color section “collant” reaches the header the header hides and the color section sticks to the top of the screen.
    Please note that if you are logged in and the admin bar is showing at the top the color section looks like it is under the admin bar, so please test not logged in and you will see that the color section is at the top of the screen.
    Please clear your browser cache and check.
    Please note that if you are using Safari can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.

    Best regards,
    Mike

    in reply to: Sticky header – possible to stop at a certain point #1358121

    Hey smudgedesign,
    Thanks for your question, I recently worked on a solution for something similar to this, please review this thread
    basically, you add a custom class: waypoint-trigger to an element on the page and when it is in view the script will hide the header.
    if you find you need some help setting it up please include an admin login in the Private Content area.

    Best regards,
    Mike

    in reply to: the width on mobile version #1358113

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

    Best regards,
    Mike

    Hi,
    Thanks for the screenshot, try changing the “/” and adding the line break in the function, like this:
    2022-07-12_001.jpg
    $output .= '<span data-link="'. get_term_link($category->term_id, $category->taxonomy) .'" class="blog__masonry–categorie">' . esc_html( $category->name ) . ' - </span><br/>';

    Best regards,
    Mike

    in reply to: Shipping address missing #1358025

    Hi,
    Glad to hear that you have this sorted out, I see that your other post has been addressed, 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: custom icons not rendering correctly #1358021

    Hi,
    Glad Guenni007 could help, thank you Guenni007, 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: Translating WordPress pages and PDF files #1358019

    Hi,
    As I understand the topic, this user was using a plugin that had some shortcode which could be used to wrap elements and would show or hide them based on the language, if you are using a plugin that offers a similar shortcode, try adding the button shortcode inside of the translation shortcode, for example:

    Best regards,
    Mike

    in reply to: Main Menu_ Line indicates the wrong side #1358018

    Hi,
    Sorry, I don’t understand your last post, please explain further.

    Best regards,
    Mike

    in reply to: the width on mobile version #1358016

    Hi,
    I examined the post linked below, and it looks like it is using color sections, wich doesn’t use padding like the grid rows, the edge is created by the max-width being 85%
    This css works for this post, but I’m not sure if it will cause issues elsewhere on your site:

    @media only screen and (max-width: 767px){
    .responsive #top #wrap_all #main .container {
        width: 100%;
        max-width: 100%;
        padding-left: 6%;
        padding-right: 6%;
    
    }
    }

    give this a try.

    Best regards,
    Mike

    in reply to: Anchor to services on home page #1357934

    Hey virtualbis,
    Thanks for your question, typically links are case sensitive, your link above and your menu link has a capital “S” but the section ID doesn’t, try this link instead:

    Best regards,
    Mike

    in reply to: fixed back round image on mobile version #1357931

    Hi,
    Thanks Guenni007 for investigating, probably the easiest solution would be to advise using a minimum custom-height of 99% when using your iPhone solution above
    it sounds like it is related to how the Apple navigation bar is calculated, from your comment above, and since it doesn’t occur on Android.
    Veronika please try checking your other pages and the color sections you added the bg-fixed solution to try changing the minimum height from 100% to 99% and check on your iPhone.

    Best regards,
    Mike

    in reply to: urgent images not loading after update #1357897

    Hi,
    Thank you for sharing, your site looks very good, well done 🎉

    Best regards,
    Mike

    in reply to: fixed back round image on mobile version #1357896

    Hi,
    Thanks for your help @Guenni007,
    On the page /biologique-recherche-und-warum-es-suchtig-macht/ I only found two color sections with the class bg-fixed and the minimum height set to 100%, so I added the class fullheight and changed to no minimum height and added the css as suggested.
    Hopefully this will help on iPhone, but I can’t check.

    Best regards,
    Mike

    in reply to: fixed back round image on mobile version #1357892

    Hi,
    Thank you Guenni007 for testing and your example,
    I believe the i0.wp.com in image links are from Jetpack’s built-in Image CDN that relies on WordPress.com

    Best regards,
    Mike

    in reply to: "Other articles from the same….." #1357891

    Hi,
    The code for the widget called “Enfold latest Portfolio” is at:
    \enfold\framework\php\widgets\widget-classes\class-avia-portfoliobox.php
    I’m not sure if there are any dependencies that would also need to be adjusted to change this to your CPT.
    Please note that files in the \framework\php\ directory can not be included in a child theme, so any changes you make will need to be done for each theme update.

    Best regards,
    Mike

    in reply to: Rank Math in Enfold Avia #1357890

    Hi,
    Perhaps you need to enable it in the screen options for your post, when I enable the plugin the Rank Math Integration shows for me:
    2022-07-10_014.jpg
    the word count was also correct:
    2022-07-10_015.jpg

    Best regards,
    Mike

    in reply to: Issues with WYSIWYG-Editor #1357889

    Hi,
    Thanks for the screenshots your “weird” editor looks like it was added from a plugin, perhaps TinyMCE Advance, notice the “powered by Tiny” text.
    2022-07-10_013.jpg
    Try finding the plugin and disabling it, this doesn’t occur in the theme with a new install so it is either a plugin or a customization.

    Best regards,
    Mike

    in reply to: Filtering pages or posts like with portfolio #1357888

    Hey InSilentio,
    Thank you for your question, but I don’t think I fully understand because I don’t understand why you would want to create a new CPT that works exactly like the portfolio post type, when you could just use the portfolio post type.
    You can use it for your sound instruments and classes and still use the portfolio and masonry element sorting by assigning categories to them, for example if you only want to show the “classes” and “design” categories in a portfolio element, you can just choose those:
    2022-07-10_0111caedc24db428736.jpg
    then the frontend sort will only show these:
    2022-07-10_012.jpg
    creating a new CPT that works exactly like the portfolio post type and have it recognized in all of the elements and options in the theme just seems like trying to re-invent the wheel.

    Best regards,
    Mike

    Hi,
    Thank you for the login to your site I believe the issue was that your child theme functions.php was missing the top <?php
    I added it back and the script and the css to your child theme stylesheet.
    I also adjusted the offset to 10% so the header hides just before the table gets to it.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: hamburger disappearing #1357886

    Hi,
    Naturally 😃, thank you Shari for figuring this out 🙌 Well Done 🎉
    If you have any further questions please create a new thread and we will gladly try to help you, before you can figure it out yourself 😃. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: the width on mobile version #1357885

    Hi,
    Thanks for the feedback, so when I looked at your homepage on mobile the very first image is 100% width, I thought this was desired, then after it are some posts that your screenshot indicated to have the 6% padding, so far good right?
    Now below when I see the other two full-width image sections, I assume they are like the top one and should remain full width, correct?
    ▸ Sind Gesichtssprays wirklich hilfreich?
    ▸ Sind Neujahrsvorsaetze gemacht um zu scheitern?
    plus:
    ▸ Hier entsteht in Kürze ein Newsletter
    Now originally I thought the posts after “Sind Gesichtssprays wirklich hilfreich?” were 6% also, but I see they are not, my mistake.
    So for those grid rows I added a custom class paddingsix
    2022-07-10_112511.jpg
    and below the grid rows you have color sections with columns, so to include these I added the custom class fakepaddingsix
    2022-07-10_114752.jpg
    then I updated the css to this:

    @media only screen and (max-width: 767px) { 
    .responsive #top #wrap_all #main .av-flex-cells .no_margin:not(.av-zero-column-padding),
    .responsive #top #wrap_all #main .av-flex-cells .paddingsix .no_margin {
    padding-left:6% !important;
    padding-right:6% !important;
    }
    .responsive #top #wrap_all #main .av-flex-cells .no_margin.av-zero-padding{
    padding-left:0 !important;
    padding-right:0 !important;
    }
    #top .fakepaddingsix {
      width: calc(100vw - 14%)!important; 
      position: relative !important; 
      left: calc(-44vw + 50%) !important; 
    }
    }

    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Consent Tool (DSGVO, GDPR) #1357880

    Hey Ralph,
    Thanks for the link to your site, but it doesn’t look like you have enabled the cookie consent message bar or modal window, so the first step to becoming compliant is to do this, once you enable it you can make the adjustments above in the options, please review our documentation.
    Also see our blog post: ENFOLD and the GDPR

    Best regards,
    Mike

    in reply to: avia-rtl and avia-ltr transition #1357878

    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

    Hey qhsedirectory,
    Thanks for the link to your page, currently you have an error showing at the top of your page above your menu:

    /** Add your own functions here. You can also copy some of the theme functions into this file. * WordPress will use those functions instead of the original functions then.*/
    

    this is the text in your child theme functions.php, please try removing any changes that you have made to correct.

    As for hiding and showing the header when a specific place on the page is in view, I tested on an example page containing many columns with text blocks, and for one text block I added a custom class waypoint-trigger:
    2022-07-10_004.jpg
    this “trigger” element is down a ways on the page so it is not in view on the page load:
    2022-07-10_005.jpg
    then I added this css in the Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .waypoint-hide {
      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);
    }
    
    .waypoint-show {
      top: 0;
      opacity: 1;
      transition: 0.3s all;
    }

    and this code in the child theme functions.php file in WordPress ▸ Appearance ▸ Editor:

    function custom_waypoint_trigger_script() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
      var $header = $('#header_main');
      var $things = $('.waypoint-trigger');
      $things.waypoint(function(direction) {
        if (direction === 'down') {
           $header.addClass('waypoint-hide');
           $header.removeClass('waypoint-show');
        }
        if (direction === 'up') {
           $header.addClass('waypoint-show');
           $header.removeClass('waypoint-hide');
        }
      }, {
        offset: '95%'
      });
    })(jQuery);
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_waypoint_trigger_script');

    Note in the script the “offset” is 95%, this will trigger when the element is just in view, you can adjust to suit, such as 50% for when the element is in the middle of the page.
    Please give this a try, I linked to my example page below.

    Best regards,
    Mike

    in reply to: WPLM Language switch im Headerbereich sichtbar #1357874

    Hi,
    Thank you for the link to your site, I added the css to your Quick CSS for both your EN & DE theme options, and it is now working, please clear your browser cache and check.
    Please note that WPML creates a theme panel for each language, so often you need to make the changes in both.

    Best regards,
    Mike

    in reply to: Notice: Undefined index: path in #1357873

    Hi,
    Thanks for the login, it looks like your web host is deferring your jQuery, note that the options are not available in your theme options at Enfold Theme Options ▸ Performance ▸ Change WordPress Defaults
    2022-07-10_002.jpg
    these are the options that you should see
    2022-07-10_001.jpg
    You will need to ask your web host to restore the WordPress defaults as they have modified the default install.
    Also note that your WordPress ▸ Tools ▸ Site Health says that your Debug mode is enabled, displaying errors on your site which is a critical security issue and recommends that you disable this.
    2022-07-10_003.jpg

    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: Background Image Scaling Issues On Mobile #1357861

    Hi,
    Thank you, but unfortunately, I don’t have an iPhone or iPad to test with and I do not see this on a Galaxy Android, with Firefox, Chrome, or Brave.
    But I’m sure we will be able to sort this out, thank you for your patience.

    Best regards,
    Mike

Viewing 30 posts - 11,311 through 11,340 (of 34,988 total)