Viewing 30 results - 8,041 through 8,070 (of 10,095 total)
  • Author
    Search Results
  • #286834
    Presumebox
    Participant

    Hi there;
    Is there any way to reduce the number of images that appear on the thumbnails in the gallery, I have to include some 50 images and several rows are created.
    I would appear that only a few rows or no
    Thank you.

    #285305
    nancy2434
    Participant

    can you help me display the category blog posts on this page:

    http://somedomain.server309.com/

    so that the featured image is left-aligned and the featured image is smaller. For example:

    http://igtrcn.org/

    #285282
    apower84
    Participant

    Hi Support,

    Going to update my site with the new enfold but are having some trouble with the Masonry Gallery.
    Want it to look like the current one don´t know why its just two columns and the thumbnails size is bigger on the new site.

    What have I missed, please take a look.
    Links to the websites in private content.

    //Cheers

    Hey!

    Ok, wenn der Filter nicht funktioniert, öffne wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php und ersetze

    
    						$custom_link = get_post_meta( $id ,'_portfolio_custom_link', true) != "" ? get_post_meta( $id ,'_portfolio_custom_link_url', true) : false;
    						if($custom_link) $this->loop[$key]['url'] = $custom_link;
    

    durch:

    
    						$custom_link = get_post_meta( $id ,'_portfolio_custom_link', true) != "" ? get_post_meta( $id ,'_portfolio_custom_link_url', true) : false;
    						if($custom_link) $this->loop[$key]['url'] = $custom_link;
    
                            if(!$custom_link) $url = wp_get_attachment_url(get_post_thumbnail_id($id));
                            if(!empty($url)) $this->loop[$key]['url'] = $url;
    

    Best regards,
    Peter

    It shows the thumbnails of the images in the actual masonry part if I freshly upload all of the images, but half of the images say “http error” when I upload them (they are there in the media section, but when I try to add them to the current gallery they won’t appear)

    #284976

    Hey Richard!

    Thank you for using the theme!

    Please edit the portfolio grid element then look for the Portfolio Grid Image Size option. Select the second option from the list. This will give you a new option to select the portfolio thumbnail size manually.

    Best regards,
    Ismael

    Hey!

    Thank you for the update.

    I’m not really sure what’s wrong with the masonry gallery thumbnails. It looks sharp and clear on Windows 8 Chrome.

    Best regards,
    Ismael

    #284691

    Hi Chris!

    That happens because those elements use thumbnails and WordPress does not recognize SVG as “images”, therefore no intermediate sizes are generated and no “image metadata” is created.

    This is a WordPress limitation rather than a theme one, if you need further assistance please contact a developer.

    Cheers!
    Josue

    #284392

    In reply to: Enfold Bugs/Issues

    Hey!

    2.) That’s weird. It should increase the width, not the height. I think the best thing to do is to add a left margin when viewing on larger screens. Please try this:

    @media only screen and (min-width: 1800px) {
    #top div.av-masonry-container.isotope .isotope-item:first-child {
    margin-left: 1px;
    }
    }

    3.) Did you add the code on functions.php? The testimonial is still using the 80x80px thumbnail size.

    Regards,
    Ismael

    Hi Josue,

    And thanks for the direction!

    I also needed to customize some of the text in the <h4 class=’proj-nav-title’> of the post nav tabs so I ended up copying the whole
    avia_post_nav function into my child theme’s functions.php to do that customization and then set $same_category parameter to “true”:

    if(!function_exists('avia_post_nav'))
    {
    	function avia_post_nav($same_category = true, $taxonomy = 'category')
    	{
    		global $wp_version;
    	        $settings = array();
    	        $settings['same_category'] = $same_category;
    	        $settings['excluded_terms'] = '';
    		$settings['wpversion'] = $wp_version;
            
    		//dont display if a fullscreen slider is available since they overlap 
    		if((class_exists('avia_sc_layerslider') && !empty(avia_sc_layerslider::$slide_count)) || 
    			class_exists('avia_sc_slider_full') && !empty(avia_sc_slider_full::$slide_count) ) $settings['is_fullwidth'] = true;
    
    		$settings['type'] = get_post_type();
    		$settings['taxonomy'] = ($settings['type'] == 'portfolio') ? 'portfolio_entries' : $taxonomy;
    
    		if(!is_singular() || is_post_type_hierarchical($settings['type'])) $settings['is_hierarchical'] = true;
    		if($settings['type'] === 'topic' || $settings['type'] === 'reply') $settings['is_bbpress'] = true;
    
    	        $settings = apply_filters('avia_post_nav_settings', $settings);
    	        if(!empty($settings['is_bbpress']) || !empty($settings['is_hierarchical']) || !empty($settings['is_fullwidth'])) return;
    	
    	        if(version_compare($settings['wpversion'], '3.8', '>=' ))
    	        {
    	            $entries['prev'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	            $entries['next'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	        }
    	        else
    	        {
    	            $entries['prev'] = get_previous_post($settings['same_category']);
    	            $entries['next'] = get_next_post($settings['same_category']);
    	        }
    	        
    		$entries = apply_filters('avia_post_nav_entries', $entries, $settings);
            	$output = "";
    
    		foreach ($entries as $key => $entry)
    		{
                if(empty($entry)) continue;
    
                $tc1   = $tc2 = "";
                $link  = get_permalink($entry->ID);
                $image = get_the_post_thumbnail($entry->ID, 'square');
                $class = $image ? "with-image" : "without-image";
    
                $output .= "<a class='avia-post-nav avia-post-{$key} {$class}' href='{$link}' >";
    		    $output .= "    <span class='label iconfont' ".av_icon_string($key)."></span>";
    		    $output .= "    <span class='entry-info-wrap'>";
    		    $output .= "        <span class='entry-info'>";
                $tc3    .= "        <h4 class='proj-nav-title'>View Another Project</h4>";
    		    $tc1     = "            <p class='entry-title'>".avia_backend_truncate(get_the_title($entry->ID),75," ")."</p>";
    if($image)  $tc2     = "            <span class='entry-image'>{$image}</span>";
                $output .= $key == 'prev' ?  $tc3.$tc1.$tc2 : $tc2.$tc3.$tc1;
                $output .= "        </span>";
                $output .= "    </span>";
    		    $output .= "</a>";
    		}
    		return $output;
     
            
            
    	}
    }
    bethperkins
    Participant

    Portfolio display looks good with 4 columns but thumbnails do not work with 3 columns and my customer wants the 3 column display. The portfolio is not sized consistently – some images have larger height.

    Here is view with 3 columns:
    http://vanmillwork.com.s133485.gridserver.com/moulding-portfolio/

    Thank you!

    #284259

    In reply to: Import posts

    Yes, basically you won’t have problems passing the post title, content, thumbnails. But converting those 3-4 images in the content to Gallery elements automatically isn’t an easy task, i suggest contacting a developer to help you with that as this is already out of the support scope we can offer.

    Best regards,
    Josue

    #284250

    In reply to: Import posts

    Thank you Josue!

    I’d be importing 3-4 images each artist (not a thumbnail) and using them in the galleries (portfolio grid) that are so fabulous in the Enfold theme.

    So – while I guess contacting the plugin author might work, my sense is that he might refer me back to the Enfold crew because of Enfold’s fabulous but rather complicated option for creating a post with a beautiful, portfolio grid-style gallery.

    #284243

    In reply to: Import posts

    The plugin description says it can import thumbnails so i guess if the source posts have thumbnails they will get included. Anyhow i think it would be better to ask these questions to the plugin author.

    Best regards,
    Josue

    Hi!

    Ich habe mir die Sache nun angesehen und der “Default” Wert bezieht sich nicht auf das “Masonry Grid” Element (welches ja auch für Artikel oder Produkte verwendet werden kann), sonder auf das “Portfolio” Element. Die “Default” Einstellung hat daher beim Masonry Grid grundsätzlich keine Bedeutung. Es gibt daher zwei Lösungsansätze:

    1) Man fügt in das Custom Link Feld die Bildurl ein.

    2) Man kann mit diesem Code:

    
    add_filter('avf_masonry_loop_prepare','avia_change_default_link', 10, 2);
    function avia_change_default_link($loop, $entries)
    {
        foreach($entries->posts as $key => $entry)
        {
            if($entry->post_type == "portfolio")
            {
                $id = $entry->ID;
                
                if(!post_password_required($id))
                {
                    $custom_link = get_post_meta($id ,'_portfolio_custom_link', true) != "" ? get_post_meta($id ,'_portfolio_custom_link_url', true) : false;
                    if($custom_link)
                    {
                        $loop[$key]['url'] = $custom_link;
                    }
                    else
                    {
                        $url = wp_get_attachment_url(get_post_thumbnail_id($id));
                        if($url) $loop[$key]['url'] = $url;
                    }
                }
            }
        }
    
        return $loop;
    }
    
    

    die Bild-URL als Standard-URL setzen. Der Code kann in die child theme functions.php eingefügt werden (dann ist er auch nach einer Aktualisierung des Enfold Themes noch aktiv), oder (falls kein Child Theme verwendet wird) fge diesen Code in enfold/functions.php ein.

    Regards,
    Peter

    #283946

    Hi!

    Ok, erklärt natürlich warum kein Thumbnail generiert wurde ;)

    Best regards,
    Peter

    #283939

    In reply to: Enfold Bugs/Issues

    Hi!

    2.) Sorry about that. Forget to close the media queries:

    @media only screen and (min-width: 1800px) {
    .responsive.html_stretched .av-masonry-entry {
    width: 17.8%;
    }
    }

    3.) The thumbnail size should remain 80x80px on desktop but the actual size of the image on the testimonial thumbnail is 180x180px. Please post the page url with the testimonials here. We would like to inspect it. If you want to use a plugin, you can try: https://wordpress.org/plugins/wp-retina-2x/

    Best regards,
    Ismael

    #283916

    Hey!

    I checked the src urls of the images and they all point to the original images (no thumbnails). There’re also no margins or paddings between the images which would enable us to resize some of the images with css. Your best bet is to edit the shrunken images with Photoshop and to re-size them if necessary (i.e. remove the transparent margin around the logo to make the content in the middle bigger). Personally I couldn’t reproduce the issue – all images were displayed with the size of 234x187px.

    Regards,
    Peter

    #283893

    In reply to: Enfold Bugs/Issues

    Thanks Ismael, #1 & #4 worked perfectly!

    2. This quick css code you gave me didn’t do anything. The screen resolution of the monitor I am using is 1920×1080 This only seems to be a problem on larger size monitors. For some reason the masonry gallery doesn’t stretch fullwidth even though that option is selected with a 1 pixel gap. You can see what I mean at the bottom of my homepage.

    3. This code worked to make the thumbnail larger but what I am trying to do is keep the size of the thumbnail the same but have a higher resolution image in it so it doesn’t appear blurry on a retina display. Is this possible? The images that you have in the demo seem to show at a higher resolution than the images I have tried uploading even though they are the same thumbnail size.

    Hey Pogona82!

    Thank you for using the theme!

    Please go to Settings > Media, adjust the Large thumbnail’s width and height to 9999 then regenerate the thumbnails.

    Best regards,
    Ismael

    #283846

    In reply to: Enfold Bugs/Issues

    Hey djshortkut!

    Thank you for visiting the support forum!

    Please open one thread per topic. This will keep the threads re-usable if another user is experiencing the same issue.

    1.) Add this on Quick CSS or custom.css:

    .avia-image-container.avia-align-center .avia-image-container-inner, .avia-image-container.avia-align-center .avia-image-container-inner img {
    margin: 0 auto;
    display: inline-block;
    vertical-align: bottom;
    width: 100%;
    }

    2.) What is the screen resolution of your monitor? Add this on Quick CSS or custom.css:

    @media only screen and (min-width: 1800px)
    .responsive.html_stretched .av-masonry-entry {
    width: 17.8%;
    }

    3.) Add this on functions.php to force the testimonial image to get a larger version of the thumbnail:

    add_filter('avf_testimonials_avatar_size', 'avf_adjust_testimonials_avatar_size' );
    
    function avf_adjust_testimonials_avatar_size($avatar_size) {
    	$avatar_size  = 'square';
    	return $avatar_size;
    }

    4.) Use this on Quick CSS:

    
    .avia-no-number {
    opacity: 1;
    font-size: 0.8em;
    font-weight: normal;
    }

    Cheers!
    Ismael

    Pogona82
    Participant

    Hello,

    i already started a topic for my problem a few month ago (please see the link). now, after i made the newest update, the code doesn´t work anymore. Maybe the code changed?

    https://kriesi.at/support/topic/images-in-masonry-galerie-looks-out-of-focus-on-retina-display/#post-256531

    The old code looks like these:

    add_filter(‘avf_avia_builder_masonry_lightbox_img_size’, ‘avia_change_gallery_thumbnail_link’, 10, 1);
    function avia_change_gallery_thumbnail_link($size)
    {
    return “full”;
    }

    Best regards,
    Christian

    #283751

    Topic: Feature query

    in forum Enfold
    fusion01
    Participant

    Hi I have a query relating to whether Enfold can do what I’d like for part of my portfolio:

    I’d like to have a page of portfolio works displaying as THUMBNAILS – ie. simple icon to represent each work.
    However upon click I’d like a DIFFERENT version of each to display via a lightbox, ie. the full website screenshot in place of the thumbnail icon.

    Possible? I’d have thought that the above relies on loading individual IMAGES and not a PORTFOLIO GALLERY (as each entry does not require a page).

    Thanks in advance for your assistance!

    #283567

    Hi!

    Es scheint so, als ob WordPress keine Thumbnail Version des Vorschaubildes generieren möchte. Bei allen anderen Bildern hier: http://stefangebhardt.com/index.php/portfolio-2/ wird die Thumbnail Version verwendet, was man daran erkennt, dass die Bilder am Ende die Bildgröße angehängt wird (zB
    http://stefangebhardt.com/wp-content/uploads/2014/05/2014-05-10_18_19_09_6935_EOS-5D-Mark-III_3_DxO_HQ_pp1-710×270.jpg
    anstelle von
    http://stefangebhardt.com/wp-content/uploads/2014/05/2014-05-10_18_19_09_6935_EOS-5D-Mark-III_3_DxO_HQ_pp1.jpg

    Von diesem Bild: http://stefangebhardt.com/wp-content/uploads/2014/06/2014_06_19_19_41_25_0819_EOS-1D-X_DxO_LQ.jpg generiert WordPress kein Thumbnail (die Datei http://stefangebhardt.com/wp-content/uploads/2014/06/2014_06_19_19_41_25_0819_EOS-1D-X_DxO_LQ-710×270.jpg existiert nicht) und ich weiß leider nicht warum. Ihr könnt probieren:

    1) die Datei umzubenennen und ggf den Namen zu vereinfachen und verkürzen
    2) die Datei mit Photoshop, etc. anpassen und in der Größe von 710×270 hochladen.
    3) Alle Plugins deaktivieren und die Datei nochmals hochladen – vielleicht verursacht ein Plugin einen Fehler und WordPress kann keine Thumbnails mehr erzeugen.

    Regards,
    Peter

    #283503

    Hi Peter,
    das Update (Thumbnail regenerierung) verschlimmert die Lage nur noch mehr und ich gehe auf die Ursprungsversion zurueck. Die Bilder sind nach dem Update und der Thumbnail Neuerstellung alle unterschiedlich breit und nicht wie vorher einheitlich.
    Irgendwelche anderen Ideen?
    Stefan

    #283497

    Hi!

    I’ve checked it and I see it’s a browser difference. In the latest versions of IE, Firefox & Safari it works great.
    Only Google Chrome (my version: 34.0.1847.131 m) does show the tooltip on the hover of a single image thumbnail.

    Regards,
    Roy

    #283439

    Hi Stefan_Gebhardt!

    Bitte aktualisiere Enfold auf Version 2.8.1 und versuche vielleicht die Thumbnails zu regenerieren: http://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Peter

    Hi Ismael,

    Thanks for your reply. Where do I find ” make sure that you have selected the correct thumbnail size under the ATTACHMENT DISPLAY SETTINGS. Choose the full thumbnail size.” setting. I looked under the dashboard menu Settings->Media but could not find it. I also looked in the attributes of the Image Media Element. Can you please direct me to where this setting is?

    Thanks Again!
    Darryl.

    Hi dsmcpherson!

    Thank you for using the theme!

    Once you place the image inside a column, it will inherit the size of the container or the column size. Before you insert an image using the Image element, make sure that you have selected the correct thumbnail size under the ATTACHMENT DISPLAY SETTINGS. Choose the full thumbnail size.

    Regards,
    Ismael

    #282575

    Hi!

    I have just checked your website on Safari version 7.0.4 and thumbnails show up fine on my end – http://i.imgur.com/wuGxl9f.jpg
    Have you tried checking your website on another computer using Safari?

    Cheers!
    Yigit

Viewing 30 results - 8,041 through 8,070 (of 10,095 total)