Viewing 30 results - 2,431 through 2,460 (of 106,494 total)
  • Author
    Search Results
  • #1474748

    In reply to: Color Section Glitch?

    Hi,

    Thank you for the update.

    The issue I am having is if I click on the COLOR SECTION on that page to edit the colors or overlay on the image, nothing opens.

    We temporarily removed the Code Block element inside the Color Section, and it seems to be working again. What map embed script did you place in the Code Block element? You may need to create a custom shortcode for the embed script or use a snippet plugin instead of directly embedding the map in the Code Block element.

    Best regards,
    Ismael

    #1474725

    Hey Renaud,
    If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
    use wpcode php snippet and activate
    and ensure that it is activated, then add this code and save.

    function custom_script() { ?>
      <script>
    (function($){
      $('img').hover(function(e){
          $(this).attr('data-title', $(this).attr('title'));
          $(this).removeAttr('title');
      },
      function(e){
          $(this).attr('title', $(this).attr('data-title'));
      }); 
      $('.av-masonry-image-container').hover(function(e){
          $(this).attr('data-title', $(this).attr('title'));
          $(this).removeAttr('title');
      },
      function(e){
          $(this).attr('title', $(this).attr('data-title'));
      }); 
      $('a').hover(function(e){
          $(this).attr('data-title', $(this).attr('title'));
          $(this).removeAttr('title');
      },
      function(e){
          $(this).attr('title', $(this).attr('data-title'));
      }); 
    })(jQuery);
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_script', 99 );

    Best regards,
    Mike

    #1474724
    Reno68100
    Participant

    Hello
    Is it a possibility to add custom CSS to hide image title on hover ?
    I have no child theme but some custom CSS in WordPress (saved for update theme)
    Thank you

    #1474704

    Hey Antonio,

    Thank you for the inquiry.

    This is not possible because when the browser is resized, the height of the slider is recalculated based on the height of the image. If you want to disable the transition, you can add this css code, but the image will still move after resizing.

    #top .avia-slideshow-inner {
        transition: none !important;
    }

    Best regards,
    Ismael

    #1474695

    Hey mikeb254,

    Thank you for the inquiry.

    You can enable the Gallery Image Rotation in the Advanced > Animation panel. Please make sure to clear the cache after making any adjustments to the settings.

    Best regards,
    Ismael

    #1474689

    Topic: Media Library Junk

    in forum Enfold
    ibuzaev
    Participant

    Hello, and seasonal greetings!

    Is it safe to disable generation of different sizes images in media library,
    or adaptive template uses some of them?

    Thank you
    Best wishes for new year!

    #1474683
    sitibus
    Participant

    Hi, on my site http://www.hejmo.house I would like the two flip elements of the color section with a light blue background to have a height greater than that which is
    I set the height of the flipbox grid element to 400px, the background image to 495px x 400px, the height of the row to 500px can you help me understand what I’m doing wrong?

    Thanks Gianluca from Italy

    #1474676
    mikeb254
    Participant

    I have added a selection of images for the horizontal gallery. Is there a custom css where the rotation starts automatically. As it is now set, you need to click on image first before the rotation begins.

    Thanks in advance
    Mike

    #1474673

    In reply to: Color Section Glitch?

    Hi,
    Thanks for your patience, when I edit your footer page color section I see a 403 server error for your admin-ajax.php
    When I copy your footer page to my test site it works correctly with no error.
    This could be many server issues, first I would look at your low server settings for:
    PHP max input variables
    PHP time limit
    Max input time
    :
    Screen Shot 2025 01 05 at 9.37.18 AM
    try updating to these:
    Screen Shot 2025 01 05 at 9.39.12 AM
    There are other possible issues for a 403 error on admin-ajax.php, such as server Mod_Security or custom rules in your .htaccess file, which you have:
    Screen Shot 2025 01 05 at 9.46.25 AM

    Best regards,
    Mike

    #1474668

    In reply to: Logo mobile menu

    Hi,
    I did not find a horizontal gallery on your site, but the element has three options, no gap, 1px gap, large gap:
    Screen Shot 2025 01 05 at 9.01.04 AM
    If large gap is not enough, please explain further and create a test page for us to examine.

    Best regards,
    Mike

    #1474665

    In reply to: Logo mobile menu

    Quick other question…

    What is the css to create more space between images on the horizontal galery ? And can de rotation begin automatically, now it only starts with click :(

    Thanks so much
    Mike

    • This reply was modified 1 year, 3 months ago by mikeb254.
    • This reply was modified 1 year, 3 months ago by mikeb254.
    #1474660

    Hi,
    Thank you for your patience, I see that your layerslider is based on the original slide from the original demo, since then the LayerSlider has been updated a lot. I was able to remove the 3D transition by changing the timing to zero on the first slide:
    Screen Shot 2025 01 05 at 7.34.55 AM
    please clear your browser cache and check.

    Best regards,
    Mike

    Hi Mike,

    Thank you very much. I had overlooked this setting. Unfortunately, the link does not open when I click on the main image (which is displayed large), but only when I click on the thumbnail. This is not optimal from a UX point of view. What solution is there for this?

    Best regards,
    Marcel

    #1474644

    if this also works on mobile devices (I remember that it didn’t work with older browsers), then it is probably the best performing solution. Because a script solution would have to constantly query the screen width, which is why a “debounce and resize” function would have to be used for performance reasons. Enfold itself provides such a function. (Enfold’s debouncedresize function is a performance-optimized way to handle resize events without triggering excessive function calls)

    function custom_logo_for_mobile(){
    ?>
    <script>
    (function($) {
        function updateLogo() {
            var $logo = $('.logo img'); // Select the logo image
            var mobileLogo 	= "/wp-content/uploads/desert-tortoise-council-50th-ann-logo-hor.webp";
            var defaultLogo = "/wp-content/uploads/desert-tortoise-council-50th-ann-logo.webp";
    
            if ($(window).width() <= 1024) {
                $logo.attr('src', mobileLogo); // Use mobile logo
            } else {
                $logo.attr('src', defaultLogo); // Use default logo
            }
        }
    
        // Trigger logo update on debouncedresize
        $(window).on('debouncedresize', function() {
            updateLogo();
        });
    
        // Run logo update on initial load
        $(document).ready(function() {
            updateLogo();
        });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_logo_for_mobile', 20 );

    so this works too – but the srcset originally generated (during loading) remains and is then also displayed.
    I don’t know how to change the srcset as well. If I switch off the responsive images under Performance, the change of logo images is also displayed at the frontend.

    Hey Marcel,
    In your gallery element you had “Lightbox linking active”, you need to use “Use custom link”:
    Screen Shot 2025 01 04 at 2.12.57 PM
    I changed for you, please clear your browser cache and check.

    Best regards,
    Mike

    #1474633

    In reply to: text hide

    Hey schweg33,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .search.search-results .post-meta-infos,
    .search.search-results .entry-content{
    	display: none;
    }

    Before:
    Screen Shot 2025 01 04 at 2.02.03 PM
    After:
    Screen Shot 2025 01 04 at 2.01.00 PM

    Best regards,
    Mike

    #1474632

    Hey ballindigital,
    To move topbar below the header I added this script to your Snippets plugin.

    function custom_script() { ?>
      <script>
    (function($) {
      function a() {
        $('#header_meta').detach().insertAfter('#header_main');
      }
      a();
    })(jQuery);
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_script', 99 );

    Screen Shot 2025 01 04 at 1.51.22 PM
    Screen Shot 2025 01 04 at 1.52.35 PM
    please clear your browser cache and check.

    Best regards,
    Mike

    #1474630

    Hi,
    In that case add color: #fff; to the span, like this:
    Screen Shot 2025 01 04 at 12.19.38 PM
    I did this for you:
    Screen Shot 2025 01 04 at 12.21.07 PM
    Please clear your browser cache and check.

    Best regards,
    Mike

    This reply has been marked as private.
    #1474622

    Hi,
    I cleared your site cache, and removed the css above and now the white space under images has been removed and I don’t see any missing images on your home page
    Screen Shot 2025 01 04 at 7.25.05 AM
    clear your browser cache and check.

    Best regards,
    Mike

    Mathuseo
    Participant

    Hello,

    I have a problem with the AVIA element ‘Gallery’. There is the possibility to add a ‘custom link’ to each gallery image. I assume it is a core function of WordPress, similar to image title or image attribute and not a special enfold function. There I added a link to Youtube for my first image. All other images in the gallery have this field empty. I only need it for image 1 of the gallery. If I now click on the image in the gallery in the frontend, I am not redirected to my YouTube link, but the image opens in the lightbox. Can you please help me to find the solution?

    I added the link to my website and WP admin access under ‘Private Content’. I use the latest version of WordPress and Enfold and all plugins are up to date.

    Best regards,
    Marcel

    #1474610

    sadly – i tested it on a working page and the responsive images option does disturb that change :
    see screenshot on less than 1025px :

    you see that it is replaced – but the srcset is untouched on that. – so this is not the solution!

    #1474609

    Can you please remove the relevant snippets from your functions.php (save them to your desktop) and insert this instead?

    function change_logo_with_screenwidth(){
    ?>
    <script>
    window.addEventListener("DOMContentLoaded", function () { 
    	(function($){
    		
    		// this is for loading the page on smaller screen-width 
    		if ($(window).width() < 1025) {
    			$('.logo img').attr('src', 'https://deserttortoise.org/wp-content/uploads/desert-tortoise-council-50th-ann-logo-hor.png');
    		}
    		else {
    			$('.logo img').attr('src', 'https://deserttortoise.org/wp-content/uploads/desert-tortoise-council-50th-ann-logo.png');
    		}
    
    		function b() {
    			if ($(window).width() < 1025) {
    				$('.logo img').attr('src', 'https://deserttortoise.org/wp-content/uploads/desert-tortoise-council-50th-ann-logo-hor.png');
    			}
    			else {
    				$('.logo img').attr('src', 'https://deserttortoise.org/wp-content/uploads/desert-tortoise-council-50th-ann-logo.png');
    			}
    		}
    
    		$(window).on('debouncedresize', function() {
    			b();
    		});
    
    	})(jQuery);
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'change_logo_with_screenwidth');

    we had to see if the srcset inserted images will follow that script …

    #1474592

    In reply to: Color Section Glitch?

    The issue I am having is if I click on the COLOR SECTION on that page to edit the colors or overlay on the image, nothing opens. I can edit all the columns, text, code… the COLOR SECTION itself is my issue.
    Does that help?
    Thanks
    Cc

    #1474590
    95mc
    Participant

    Hello,

    I would like the bottom of the image do not animated when the website resizes.
    Could you help me?
    Thanks advance,

    BR,

    Antonio.

    #1474589

    Hi, Ismael,
    I added that code, but there are a bunch of images missing on our home page. https://fiestapoolsandspas.com/ And, there is still white space under images on our blog – https://fiestapoolsandspas.com/tips-for-a-healthy-hot-tub/

    Can you please advise?
    Thank you!
    Justine

    #1474572

    Hey Antonio,
    Thank you for the link to your site, in this case you would remove the “span” in the “text” tab of the editor:
    Enfold Support 6565
    like this:
    Enfold Support 6567
    I did this for you, please clear your browser cache and check.
    Enfold Support 6569

    Best regards,
    Mike

    #1474571

    In reply to: Lines in Timeline

    Hi,
    As I understand you would like to remove this gold line:
    Enfold Support 6563
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .avia_transform .avia-timeline-vertical.av-milestone-placement-alternate.avia-timeline-animate li.av-milestone-odd.avia_start_animation .av-milestone-indicator {
        opacity: 0;
        animation: none;
    }
    

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

    Best regards,
    Mike

    here is the result for that script and your “home” page:
    https://webers-testseite.de/circle-rotator.mp4

    or with a background-image on your text:

    
    #top .avia-icon-circles-icon-text {
      background-image: url(https://coachcristina.com/wp-content/uploads/2024/12/WhatsApp-Image-2024-12-11-at-11.09.04.jpeg) !important;
      background-repeat: no-repeat !important;
      background-position: center center !important;
      transition: all 1s cubic-bezier(.175,.885,.32,1.275);
    }
    
    #top .avia-icon-circles-icon-text-inner * {
      color: #FFF
    }
    #1474560

    PS: that delay comes from the default transition timing:

    .avia-icon-circles-icon-text {
      transition:all .8s cubic-bezier(.175,.885,.32,1.275);
    }

    it you set it to none – there will be no delay – see example page. But then not center image is shown.

    #top .avia-icon-circles-icon-text {
      transition: none;
    }
Viewing 30 results - 2,431 through 2,460 (of 106,494 total)