Viewing 30 results - 871 through 900 (of 10,101 total)
  • Author
    Search Results
  • #1349412

    Hi navindesigns!

    Thank you for the inquiry.

    Is this a duplicate of this thread?

    // https://kriesi.at/support/topic/move-gallery-caption-below-thumbnails/#post-1348740

    For the horizontal gallery, you have to edit the config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.php and place this code after line 615.

    $output .=      "<span class='avia-gallery-caption'>{$caption}</span>";
    

    After this code.

    {
    						$lightbox_attr = Av_Responsive_Images()->html_attr_image_src( $lightbox_img_src, false );
    						$output .= "<a {$lightbox_attr} class='av-horizontal-gallery-link' {$display_char} title='{$lightbox_title}' alt='{$alt}'>";
    						$output .= '</a>';
    					}
    

    Regards,
    Ismael

    #1349314
    navindesigns
    Participant

    On my page towards the middle – I have 2 galleries – http://balrajt9.sg-host.com/local-services/

    1- Horizontal Gallery

    2- Masonry Gallery

    I would like to use the Horizontal Gallery but with the captions below and it should look like the caption on the Masonry Gallery. Also, on the Horizontal Gallery, I would like the lightbox to open up when the user clicks on any part of the thumbnail (not just on the bottom right with the arrows icon). I basically want to duplicate everything Masonry Gallery but make it into a slider which the Horizontal Gallery accomplishes.

    Thanks in advance

    #1349177
    95mc
    Participant

    Hi,

    We have been create a gallery product.
    We like that the thumbnail images was align to bottom not top.
    And put the title on the bottom.

    Could you help me?

    Thanks advance.

    Antonio.

    #1348740

    Hey navindesigns,

    Thank you for the inquiry.

    This is possible but you have to modify the enfold/config-templatebuilder/avia-shortcodes/gallery/gallery.php around line 683.

    				
    				$thumbs .= "<a {$lightbox_attr} data-rel='gallery-" . self::$gallery . "' data-prev-img='{$prev[0]}' {$class} data-onclick='{$counter}' title='{$lightbox_title}' {$markup_url} {$rel}>";
    				$thumbs .=		$img_tag;
    				$thumbs .=		"
    <div class='big-prev-fake'>{$prev_img_tag}</div>
    ";
    				$thumbs .= '</a>';
    

    Replace it with:

    $caption = wp_get_attachment_caption( $attachment->ID );
    
    				$thumbs .= "<a {$lightbox_attr} data-rel='gallery-" . self::$gallery . "' data-prev-img='{$prev[0]}' {$class} data-onclick='{$counter}' title='{$lightbox_title}' {$markup_url} {$rel}>";
    				$thumbs .=		$img_tag;
    				$thumbs .=      "<span class='avia-gallery-caption'>{$caption}</span>";
    				$thumbs .=		"
    <div class='big-prev-fake'>{$prev_img_tag}</div>
    ";
    				$thumbs .= '</a>';
    

    Then add this css code to display the avia-gallery-caption container.

    #top .avia-gallery .avia-gallery-caption {
        display: block;
    }

    This modification should display the caption below the gallery thumbnails.

    Best regards,
    Ismael

    #1348698
    navindesigns
    Participant

    On my site I have two test galleries (one regular gallery component and one masory gallery) – http://balrajt9.sg-host.com/community-2/ towards the middle of my page

    GALLERY – NEED CAPTION BELOW THUMBNAILS – Gallery Component
    MASONRY – THIS IS WHAT I NEED THE GALLERY CAPTION TO LOOK LIKE – Masonry Gallery Component

    I like how the caption is on the second one however, I want to use the first gallery (because I want it to be a slider)

    How can I make the caption appear below (exactly like the second masonry gallery) on the first gallery?

    #1348475

    Hey BrendanG,

    Thank you for the inquiry.

    You can add this code in the functions.php file to override the default thumbnail size in the single post page.

    add_action("ava_after_main_title", function() {
      global $avia_config;
    
      if( is_singular("post") ) {
        $avia_config['image_size'] = 'full';
        $avia_config['preview_mode']  = 'custom';
      }
    }, 10);
    

    Best regards,
    Ismael

    #1348438

    In reply to: image size magazine

    Hi Veloryana,

    You can either re-upload the images, if there’s many images then you can still use this plugin: https://wordpress.org/plugins/regenerate-thumbnails/
    Hope it helps.

    Best regards,
    Nikko

    #1348339
    rob2701
    Participant

    Hi,

    Although the portfolio items don’t show the author of the items themselves, I noticed that the author (i.e. creator) does show up in the search results, which is a bit stange if for example the webmaster name is shown instead of the website owner’s name.

    So I added this to the child theme functions.php to be able to change the author on those items:

    // ***** Add filter for author to portfolio items (galleries) *****/
    add_filter('avf_portfolio_cpt_args', 'avf_portfolio_add_cpt_args', 1);
    function avf_portfolio_add_cpt_args($args) {
    	$args['hierarchical'] = true;
    	$args['supports'] = array('title','thumbnail','excerpt','editor','comments', 'page-attributes','author');
    	return $args;
    }

    So far so good, I can now change the author of the portfolio items so they show in the search results like they should.
    Today however I noticed that if the above code is kept there, the previous-next buttons (navigation) on portfolio items disappear, so I had to comment the above code out again.

    While this is no problem in itself (the author being changed already and stored in the database), I am curious how and why this code can interfere with the portfolio navigation buttons (they continue to work on blog posts though).

    Thanks for clarifying!

    Rob

    #1348158

    Hello again, I added the line, but no results yet.
    below are lines 37 – 43 of my loop-author.php:
    `$size = strpos($blog_style, ‘big’) ? (strpos($current_post[‘post_layout’], ‘sidebar’) !== false) ? ‘entry_with_sidebar’ : ‘entry_without_sidebar’ : ‘square’;
    $current_post[‘slider’] = get_the_post_thumbnail($current_post[‘the_id’], “entry_with_sidebar”);
    $current_post[‘title’] = get_the_title();
    $current_post[‘content’] = apply_filters(‘avf_loop_author_content’, get_the_excerpt());
    $with_slider = empty($current_post[‘slider’]) ? ” : ‘with-slider’;`

    I have a similar problem with my category pages: the thumbnails just arent getting rendered at all.
    I get this element: <header class="entry-content-header">
    but not: <div class='page-thumb'>
    which makes me suspicious that the call on line 23 in loop-page.php (below) isn’t returning a value for these posts.
    $thumb = get_the_post_thumbnail( get_the_ID(), $avia_config['size'] );

    Additional info:
    – my primary page for my articles (the one that looks right) is set as the “blog page” in the ACOM theme options, and these other pages are not. Is there some kind of styling or templating that happens for the formatting of the primary page that I can copy over to my /category/{category} and author pages?

    #1348030

    Hi,

    Thank you for the update.

    To adjust the size of the featured images, please look for this code around line 40 in the same loop-author.php file..

    $current_post['slider'] = get_the_post_thumbnail($current_post['the_id'], $size);
    

    .. and replace it with:

    $current_post['slider'] = get_the_post_thumbnail($current_post['the_id'], "entry_with_sidebar");
    

    We adjusted the size parameter of the get_the_post_thumbnail function and made sure that it displays the “entry_with_sidebar” thumbnail.

    Best regards,
    Ismael

    #1347657

    Hey Joakim,

    Thank you for the inquiry.

    You may need to unregister some thumbnails and regenerate the images in the library as suggested in these threads.

    // https://kriesi.at/support/topic/enfold-image-sizes-3/#post-1109028
    // https://kriesi.at/support/topic/how-can-i-delete-all-enfold-image-sizes/

    This article should help.

    // https://wpengine.com/resources/wordpress-media-library-clean-up/

    Best regards,
    Ismael

    #1347515
    noellmn
    Participant

    I have a problem with a youtube video on the page: https://www.spreewald-luftaufnahmen.de/drohnen-aufnahmen-firma/

    It was added with a thumbnail but won’t play. On my other website is exactly the same video with the same link and it works: https://www.sgl-concept.de/werkstatt/

    I have already checked the wordpress versions, everything is identical. The code looks like it is incomplete. Can you tell me why a script is written? The code seems incomplete since the <div is started but not completed.

    The script:
    <script type=”text/html” class=”av-video-tmpl”>
    <div class=’avia-iframe-wrap’>
    <iframe title=”SGL – Concept GmbH | Virtuelle Tour mit Drohne 4K | Spreewald Luftaufnahmen” width=”1500″ height=”844″ src=”https://www.youtube.com/embed/MN8fRjOeROQ?feature=oembed&autoplay=1&loop=0&controls=1&mute=1&#8243; frameborder=”0″ allow=”accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture” allowfullscreen>
    </script>

    the text is also under the video, but this should be next to it.

    Thank you and best regards!

    #1347188

    Wenn du mit einem Child-Theme arbeitest ist das möglich, indem du dir ein child-theme loop-search.php erstellst.
    wenn du das öffnest, siehst du auf Zeile 37 im neuesten Enfold :

    echo "<span class='search-result-counter {$counterclass}'>{$post_loop_count}</span>";
    

    dahinter könnte man platzieren: ( this is edited content here – it is better to avoid placement if there is image )

    $searchimage = get_the_post_thumbnail( $the_id, 'square' );
    if( ! empty( $searchimage ) ) {
    	echo "<a class='slide-image search_image' href='".get_permalink()."'><span class='search-result-image'>{$searchimage}</span></a>";
    }

    wobei hier square durch andere Image-sizes von Enfold ersetzt werden kann ( large etc.)
    Der Rest wäre dann css.
    Dann hast du beides – die Nummerierung und ein featured Image.

    hier wäre die loop-search.php auf Basis von Enfold 4.9.2.1 – : https://pastebin.com/8d1jCDdJ
    platziert würde diese ( ich behalte gerne die original Baumstruktur bei ) im child-theme/includes folder

    schau mal hier: https://webers-testseite.de/?s=portfolio

    __________
    PS :
    das wäre auch mit der ajax Suche möglich – ohne ein extra Plugin.
    ___________

    PPS:
    hier sind mal die image-sizes, die man da setzen kann ( aus functions.php 211ff )

    widget (36x36), 
    square (180x180),
    featured (1500x430),
    featured_large (1500x630),
    extra_large (1500x1500),
    portfolio (495x400),
    portfolio_small (260x185),
    gallery (845x684),
    magazine (710x375),
    masonry (705x705),
    entry_with_sidebar (845x321),
    entry_without_sidebar (1210x423),
    • This reply was modified 4 years ago by Guenni007.
    #1346486
    terishka1
    Participant

    HI,

    How do I remove the gallery widget boarder on the thumbnails. I found this thread but the code does not work.

    #1346370

    Hi BrendaSarg,

    Thanks for giving us admin access.
    I have removed the one thumbnail that is duplicate in the gallery, please review your site.

    Best regards,
    Nikko

    #1346341
    BrendaSarg
    Participant

    Hi there, I see a few post about this, but no solutions I can do myself.

    In the private content is a link to the page I have the gallery inserted – you’ll see the thumbnails are duplicated. I have disabled the css file merging and compression – it didn’t help.

    #1346297

    In reply to: Home page broken

    I waited 2days . today i use google insights and devtools for first load the home page.
    same error code and broken layout.. I feel confused why it still load the past home page???
    I have already canceled the hide pop up quote form. can you check with the google insight?
    you will find the broken layout in google insight thumbnail. please help. login in private content.
    many thanks in advance.

    #1346222

    Hey sebzh22,
    Merci pour votre patience et les captures d’écran, votre première capture d’écran concerne les vignettes woocommerce, je ne pense pas que vous puissiez les désactiver et que la boutique woocommerce fonctionne correctement.
    Votre deuxième capture d’écran semble provenir de la bibliothèque multimédia principale et la plus petite vignette 150 a été supprimée, essayez donc de l’activer à nouveau.

    — Translated with Google —

    Thank you for your patience and the screenshots, your first screenshot is of woocommerce thumbnails, I don’t believe that you can disable these and have the woocommerce shop work correctly.
    Your second screenshot looks like it is of the backend media library and the smallest thumbnail 150 has been removed, so try enabling this again.

    Best regards,
    Mike

    #1345678

    Topic: Posts: remove lines

    in forum Enfold
    tanjatheiler
    Participant

    Hello, I already had contact in thread 1345370. You helped me with the quick css.

    Unfortunately the problem is not completely solved yet. My customer doesn’t want the grid view for the posts, but the “single author, large thumbnail” view. The double line appears below the post. Can you remove them or at least center them in the column?

    Next I want the short gray line under the title in green.

    Thanks for the help, Tanja

    #1345501

    Hi,
    Glad this helped,

    Pourriez-vous me dire ou aller pour supprimer les miniatures qui sont créées automatiquement?

    Once the thumbnails are created you would need to delete the ones you don’t want via FTP, or your cPanel file manager, but you can stop these from being created if you know that you won’t need some of them by using the plugin Simple Image Sizes and setting the sizes to zero.
    Then future image uploads will not create the thumbnails marked with a zero.

    Please note that we ask that each thread stays “on topic” and different threads are used for multiple questions, this helps future users find solutions easier and multiple Moderators assist you with a solution, thank you for understanding.

    Best regards,
    Mike

    #1345478

    Personally, I was only bothered by the galleries with previews.
    https://kriesi.at/themes/enfold-2017/elements/gallery/
    If you hover a little bit over the thumbnails, an Enfold Tooltip and the WordPress Tooltip will be shown at the same time. Therefore my solution to hover the Titles in a Substitute Title ( org_title ) to cache.

    there is a simpler method to remove all titles – but then as mentioned above – the seo aspect will be ignored – and if you decide to show on an image a lightbox – the title is missing in the bottom-bar of the lightbox.

    #1345468

    Hey vantagepointmg,

    Thank you for the inquiry.

    With that said, I would also mention that themes must be designed to look well on many different screen sizes, from small mobile phones up to large computer displays, so it’s possible your theme developer has done things this way intentionally.

    What the developer said above is actually correct. The theme is designed to look well on every screen sizes and displays, so most thumbnails will usually have to be larger than their actual container. However, every image element in the theme has a dedicated option where you can change or select a specific image size to display. In the slider elements for example, you can go to the Styling > Slideshow Settings panel and select a different image size in the Slideshow Image and Video Size dropdown. With this option you can choose to display a thumbnail which has a dimension that is almost the same as the slider container. Unfortunately, we cannot control the size of images from external sources such as instagram or facebook.

    Best regards,
    Ismael

    #1345424
    vantagepointmg
    Participant

    Hello,

    I’ve run several performance reports on one of our sites (below) and have reached out to plugin support and hosting support regarding the performance.

    The report (from GT Metrix) is saying there’s two main issues:
    1. Avoid enormous network payloads
    2. Properly size images

    I spoke with the hosting company, WP Engine, and they suggested reaching out to the plugin developer directly, which I did.

    This is what they got back to me with:

    This is Joseph from Imagify, and I’ll gladly assist you here!

    I ran a Pagespeed test of my own to see the specific results you’re getting, and I can see the following 2 sections being flagged that are the sections related to Imagify (these sections are related to image optimization and serving images as WebP format on your pages). However, I don’t think the issue with the images specifically flagged is related to Imagify because they are all external images (see highlighting of a couple examples below):

    5ce40e3163193a0362a81b60db6f588a.png
    1a5414952590b0f4b0e070718cb63469.png

    If we look at a list of all the images on your page, we can see that all the local ones (the ones on your website’s server) are in WebP format (meaning they have been optimized and are displaying on your page properly):

    cafc613775134543c742be9bcc3332a2.png

    Basically what this all means is that you have some images on your page(s) that seem to be from Instagram and Facebook. Since those images are being served from external servers, there’s nothing that can be done about them, unfortunately.

    Regarding these 2 items that you mentioned:

    1. Avoid enormous network payloads
    2. Properly size images

    The first one is a bit more of a general category, and part of it does relate to the “Efficiently Encode Images” and “Serve images in next-gen format” categories that are related to Imagify, but since as I mentioned there’s not much further we can do about the remaining external images, I don’t think there is anything further from Imagify’s perspective that I can suggest.

    The “Properly Size Images” warnings are actually not related to Imagify. Imagify doesn’t technically serve images, as that is the job of your theme. When you upload an image, your theme creates all the different thumbnail sizes of that image and (when working properly) serves the appropriate size based on where the image is used on your site, and the size of the visitor’s screen.

    The reason that you’re getting these warnings is that your theme is serving images that are larger in size than the size at which they are actually displayed on your site. So for example, if an image is actually 1000 pixels wide, but your theme uses HTML or CSS to resize it down to 500 pixels wide when it is displayed, these warnings are saying your theme should actually just be creating a 500 pixel wide thumbnail version of the image to use.

    Imagify optimizes all your thumbnail image sizes to reduce file size. However, even an optimized image will still get flagged if its dimensions are larger than necessary for the context in which it is used. Although this is one of those external images, so Imagify is not able to optimize it either.

    With that said, I would also mention that themes must be designed to look well on many different screen sizes, from small mobile phones up to large computer displays, so it’s possible your theme developer has done things this way intentionally.

    Often, themes set image widths and heights based on a percentage of how wide the visitor’s screen is so the display looks good no matter the screen size. The downside of doing this, is that it causes the displayed dimensions of images (again based on percentages) to be somewhat smaller than the actual dimensions of the images, which leads to the speed tests flagging them, as is the case here.

    The best course of action is likely to ask your theme developer about this, and to see whether they have any solutions or suggestions on how things could be improved. However, this is a tradeoff between design and function, so it is possible that you might want to leave things as they are for the sake of your site’s design and layout.

    Any help would be appreciated

    #1345313

    Hey martystl,

    Thank you for the inquiry.

    We created a test page (see private field) with the easy slider and the selected “Gallery” thumbnail is displaying correctly in the slider as shown in the screenshot below.

    Screenshot: https://1drv.ms/u/s!AjjTfXSRbKTvwEcuz2W6Mw8ygIxS?e=d6FEZo

    Please make sure to upload images that are larger than the selected thumbnail.

    Best regards,
    Ismael

    #1345266

    Hey mmathiesen,
    Thanks for the link to your page, but I don’t see any duplicated thumbnails, I see that you are using a gallery big with thumbnails below, the large image is selected and changes based on the small thumbnails below, so the small thumbnail and the large image matching is correct and not a duplication.

    Best regards,
    Mike

    #1345262
    mmathiesen
    Participant

    I am having some issues with duplicated thumbnails in the gallery widget. See example here: https://www.musikkbooking.com/lyd-og-lys/leie-scene/
    What causes this issue? I have updated to the latest Enfold theme and WordPress. The issue appeared after updating to the latest version of Enfold.

    #1345260
    Jules
    Participant

    I reported this issue yesterday: https://kriesi.at/support/topic/youtube-video-not-showing-thumbnail-black-screen/#post-1345218

    It worked yesterday, but I applied the same suggested fix for the pages I listed below, but the black screen still appears. How can I resolve this? Thank you.

    Best Regards,
    Julio

    #1345188
    Jules
    Participant

    I have 2 posts that I created with YouTube videos using the Video Element (see links below) where the preview screen is black with the link in the upper left-hand corner. This is what typically occurs when the YouTube video is Private, but that’s not the case…they are Public. If I click on the link the video will play.

    Note: I created these posts from a template and simply changed the video URL and a couple other items. The other 2 posts created from the same template work fine.

    How can I have the preview screen / thumbnail show up vs. this black screen? Thanks for your help.

    Best Regards,
    Julio

    #1344942

    Hi,

    Please use this plugin – https://wordpress.org/plugins/simple-image-sizes/, change the size of “entry_with_sidebar” images and then regenerate them.

    You are not using a sidebar on your blog page so the changes to thumbnails would not affect your single blog posts :)

    Best regards,
    Yigit

    #1344768

    Thank you! That fixed it (temporarily, as you said). I was also getting that same spacing error on my iPhone, but was able to fix it with the code you provided.

    Is there a way to set it so there is only 1 column of thumbnail images on the phone, 2 columns for large phone/small tablet and 3 for tablet size screens? I like that there are 4 columns for desktop view.

    Regards,
    Jonah

Viewing 30 results - 871 through 900 (of 10,101 total)