Forum Replies Created

Viewing 30 posts - 4,411 through 4,440 (of 35,007 total)
  • Author
    Posts
  • in reply to: Spacebar doesn’t work only in some elements #1431510

    Hey Qgrafica_7,
    Typically this issue is caused by a plugin, please try disabling all of your plugins. If that resolves the issue, reactivate each one individually until you find the conflict.

    Best regards,
    Mike

    in reply to: Anchor links do not work properly only on mobile #1431506

    Hi,
    Thanks for the login, I added the function in your child theme functions.php and it seems to solve the issue.
    Please ensure that you clear your device cache a couple of times, please note that testing with iPads & iPhones 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.

    function slow_scroll_to_anchor() { ?>
      <script>
    (function($) {
      $('a[href*=#]:not([href=#])').click(function() {
      	var width = $(window).width()
        if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') 
    && location.hostname == this.hostname) {
    
          var target = $(this.hash);
          target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
          if (target.length) {
          	if ($(window).width() < 768) {
            $('html,body').animate({
              scrollTop: target.offset().top - 10 //offsets for fixed header
            }, 1000);
            return false;
          } else {
          	$('html,body').animate({
              scrollTop: target.offset().top - 80 //offsets for fixed header
            }, 1000);
            return false;
          }
          } 
        }
      });
      //Executed on page load with URL containing an anchor tag.
      if($(location.href.split("#")[1])) {
          var target = $('#'+location.href.split("#")[1]);
          if (target.length) {
          	if ($(window).width() < 768) {
            $('html,body').animate({
              scrollTop: target.offset().top - 10 //offset height of header here too.
            }, 1000);
            return false;
          } else {
          	$('html,body').animate({
              scrollTop: target.offset().top - 80 //offset height of header here too.
            }, 1000);
            return false;
          }
          } 
        }
    }(jQuery));
    </script>
      <?php
    }
    add_action( 'wp_footer', 'slow_scroll_to_anchor', 99 );

    Best regards,
    Mike

    in reply to: Questions on Freelancer-theme #1431504

    Hi,
    Thanks for your patience, the Dev Team refers to this documentation for the CSS background-attachment the fixed applys to the viewport, and local is relative to element, so in the case of gridrow cell this is what should be used to center the image in the cell.
    Using fixed is not correct, so the Dev Team is adding a new “local” option to the element in the next update.
    Unfortunately this behaves very similar to the “scroll” option, it will not give you the “fixed” effect that you are looking for.
    So for now you could use the “scroll” option, or you could try adjusting the image so when you use “fixed” the center of the image to more to the left.

    Best regards,
    Mike

    in reply to: Anchor links do not work properly only on mobile #1431411

    Hey Yossi,
    Thank you for your patience, I have tried reviewing your videos and pages on desktop and mobile and as I understand, on mobile the last menu item 1F from the homepage, or other pages falls short, and from what I can see the same issue is occuring with the last item on other pages. This seems to only be with the last items and only from other pages.
    Is this correct?
    I believe this is because when you are on the correct page all of the images and elements are loaded so clicking the last menu item lands correctly,
    but from other pages going to the last menu item of a different page, the images are lazy loading changing the height of the page after load causing the issue.
    Are you using a lazy load plugin or a caching pluging with lazy loading?
    It looks like the images also are using the theme animation when they are in view, which will be different for mobile that desktop.

    If you are using lazy loading please try to disable this to see if it helps, so we can determine if this is indeed the issue.
    I think we can use some javascript to force the page to fully load and then scroll to the sections, but it will help if we had admin access to test.
    Is this site live? Would you prefer us to test on a staging site?
    If so please include an admin login in the Private Content area with a link to the staging site so we can test, or we can test on this site if you wish.

    Best regards,
    Mike

    in reply to: Extra after each element in a section #1431409

    Hi,
    I don’t know what could be causing this issue on your site, but I’m not able to reproduce it on my test site. Have you tried removing your customizations and plugins and see if that solves the issue, or perhaps you could just use the default template as you know it works correctly?

    Best regards,
    Mike

    in reply to: use avia with plugin passster’s content #1431299

    Hi,
    Unfortunately we don’t know how the plugin works or how what you want would be achieved, we are limited to our support for third party plugins.

    Best regards,
    Mike

    in reply to: Extra after each element in a section #1431298

    Hi,
    Glad that you found this helpful, I tried different page templates but I couldn’t reproduce this. Perhaps you are using a custom page template or a plugin that is causing this?

    Best regards,
    Mike

    in reply to: Color Section Background Image Responsive Design #1431294

    Hi,
    Thanks for the login, and I’m glad this this helped you, although I would recommend using a custom ID so that the css only changes the image in the element that you wish and not in other elements in your site. If you add the custom ID: section-mobile-bg then your new css would be:

    @media only screen and (max-width: 767px) { 
    #section-mobile-bg.avia-section .av-parallax .av-parallax-inner {
        background-repeat: no-repeat;
        background-image: url(https://hauptwerk-zt.at/wp-content/uploads/2024/01/rendering1_smartp.jpg);
        background-position: 0% 50%;
    }
    }

    As for your last question about stretch to scale, you didn’t say if you wanted this for the desktop or mobile, the element settings will only work for the desktop because you are using css to replace the image on mobile, so for mobile you would need to add a css rule.
    But when I check it doesn’t look like it is needed for desktop or mobile because in both cases the whole image is shown.
    Perhaps a screenshot of what you are seeing and further explanation would help

    Best regards,
    Mike

    in reply to: use avia with plugin passster’s content #1430743

    Hey mediafacto,
    From the Passster plugin page, it looks like the plugin adds a “Block” to the WordPress Block Editor be used, the Enfold Advanced Layout Builder is a stand alone editor and doesn’t use “Blocks”, when you create a page to can choose the WordPress editor or the Enfold ALB.
    I looked in the Passster documentation but I didn’t find any reference to using Passster with the WordPress Classic Editor, so I assume that it is not compatible.
    Also please note the typically other builder plugins will conflict with Enfold, so it is not recommend to use the wpbakery builder.

    Best regards,
    Mike

    in reply to: H3 title on masonry blocks #1430741

    Hi,
    Glad Guenni007 could help, thank you Guenni007, unless there is anything else we can assist with on this issue, shall we close this thread then?

    Best regards,
    Mike

    in reply to: Color Section Background Image Responsive Design #1430738

    Hi,
    I believe the issue is that the css you tried didn’t account for the parallax option you are using, so try removing the second color section of mobile and allow the first section to show on mobile and then try this css:

    @media only screen and (max-width: 767px) { 
    #av_section_1.avia-section .av-parallax .av-parallax-inner {
        background-repeat: no-repeat;
        background-image: url(https://hauptwerk-zt.at/wp-content/uploads/2024/01/rendering1_smartp.jpg);
        background-position: 0% 50%;
    }
    }
    

    This should work, but I recommend adding a custom ID to the first section like: section-mobile-bg then adjust your css.
    If you still have trouble please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: Extra after each element in a section #1430735

    Hi,
    Glad to hear that recreating the page solved the issue, I’m not use what may have caused this as I can’t reproduce it. You can Enable the Avia Layout Builder Debugger to view the page shortcode, to see if you can spot anything unusual.
    Since recreating the page solved the issue, shall we close this thread then?

    Best regards,
    Mike

    Hi,
    Ok, I thought it would be pointing to the issue on your site, I would recommend disabling your customizations and plugins and disable Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression for good measure and see if that helps, since the scrolling works on our demo site and my test site.

    Best regards,
    Mike

    in reply to: Questions on Freelancer-theme #1430733

    Hi,
    Thank you for your patience, I have asked the Dev Team to review this issue and will reply when they have reviewed and replied. Thank you for your patience

    Best regards,
    Mike

    in reply to: Boxes Round not Square #1430181

    Hi,
    Unfortunately the min height will need to be adjusted multiple times for the different screen width and the font sixe for the back side will need to be smaller to make up for the lost space. It doesn’t look like there is a “easy” fit for this.
    You could use the css above as an example and then use media queries to assign different heights for the different screen sizes that are commonly used, but it won’t be a “fluid” change for all screen sizes.

    Best regards,
    Mike

    in reply to: Video loads through black #1430180

    Hi,
    Please note that the browsers typically block videos from auto playing on mobile devices, it is recommended to not use auto playing videos on mobile and ask the user to click to play, or to use a image for mobile.
    Some users have found that self hosting the video on their site and using the LayerSlider often works for mobile, but this workaround may not work forever.
    Safari & Chrome issued this standard a whaile back and now Edge is built on the Chrome code, so for the future it will be better to not use auto playing videos.

    Best regards,
    Mike

    in reply to: Checkbox im Bestellformular (Surecart) #1430179

    Hi,
    On this page it looks like a shortcode has been added to a text block element to create the checkout, is this correct?
    So I’m not clear what your issue is, do you not see the check box option, or do you see it and it doesn’t work.
    From the SureCart plugin page it looks like the plugin adds options to the Gutenberg editor, is this how you are creating the check out form?
    Perhaps this is what you did last year and then you copied the shortcode to the page? I don’t think the plugin will add it’s addons into the Advanced Layout Builder text block editor for you to use, try opening a new page and try using the WordPress default editor instead.
    If this doesn’t help please explain further and perhaps a screenshots would help since we don’t use the SureCart plugin.

    Best regards,
    Mike

    in reply to: ENFOLD Theme – Avia Layout Builder #1430097

    Hi,
    Glad to hear that you have this sorted out, 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

    Hi,
    Glad to hear, once you are done creating your site you can either use the theme caching and
    – Re-enable JS & CSS file merging and compression
    – Re-disable Delete old CSS and JS files
    – Re-enable my server cache
    or you can use a caching plugin, WP Fastest Cache works good, some people use both the theme cache and a plugin, but sometimes minifying the javascript files twice can cause errors.
    I don’t know what you mean by a “cache cleaning plugin”, most caching plugins give you an option to clear its cache, but strangely your 10Web booster plugin did not.
    Unless there is anything else we can assist with on this issue, shall we close this thread then?

    Best regards,
    Mike

    in reply to: Deprecated: Error Class avia_style_generator … nach Umzug #1430095

    Hi,
    Thanks for trying, I’m not sure what could be causing this, so I asked the rest of the team for advise. Thank you for your patience.

    Best regards,
    Mike

    in reply to: Header widget margins help follow up #1430094

    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: Questions on Freelancer-theme #1430088

    Hi,
    Each image has a bottom margin, Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #welcome .avia-image-container.avia-align-center {
        margin: 0;
    }

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

    Best regards,
    Mike

    Hi,
    I see that your
    Maximale PHP-Eingabe-Variablen (max_input_vars) is only 5000, try changing it to 10000

    Best regards,
    Mike

    in reply to: Menu items background color #1430085

    Hi,
    Please note that each class needs to be unique, like this:

    .my-hex-color-one {
    background-color: #F6BFCA;
    }
    
    .my-hex-color-two {
    background-color: #F2DFD7;
    }
    
    .my-hex-color-three {
    background-color: #F6BFCA;
    }
    
    .my-hex-color-four {
    background-color: #F2DFD7;
    }
    
    .my-hex-color-five {
    background-color: #F6BFCA;
    }
    
    .my-hex-color-six {
    background-color: #F2DFD7;
    }

    and the class that you add into the menu Clases CSS should match the color that you want.

    Best regards,
    Mike

    Hi,
    I see that you are using PHP v8.3.1, try using v8.2

    Best regards,
    Mike

    in reply to: ENFOLD Theme – Avia Layout Builder #1430080

    Hi,
    So it’s working for you also now?

    Best regards,
    Mike

    in reply to: Menu items background color #1430076

    Hi,
    In the menu item add your unique class name like my-hex-color
    Enfold_Support_4488.jpeg
    Then in your Quick CSS add:

    .my-hex-color {
    	background-color: #F6BFCA;
    }

    create a new class name for each new color.

    Best regards,
    Mike

    Hi,
    Try disabling all of your plugins. If that resolves the issue, reactivate each one individually until you find the conflict.

    Best regards,
    Mike

    in reply to: Menu items background color #1430072

    Hi,
    Yes, use a unique class name and add your hex color code to the css, like this:

    .my-hex-color {
    	background-color: #F6BFCA;
    }

    Best regards,
    Mike

    in reply to: ENFOLD Theme – Avia Layout Builder #1430068

    Hi,
    Try adding a screenshot and post the link in the thread.
    Did you try with the login you posted for us?
    What browser are you using, do you have any browser addons?

    Best regards,
    Mike

Viewing 30 posts - 4,411 through 4,440 (of 35,007 total)