Viewing 30 results - 1,801 through 1,830 (of 106,480 total)
  • Author
    Search Results
  • #1480016

    Hi,

    Thank you for the update.

    You can add this css code to adjust the height of the space reserved for the masonry images:

    .av-fixed-size .av-masonry-entry .av-inner-masonry-sizer {
        padding-bottom: 160%;
    }

    Best regards,
    Ismael

    #1479998

    Hey distefanoepartners,
    Please explain further.
    Do you want to “reset” the site and lose all content?
    Did you build a site on the demo and want to remove the demo images but keep your content?
    Do you want to try a deferent demo and retain your content?
    etc.

    Best regards,
    Mike

    #1479997

    Hey fanlokbun,
    I check the page below, but I can’t reproduce your error in Safari or Chrome at 2560px:
    Screen Shot 2025 03 23 at 2.53.27 PM
    Screen Shot 2025 03 23 at 2.55.59 PM

    Best regards,
    Mike

    #1479990

    Hi,
    I checked your link, but I don’t find a “more” tag on any of your pages, I probably have missed it as I don’t read your language.
    Guenni007’s solution seems to work for removing the animation, but if we could see the issue it would help.
    Are you trying to use the “more” tag in a ALB element?
    Perhaps a admin login would help, to add a screenshot to highlight the issue, please try using an Screenshot service and pasting the image URL in your post.

    Best regards,
    Mike

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

    #top .av-iconlist-small.avia-icon-list-right {
        text-align: left;
        width: 93px;
    }

    Screen Shot 2025 03 23 at 12.02.55 PM

    Best regards,
    Mike

    #1479969

    Hey ballindigital,
    This is due to the “Alternate Background Color”
    Screen Shot 2025 03 23 at 8.41.28 AM
    I changed for you, please check.
    Screen Shot 2025 03 23 at 8.43.47 AM

    Best regards,
    Mike

    #1479964

    Thanks Mike, but to clarify, I can set my own conditions – as mentioned I’d like to HOOK into the logic and filter for when there’s only 1 image in the gallery.

    Question: Is there an action hook or filter in the thumbnail area of the Portfolio code that I can tap into?

    #1479962

    I appreciate that I could edit a new version of every photo for every featured blog post image, but it would be far simpler and less time-consuming if I could just set the featured image size once. Is this possible? I’m very grateful that you’ve provided a code to make the image full-size, I’m hoping there is an option to set the height too?

    #1479958

    Hi,
    Try uploading a new image that is 845px-321px and remove the function above.

    Best regards,
    Mike

    ballindigital
    Participant

    We’re experiencing an issue on our website rosevel.ie regarding how images behave on mobile devices.

    We’ve configured our product images to use the lightbox feature, so when clicked, they enlarge on the same screen without navigating away from the product page. This works correctly on desktop, and in most cases on mobile too.

    However, on mobile, we’ve noticed that sometimes when a user taps an image, it opens the image in a new page instead of using the lightbox, effectively taking the user away from the product page.

    Here’s a quick video showing your what I mean:

    View post on imgur.com

    This is problematic as it disrupts the user experience and could negatively impact conversions.

    Could you please look into this and let us know how to fix it? Ideally, we want the lightbox to work consistently across all devices, especially mobile.

    Thanks in advance for your help!

    #1479911

    Hi,
    Your image is cropped, see below.
    You could try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_filter( 'post_thumbnail_size', 'custom_single_event_post_thumbnail_size' );
    function custom_single_event_post_thumbnail_size($size) {
        if( !is_singular('post') ) {
            return;
        }
        if( ! has_post_thumbnail() ) {
            return;
        }
        $size = 'full'; 
        return $size;
    }

    otherwise we would need a login to examine.

    Best regards,
    Mike

    Hey Jak73,

    I’m not sure how their tests work, but if the image is in the source code then it can be indexed by search engines.

    Best regards,
    Rikard

    #1479895
    tribaleye13
    Participant

    Hey there best support team of all time!

    I’ve got a Masonry Gallery and want to use the excerpt texts.
    They show up at the bottom of the image, but INSIDE the image.
    I’d like to have place them OUTSIDE the image.

    See my mockup here
    How to achieve that with CSS?

    #1479892

    It still doesn’t work on Mobile, it disappears completely. On tablet, it shifts, and looks weird. I guess we have to manually adjust it for every screen size?

    I’m pretty sure back in the day there were banners, and they were attached to the physical images, making this easier. I just wish I knew how I removed them, cause I didn’t want them at the time.

    Also, with the categories, I want “Items with Promos” to show up at the top, but its only doing so on desktop. Its not doing so on mobile. Can you also check on tablet?

    Thank you so much

    Jak73
    Participant

    Hi,
    i added a background video in color section (selfhosted) on my startpage and added a fallback image to it for google to see some content.
    When i do a live test in google webmaster tools the color section stays empty. Google seems not to be able to fetch the fallback image.
    It seems to be important, that google finds the image and not a empty site.
    How can i change that?
    kind regards
    Jak

    #1479854
    betaphase
    Participant

    I’m using the Portfolio (ajax method) module and it looks great, but when there’s only 1 image, the thumbnail below is redundant, looks bad, and is poor UX.

    For now, I added “display:none style to “.avia-gallery-thumb” but that becomes a problem if more images are added.

    I’d like to HOOK into the logic and filter for when there’s only 1 image in the gallery, then I can either 1) add a class name like “is_single” to the div <div class=”avia-gallery-thumb”> so that I can set “display:none” conditionally, or 2) prevent the div from being outputted altogether.

    Is this possible, or is it more of a feature request? Or both?

    • This topic was modified 1 year, 1 month ago by betaphase.
    #1479826

    Hey mosaic,

    Thank you for the inquiry.

    You can add this code in the functions.php file to adjust the default size of the featured image:

    function avf_customization_modify_thumb_size( $size ) {
          $size['entry_without_sidebar'] = array( 'width' => 9999, 'height' => 9999 );
          $size['entry_with_sidebar'] = array( 'width' => 9999, 'height' => 9999 );
          return $size;
    }
    
    add_filter( 'avf_modify_thumb_size', 'avf_customization_modify_thumb_size', 10, 1 );

    After adding the filter or code, you’ll have to regenerate the thumbnails or upload the images again:

    https://wordpress.org/plugins/regenerate-thumbnails/

    IMPORTANT: Please make sure to create a site backup or restore point before proceeding.

    Related thread: https://kriesi.at/support/topic/full-image-on-single-post/#post-1471379

    Best regards,
    Ismael

    Hi,

    Yes, the image count and file size may contribute to the delayed execution of the scripts, so selecting smaller versions of the images and compressing them should help. As mentioned above, reducing the number of images on the page, enabling pagination, or completely removing the second gallery should also help.

    https://kriesi.at/archives/4-key-wordpress-image-optimization-tips
    https://gtmetrix.com/optimize-images.html

    Best regards,
    Ismael

    #1479804

    Hi,
    and the email addresses:
    Enfold Support 6613
    perhaps your email is in the spam folder, or it is being marked as spame and the server is deleting it. Try using a email address from your domain and set your site to use SMTP for sending emails with a login and password instead of using the default WP php mail.
    See this plugin: WP Mail SMTP

    Best regards,
    Mike

    #1479794
    mosaic
    Participant

    Hi, how can I change the featured image size on blog posts? At the moment my image is cut off.

    Hi,

    Thank you for the update.

    Try to add this css code to disable the animation of the masonry items and make them visible immediately on page load.

    #top .av-masonry-image-container, #top .av-inner-masonry-content, #top .av-masonry-pagination {
        transition: none;
    }
    
    #top .av-inner-masonry {
        transform: translateZ(0px) translateY(0px) rotateX(0deg);
        opacity: 1;
        animation: none;
    }
    
    #top .av-masonry-entry {
        opacity: 1;
        visibility: visible;
    }

    Best regards,
    Ismael

    #1479742

    Hi,

    Thanks for the clarification. Enfold doesn’t remove any image data on updates, are you sure that the images were not edited by someone? I checked the Image element on a test installation, and the copyright information works as expected in the latest version.

    Best regards,
    Rikard

    #1479737

    Hey Rikard,
    Thanks for Feedback!
    But I dont understand: so I have to design all the elements (Post image, Categories, Date, Tags which were there without Layout Builder) with the Layout Builder for each post?

    without Layout Builder

    with Layout Builder

    I would image you have done a basic check on this function.

    The problem does not occur if you click VIEW PAGE from the bar at the top of the page.

    But it does if you reload the page or load the page from front end cache when signed out.

    Something is preventing the animation on the text running.

    I’ve swapped the elements to colour sections with background images instead of full width sliders which has solved the issue.

    But this is still a bug present in Enfold.

    #1479704

    Hi Ismael,
    im talking about the copyright just below the images. It was always there, after some updates between september 2024 and now, it disappeared and we had to manually add the copyright info to images.

    Regards

    This reply has been marked as private.

    Hi,

    It seems to be working correctly on our end. The images take a while to load and transition because there are many items on one page. We recommend enabling pagination or removing the other Masonry gallery.

    Best regards,
    Ismael

    #1479668
    Sandy
    Participant

    I understand that Fontello doesn’t include an icon for BlueSky icon and I tried playing with some code that other support posts mentioned, but with no success. What is the Custom CSS to include BlueSky with a custom image in the theme options social profiles my situation?

    #1479667

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

    .avia_cookie_text {
    	max-width: 50%;
    	line-height: 12px;
    }

    Screen Shot 2025 03 18 at 6.08.00 PM

    Best regards,
    Mike

    #1479658

    Hi,
    I tested your fontello-d73127ed.zip and added this php code to my functions.php

    function avia_add_custom_icon($icons) {
    $icons['mastodon'] = array( 'font' =>'mastodon-bluesky', 'icon' => 'ue800');
    $icons['bluesky'] = array( 'font' =>'mastodon-bluesky', 'icon' => 'ue801');	
    return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    
    function avia_add_custom_social_icon($icons) {
    $icons['mastodon'] = 'mastodon';
    $icons['bluesky'] = 'bluesky';
    return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    add_filter('avia_social_share_link_arguments', 'avia_add_social_share_link_arguments', 10, 1);
    function avia_add_social_share_link_arguments($args){
        $mastodon = array('mastodon' => array("encode"=>true, "encode_urls"=>false, "pattern" => "https://www.mastodon.com/", 'label' => __("Share on mastodon",'avia_framework')));
    	$bluesky = array('bluesky' => array("encode"=>true, "encode_urls"=>false, "pattern" => "https://www.bluesky.com/", 'label' => __("Share on bluesky",'avia_framework')));
        $args = array_merge($mastodon,$bluesky, $args);
        return $args;
    }

    and this css to my quick css:

    #top #wrap_all .av-social-link-mastodon:hover a{
        color:#fff; 
        background-color:blue; 
    }
    #top #wrap_all .av-social-link-bluesky:hover a{
        color:#fff; 
        background-color:blue; 
    }

    and they both show in my social profiles:
    Screen Shot 2025 03 18 at 4.09.25 PM
    and in my “Profile Links At The Bottom Of Your Blog Post”
    Screen Shot 2025 03 18 at 4.11.09 PM
    and in the header:
    Screen Shot 2025 03 18 at 4.15.24 PM
    and in the “Share this entry” on blog posts:
    Screen Shot 2025 03 18 at 4.16.42 PM
    please give this a try.

    Best regards,
    Mike

Viewing 30 results - 1,801 through 1,830 (of 106,480 total)