Forum Replies Created

Viewing 30 posts - 11,521 through 11,550 (of 34,910 total)
  • Author
    Posts
  • Hi,
    Glad to hear this helps, try changing the css:

    .avia-team-member .team-member-description {
    	visibility:hidden;
    }

    to:

    .avia-team-member .team-member-description {
    	display: none;
    }

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Adding Elements #1355381

    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: Facebook icon color #1355378

    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: Image names appearing on hover #1355341

    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: Image with hotspots that open image in lightbox #1355340

    Hi,
    Yes, I didn’t know what title he would want for each image and I wanted a different title for each image when I tested so that I knew it was working correctly.
    I had thought of getting the tooltip text (data-avia-tooltip) and adding it to the lightbox title, but he is not using the tooltip field so “data-avia-tooltip” was empty.
    I believe getting each hotspot tooltip and adding it to the lightbox title should be something like this:

    (function($){
       $('.av-image-hotspot a').each(function () {
       	var toolTip = $(this).parents('div').eq(1).find('.av-image-hotspot').attr('data-avia-tooltip');
       $(this).attr('title', toolTip );
    $(this).magnificPopup({
        type: 'image',
        image: {
            titleSrc: 'title' 
        }
    });
    });
    })(jQuery);
    

    but it’s not working quite as expected, do you have any ideas? Thanks Guenni007

    Best regards,
    Mike

    in reply to: Adding Elements #1355330

    Hi,
    I believe that we can help you with a button grid, please try the Button Row:
    2022-06-15_001.jpg
    in my example I used 3 buttons per row, centerd, each button x-large, no icon and basic colors, but there is an option for custom colors:
    2022-06-15_002.jpg
    I didn’t see any text wrap at any device size, please check my demo link below:
    2022-06-15_003.jpg
    assuming that you want equal button widths, I added this script to the end of my child theme functions.php file in Appearance ▸ Editor:

    function equal_buttonrow_button_width() { ?>
      <script>
    (function($){
      $(window).load(function(){
      	$('#top.page-id-3240 main > .post-entry-type-page > .entry-content-wrapper').each(function(){  
         var $rows = $('.avia-button ',this);
         var maxWidth = Math.max.apply(Math, $rows.map(function(){
             return $(this).width();
         }).get());
         $rows.width(maxWidth);
    });
    });
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'equal_buttonrow_button_width');

    Note that my page ID is page-id-3240, so you will need to adjust the script to your page ID which is page-id-196
    my results are:
    2022-06-15_004.jpg

    Best regards,
    Mike

    in reply to: Facebook icon color #1355280

    Hi,
    Thanks for the link to your site, when I check your icon it is blue & white on mouse-over, if you want it blue before mouse-over try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top #header_meta .av-social-link-facebook a {
        color: #37589b;
    }

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

    Best regards,
    Mike

    in reply to: Adding Elements #1355279

    Hey jaliisah,
    Thanks for your question, the GenerateBlocks plugin is for the WordPress Block Editor, so it is not available in the WordPress Classic Editor.
    The Avia Editor (Advanced Layout Builder) doesn’t support other editor plugins.

    Best regards,
    Mike

    in reply to: Image with hotspots that open image in lightbox #1355277

    Hi,
    Thanks for the feedback, your approach seems fine, another way would be to add the page ID to the title attribute lines like this:

    function custom_hotspot_title_script() { ?>
      <script>
    (function($){
    $('#top.page-id-1 .av-image-hotspot-1 a').attr('title','hotspot-1');
    $('#top.page-id-1 .av-image-hotspot-2 a').attr('title','hotspot-2');
    $('#top.page-id-1 .av-image-hotspot-3 a').attr('title','hotspot-3');
    $('#top.page-id-1 .av-image-hotspot-4 a').attr('title','hotspot-4');
    $('#top.page-id-1 .av-image-hotspot-5 a').attr('title','hotspot-5');
    $('#top.page-id-1 .av-image-hotspot-6 a').attr('title','hotspot-6');
    $('#top.page-id-1 .av-image-hotspot-7 a').attr('title','hotspot-7');
    $('#top.page-id-1 .av-image-hotspot-8 a').attr('title','hotspot-8');
    
    $('#top.page-id-2 .av-image-hotspot-1 a').attr('title','hotspot-1');
    $('#top.page-id-2 .av-image-hotspot-2 a').attr('title','hotspot-2');
    $('#top.page-id-2 .av-image-hotspot-3 a').attr('title','hotspot-3');
    $('#top.page-id-2 .av-image-hotspot-4 a').attr('title','hotspot-4');
    $('#top.page-id-2 .av-image-hotspot-5 a').attr('title','hotspot-5');
    $('#top.page-id-2 .av-image-hotspot-6 a').attr('title','hotspot-6');
    $('#top.page-id-2 .av-image-hotspot-7 a').attr('title','hotspot-7');
    $('#top.page-id-2 .av-image-hotspot-8 a').attr('title','hotspot-8');
    $('#top.page-id-2 .av-image-hotspot-9 a').attr('title','hotspot-9');
    $('#top.page-id-2 .av-image-hotspot-10 a').attr('title','hotspot-10');
    $('#top.page-id-2 .av-image-hotspot-11 a').attr('title','hotspot-11');
    $('#top.page-id-2 .av-image-hotspot-12 a').attr('title','hotspot-12');
    $('#top.page-id-2 .av-image-hotspot-13 a').attr('title','hotspot-13');
    $('#top.page-id-2 .av-image-hotspot-14 a').attr('title','hotspot-14');
    $('#top.page-id-2 .av-image-hotspot-15 a').attr('title','hotspot-15');
    $('#top.page-id-2 .av-image-hotspot-16 a').attr('title','hotspot-16');
    $('#top.page-id-2 .av-image-hotspot-17 a').attr('title','hotspot-17');
    
    $('#top.page-id-3 .av-image-hotspot-1 a').attr('title','hotspot-1');
    $('#top.page-id-3 .av-image-hotspot-2 a').attr('title','hotspot-2');
    $('#top.page-id-3 .av-image-hotspot-3 a').attr('title','hotspot-3');
    $('#top.page-id-3 .av-image-hotspot-4 a').attr('title','hotspot-4');
    $('#top.page-id-3 .av-image-hotspot-5 a').attr('title','hotspot-5');
    $('#top.page-id-3 .av-image-hotspot-6 a').attr('title','hotspot-6');
    $('#top.page-id-3 .av-image-hotspot-7 a').attr('title','hotspot-7');
    $('#top.page-id-3 .av-image-hotspot-8 a').attr('title','hotspot-8');
    
    $('.av-image-hotspot a').magnificPopup({ 
        type: 'image',
        image: {
            titleSrc: 'title' 
        }
    });
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_hotspot_title_script');

    but I can’t say that one way is better than the other, I guess it’s just preference.

    Best regards,
    Mike

    in reply to: just installed Enfold – getting demo data error #1355276

    Hi,
    Thanks for the feedback, your server doesn’t have the PHP ZipArchive Extension activated,
    2022-06-14_006.jpg
    you should be able to active this in the cPanel under PHP Selector it probably says Zip like in this screenshot
    2022-06-14_007.jpg
    I see that you are using PHP v8.1.5, on my server PHP v8+ didn’t have the same PHP setting active by default and I had to manually compare them to PHP v7.4, your server may have the other extensions activated as in my screenshot, but if you still have trouble try switching to PHP v7.4 and then try importing again, if it then works you can always switch back to PHP v8.1.5, if you like.
    I disabled all of your plugins to ensure there was no conflict in the demo import, please try like this.

    Best regards,
    Mike

    in reply to: Image names appearing on hover #1355273

    Hi,
    On the page Modifier les thèmes under Fichiers du thème please click on the title functions.php
    2022-06-14_005.jpg
    I added the script for you, please check.
    If you find a page that is still showing the mouse-over image titles, please link to it so we can examine and adjust the script.

    Best regards,
    Mike

    in reply to: Slide show image cut at the edge #1355270

    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: Two Questions #1355249

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

    Hey Angelo,
    Please see this thread for the temp solution until the next update.
    If you don’t want to edit the theme files, just uncheck Use first slides caption as permanent caption option and the buttons will work correctly.

    Best regards,
    Mike

    in reply to: I cannot set my start page #1355186

    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

    in reply to: Masonry Change pictures #1355184

    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: Slide show image cut at the edge #1355183

    Hi,
    Please try creating a new image that is 1280×720, if this doesn’t help then try this new image in the full width slider instead or your current full screen slider, the full screen slider is meant to cover the full screen and in doing so the edges will be cropped.
    If we change this to contain to the screen then the image will not be full width unless the image is stretched or the image is the size of the screen, in your case 1280×720.
    When I look at your site I can’t see any difference between the backend media library image:
    2022-06-14_003.jpg
    and the frontend slider view at 1280×720:
    2022-06-14_004.jpg
    Perhaps you should try the full width slider instead as it will set the image height based on it’s ratio and always have full width.
    To add a screenshot please try using an Screenshot service and pasting the image URL in your post.

    Best regards,
    Mike

    in reply to: Slide show image cut at the edge #1355155

    Hi,
    It looks like you have changed the image, yesterday the image used was ours-2560-x-1440-1, note the paw:
    2022-06-14_002.jpg
    today the image is ours-2560-x-1440, note the paw:
    2022-06-14_003.jpg
    and today the frontend view matches the new image at 1280×720
    2022-06-14_004.jpg
    So it looks like your image change has corrected, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Customize Hospot-Tooltip #1355148

    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: Image with hotspots that open image in lightbox #1355114

    Hi,
    Thank you for the feedback, I examined closer on my demo site and found that by entering the image URL directly the WordPress media library meta fields are not called like they are when a gallery element is, so I don’t see a way to get the title from the link.
    But the following script will allow you to add specific titles to each hotspot and show it in the lightbox.
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_hotspot_title_script() { ?>
      <script>
    (function($){
    $('.av-image-hotspot-1 a').attr('title','hotspot-1');
    $('.av-image-hotspot-2 a').attr('title','hotspot-2');
    $('.av-image-hotspot-3 a').attr('title','hotspot-3');
    $('.av-image-hotspot-4 a').attr('title','hotspot-4');
    $('.av-image-hotspot-5 a').attr('title','hotspot-5');
    $('.av-image-hotspot-6 a').attr('title','hotspot-6');
    $('.av-image-hotspot-7 a').attr('title','hotspot-7');
    $('.av-image-hotspot-8 a').attr('title','hotspot-8');
    $('.av-image-hotspot a').magnificPopup({ 
        type: 'image',
        image: {
            titleSrc: 'title' 
        }
    });
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_hotspot_title_script');
    

    and adjust the titles to suit, for example for hotspot 1, change $('.av-image-hotspot-1 a').attr('title','hotspot-1'); to $('.av-image-hotspot-1 a').attr('title','custom title for hotspot 1');
    I assume that this is your only hotspot element on your site, if not them we can make this script work on this one page only by adding page IDs to it.

    Best regards,
    Mike

    in reply to: Newely added social icon not showing up #1355112

    Hi,
    Thanks for the login, the font family for this icon is “home”, I corrected and now your google icon shows.
    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: landing page still showing header area with lines #1355108

    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: How to make full-screen height element with imagemap #1355106

    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: Slide show image cut at the edge #1355076

    Hi,
    Thanks for the feedback, when I test at 1280×720 the bear’s ear and paw are the same as the original image in the inset of the screenshot above:
    2022-06-13_001.jpg
    please compare this to the original image linked below, perhaps the image was cropped when you uploaded it, but your image being used had the edge of the ear & paw to the edge of the screen.
    If you uploaded an image with more space away from the ear and paw, try resizing your image to 1280×720 and uploading again.

    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: Broken buy product box #1355029

    Hi,
    Unfortunately, I can not reproduce this, I’m also using the latest versions in my screenshot above.
    Perhaps you have another customization or plugin causing this, once you have your site online let us know and we will examine for you, but I can’t blindly advise.

    Best regards,
    Mike

    Hi,
    Try disabling Enfold Theme Options ▸ Page Preloading
    Or try this css:

    #top .avia_loading_icon .av-siteloader {
    	display: none !important;
        visibility: hidden !important;
    }
    
    #top .avia_loading_icon {
        background: rgba(0,0,0,0) !important;
    }

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

    Best regards,
    Mike

    in reply to: Slide show image cut at the edge #1355005

    Hi,
    Thanks for the feedback, I added this css:

    .avia-fullscreen-slider .avia-slideshow>ul>li {
        background-size: 100vw 100vh !important;
        background-repeat: no-repeat !important;
    }

    compared to the actual image (inset) and the slider image doesn’t seem to be cropped, note the ear and the paw are the same:
    2022-06-12_009.jpg
    please clear your browser cache and check.
    If this doesn’t look the same on your desktop please use this link to see your screen resolution and let us know so we can adjust.

    Best regards,
    Mike

    in reply to: background video not working and #1355004

    Hi,
    To have a video and blog posts try this setup:
    a grid row element, 2/5 + 3/5 with a video element in the 2/5 and a blog element in the 3/5:
    2022-06-12_007.jpg
    frontend results:
    2022-06-12_008.jpg

    Best regards,
    Mike

Viewing 30 posts - 11,521 through 11,550 (of 34,910 total)