Viewing 30 results - 4,861 through 4,890 (of 10,101 total)
  • Author
    Search Results
  • #686696

    Hey!

    Please check the class attribute in the code. Make sure that the “noHover” class is remove. If you want to add it to the gallery element, follow this one: https://kriesi.at/support/topic/remove-rollover-on-gallery-thumbnails/#post-686690

    Regards,
    Ismael

    #686588

    In reply to: Stop image downsizing?

    put this to functions.php of your child-theme:

    for Masonry Images

    function avia_change_gallery_thumbnail_link($size){
      return "full";
    }
    add_filter('avf_avia_builder_masonry_lightbox_img_size', 'avia_change_gallery_thumbnail_link', 10, 1);

    for gallery Images:

    function change_lightbox_size() {
        return "full";
    }
    add_filter('avf_avia_builder_helper_lightbox_size','change_lightbox_size', 10);

    per Enfold it is set to return “large”

    • This reply was modified 9 years, 7 months ago by Guenni007.
    #686156
    nullhorn
    Participant

    Hello,

    on my site I build a masonry gallery with a hyperlink to a subsite.
    The title of the subsite is displayed on the bottom of the thumbnail from the gallery,
    but I need the title in the middle of the thumbnail, so I want to centered the title horizontally and vertically.
    What can I configurate in the css that the stuff is working.

    Do you know what I mean or do you need a picture?
    JETZT
    GEPLANT

    Thanks
    Flo

    • This topic was modified 9 years, 7 months ago by nullhorn.
    #686026

    Hello Yigit, nice to here from you :)
    Please, see the link in private content.
    I need space between thumbnails/images and below. As I pointed in image above.

    • This reply was modified 9 years, 7 months ago by Milan.
    #685934

    Hey Rikard,

    of course, I can post a link to the site but actually the site is offline/ Coming Soon Mode Active.
    Attached you can find a screenshot of the portfolio I was talking about. As you can see the images have different sizes, even though I chose a certain Thumbnail Size.
    Screenshot of Portfolio

    #685566

    Great, thank you! Also, how can we add Arrow overlay to the thumbnails? #3 in the image below.

    #685538

    Hi Ismael,
    Thank you for the quick response. Unfortunately it does not seem to be working. Maybe I am explaining wrong? I would like the arrow to appear on hover over the masonry gallery: http://chrisgallop.com/blog/#featured. AND on Gallery thumbnails: http://chrisgallop.com/blog/portfolio-item/kitchen-upgrade/
    Avia layout for reference –

    Login info provided if needed.
    Thanks again!

    CurlyHost
    Participant

    Hello.
    We have created two blog layouts using the Advanced Layout Builder.
    The first correctly displays the content as desired but is limited to one entry as expected and desired.
    The second displays multiple entries, in a two column grid, as desired but displays the site’s admin nickname instead of the blog entry’s author nickname.

    We have modified the postslider.php in a child theme described here http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/. The code from the page is changed here:

    					if($loop_counter == 1) $output .= "<div class='slide-entry-wrap'>";
    					
    					$post_format = get_post_format($the_id) ? get_post_format($the_id) : 'standard';
    					
                        $markup = avia_markup_helper(array('context' => 'entry','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));
    					$output .= "<article class='slide-entry flex_column {$style} {$post_class} {$grid} {$extraClass} {$thumb_class}' $markup>";
    					$output .= $thumbnail ? "<a href='{$link}' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title=''>{$thumbnail}</a>" : "";
    					
    					if($post_format == "audio")
    					{	
    						$current_post = array();
    			            $current_post['content'] = $entry->post_content;
    			            $current_post['title'] =  $entry->post_title;
    						
    						$current_post = apply_filters( 'post-format-'.$post_format, $current_post );
    						
    						if(!empty( $current_post['before_content'] )) $output .= '<div class="big-preview single-big audio-preview">'.$current_post['before_content'].'</div>';
    					}
    					
    					$output .= "<div class='slide-content'>";
    
                        $markup = avia_markup_helper(array('context' => 'entry_title','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));
                        $output .= '<header class="entry-content-header">';
                        
                        if (!empty($title))
                        {
    	                    if($show_meta)
    	                    {
    		                    $taxonomies  = get_object_taxonomies(get_post_type($the_id));
    			                $cats = '';
    			                $excluded_taxonomies = array_merge( get_taxonomies( array( 'public' => false ) ), array('post_tag','post_format') );
    							$excluded_taxonomies = apply_filters('avf_exclude_taxonomies', $excluded_taxonomies, get_post_type($the_id), $the_id);
    			
    			                if(!empty($taxonomies))
    			                {
    			                    foreach($taxonomies as $taxonomy)
    			                    {
    			                        if(!in_array($taxonomy, $excluded_taxonomies))
    			                        {
    			                            $cats .= get_the_term_list($the_id, $taxonomy, '', ', ','').' ';
    			                        }
    			                    }
    			                }
    			                
    			                if(!empty($cats))
    		                    {
    		                        $output .= '<span class="blog-categories minor-meta">';
    		                        $output .= $cats;
    		                        $output .= '</span>';
    		                    }
    	                    }
    	                    
                        	$output .=  "<h3 class='slide-entry-title entry-title' $markup><a href='{$link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>";
                        	$output .= '<span class="av-vertical-delimiter"></span>';
                        }
                        
                        $output .= '</header>';
    
                        if($show_meta && !empty($excerpt))
    					{
    						$meta  = "<div class='slide-meta'>";
    
    						//if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio') {
    						//	$link_add = $commentCount === "0" ? "#respond" : "#comments";
    						//	$text_add = $commentCount === "1" ? __('Comment', 'avia_framework' ) : __('Comments', 'avia_framework' );
    
    						//	$meta .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>";
    						//}
    						
    						
    						
                $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));
    						$meta .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time>";
    						//$meta .= "</div>";
    
    						$meta .= "<div class='slide-meta-del'>/</div>";
    						$meta .= "<div class='slide-meta-comments'>By " .get_the_author_posts_link(). "</div>";
    						if($blogstyle !== "elegant-blog")
    						{
    							$output .= $meta;
    							$meta = "";
    						}
    					}
                        $markup = avia_markup_helper(array('context' => 'entry_content','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));
    					$excerpt = apply_filters( 'avf_post_slider_entry_excerpt', $excerpt, $prepare_excerpt, $permalink, $entry );
    					$output .= !empty($excerpt) ? "<div class='slide-entry-excerpt entry-content' $markup>".$excerpt."</div>" : "";
    
                        $output .= "</div>";
                        $output .= '<footer class="entry-footer">';
                        if( !empty($meta) ) $output .= $meta;
                        $output .= '</footer>';
                        
                        $output .= av_blog_entry_markup_helper( $the_id );
                        
    					$output .= "</article>";
    
    					$loop_counter ++;
    					$post_loop_count ++;
    					$extraClass = "";
    
    					if($loop_counter > $columns)
    					{
    						$loop_counter = 1;
    						$extraClass = 'first';
    					}
    
    					if($loop_counter == 1 || !empty($last))
    					{
    						$output .="</div>";
    					}
    				}
    
    			$output .= 		"</div>";

    Specifically we are calling the get_the_author_posts_link() to display the author post link.

    What could be the cause of this not displaying as desired?

    #684907

    In reply to: Gallery is blurry

    Hallo Rikard,

    thank u for your reply.
    You can see I installed the pluings Sharpen Resized Images and Renenerate Thumbnails.
    Now the picutres on the frontpage are sharper but the are trashed – in german I will say “Die Bilder sind kaputt scharf gezeichnet.”
    I only want, that the pictures in the galery look the pictures that I upload – in every responsive size.
    Here is my admin login for you…

    #684840

    Hey!

    The additional thumbnails or the newly created thumbnails will not be added to the selection so you have to modify the existing thumbnails.

    Cheers!
    Ismael

    #684731
    kopf-und-stift
    Participant

    Hi,
    i am using the video shortcode with a self hosted video. When i test the site on online tools (mobiltest.de) the video thumbnail gets displayed right but when i use my real smartphone (Huawei) and even on other smartphones (iphone 6 s) the video thumbnail is not showing. Only a grey solid.

    Its urgent – can you help me?

    bye

    #684380
    raylay
    Participant

    I would like to remove the tooltip from gallery thumbnails WITHOUT removing the lightbox caption or removing tooltips from the entire site. I added the ID #galleryt and tried using display:none on #galleryt div.avia-tooltip.avia-tt but no luck. Can you help me determine what element to apply the display:none to or another method. Thank you!
    Example page: http://chrisgallop.com/blog/portfolio-item/kitchen-upgrade/

    #684347

    The first two styles work perfectly BUT I can’t use the pointer-events: none; since we still want the thumbnails to open in a lightbox and change from b/w to color.

    Is there a function we can update in the child theme to remove the hover animation changing the main image?

    Also, how can we add Arrow overlay to the thumbnails? #3 in the previous image.

    Thank you!

    craigriches
    Participant

    We have recently had default border removed from the Enfold Gallery element when using a big image above and smaller thumbnails below. But now want it back…as it looks better with bordered images.
    I want them to look like this https://www.dropbox.com/sh/9nxpfsmknynvbgv/AADgnbvEdrchzBIKx5E7L8lva?dl=0

    But they currently look like the webpage in private content

    Any chance of giving me the code that Enfold uses by default and telling me what to remove or edit and from which file?

    #684256

    Can anyone tell me what the code should be for having the standard border and colour as in the Enfold Demo for the Gallery element with big image above and smaller thumbnails below. I want to achieve this again having removed it earlier, so would like to “put back the default” as it were.

    like these – see link

    #684219

    Hey brainxchange,

    Try the following:
    1. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
    2. Go to Settings > Media
    3. Change the entry_without_sidebar image size (increase its width / height).
    4. Regenerate the thumbnails by clicking the button at the bottom.

    Best regards,
    Yigit

    Hey kilimats!

    Please add following code to Quick CSS

    .woocommerce-cart td.product-thumbnail, .woocommerce-cart td.product-name {
        pointer-events: none;
    }

    Best regards,
    Yigit

    #684100

    Thanks for your Answer,

    We tried it with 3 different IP-Adresses, 3 different Browsers on 3 different devices. The error is always the same. The gallery only shows grey thumbnails. The error occured to us after clearing the browser cache the first time after the update.

    http://www.kiteworldwide.com/wp-content/uploads/2016/09/gallery.jpg

    Please help.

    Regards Andre

    #684009

    Hi,

    I tried following your solution. However, my web page also shows the youtube clip link instead of video thumbnail.

    do you any other ideas?

    Regards,
    Nhan Ngo

    #683710

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .image-overlay {
        background: transparent;
    }
    #top .avia-gallery .avia-gallery-thumb a:hover {
        opacity: 1;
    }
    #top .avia-gallery .avia-gallery-thumb a {
    pointer-events: none; 
    }
    

    However the last code will stop hoverin on thumbnails so they will remain greyscale

    Best regards,
    Yigit

    #683635
    kww
    Participant

    Hi,

    Yesterday I have updated my Enfold to 3.7.1 and WordPress to 4.6.1.
    All plugins have the latest version aswell.

    But now the Enfold Gallery item is not working anymore. Every Gallery on the page only shows the grey small thumbnails.

    I have already deleted all plugins, but the gallery is still not working.

    Please Help

    Regards Andre

    #683630

    Hi Ismael,
    Before I follow your instruction. Can I just confirm then, that installing this plugin and adding the thumbnail sizes I mentioned in my original support request, then regenerating thumbnails (via the regenerate thumbnails plugin, I presume), the new size options will appear as selections in the Enfold theme Gallery element for choosing – like the others do currently (see attachment)?
    https://www.dropbox.com/s/tu742ekh498q07b/Screen%20Shot%202016-09-08%20at%2011.34.59.png?dl=0

    #683463
    carfirst125
    Participant

    Hi,

    I tried to add the video youtube link in my website using Video funtion in Media Elements inside Layout Builder of Enfold theme.
    However, I dont know why I did the same way in two different pages, but in one PAGE 1 the video link to youtube can appear the thumbnail in my site, whereas in PAGE 2 it only show the link and when I clicked it, it open the youtube in another page instead of showing in my site.

    I tried to debug but still can not make it run in PAGE 2 as the same what it does in PAGE 1.
    You can take a look on:
    PAGE 1: http://izily-myanmar.com/
    PAGE 2: http://izily-myanmar.com/tour-nhom/

    Thanks,
    Nhan Ngo

    Hi,

    Install the following plugin then go to the Settings > Media panel. Adjust the size of the “entry_with_sidebar” and “entry_without_sidebar” thumbnails. Update, save then regenerate the thumbnails. https://wordpress.org/plugins/simple-image-sizes/

    Best regards,
    Ismael

    #683457

    Hey craigriches,

    Thank you for using Enfold.

    Inspect the available thumbnails in the selection and then install the following plugin to adjust the size of the thumbnail. After the installation, go to the Settings > Media panel. Adjust the sizes, update, save then regenerate the thumbnails. https://wordpress.org/plugins/simple-image-sizes/

    Best regards,
    Ismael

    sharonreiley
    Participant

    I’ve run into a possible bug that I can’t seem to fix on my own. I am trying to incorporate a full screen slider at the top of my page and a section of masonry blog posts further down below. When I include the full screen slider at the top of the page, the masonry blog does not display properly. The titles (which are set to show up as an overlay on mouse hover) are shown beneath the thumbnails. If I remove the full screen slider from the top of the page but make no other changes, the masonry blog displays correctly.

    Here’s what it should look like. This is how it looks when there is no full screen slider on the page:
    no full screen slider

    And here is what is happening when there is a full screen slider at the top of the page. The titles on the masonry blog are being displayed below the images instead of as an overlay on hover. (The text happens to be white, which is why it isn’t visible on the white background.)
    bug

    Thank you for your help!

    #683207
    goodpixel
    Participant

    I’m try to import all post and thumbnail from http://lupidiromagna.it to http://bergerblancswiss.com/ using XML importer do not work.

    #682976

    Hey Jon Erik,

    Thank you for using Enfold.

    The theme generates small versions or thumbnails of the original image but it’s still better if it is already optimized for web use prior to upload. http://kriesi.at/archives/4-key-wordpress-image-optimization-tips

    Best regards,
    Ismael

    #682884
    Jochen
    Participant

    Hi there, can it be that till enfold 371
    caption/title of an image show up with the thumbnails,
    but not when the image is enlarged in the lightbox ?

    In 361 it was working

    Regards

    #682866
    winnieandbuzz
    Participant

    I am still learning about WordPress and am now trying to figure out how generating thumbnails work. From what I understand WP will generate by default 3 thumbnails from each picture I upload. I was looking at the upload folder and noticed that there are 19 (!) different thumbnails in there. As an example I take an image with an original file size of 96 Kb, the total 19 files consume 680 Kb (7x times the original file size!) and this is causing issues as I run out of disk space.

    The questions I have are:
    1) How can I determine what thumbnail size I really need/are used by the website? (I cannot imagine that they are all needed)
    2) After identifying the above; how can I stop generating the unneeded thumbnails?

Viewing 30 results - 4,861 through 4,890 (of 10,101 total)