Viewing 30 results - 6,691 through 6,720 (of 10,099 total)
  • Author
    Search Results
  • #440102

    Hey!

    Thank you for using Enfold.

    The masonry images are resized to a max width and height of 705x705px in the functions.php file. You can increase the px value then regenerate the thumbnails:

    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    

    Use this plugin to regenerate the thumbnails: https://wordpress.org/plugins/regenerate-thumbnails/

    I checked the page and the images seem to be ok, maybe because I’m not a photographer. Anyway, please try the solution above.

    Best regards,
    Ismael

    Hi!

    The current crop parameter for the product images is set to “Soft” or false which means that it will crop the images but it will keep the image proportion in order to create a full image. If the parameter is set to “Hard” or true then it will chopped off parts of the image to obtain the specified thumbnail size. So to answer your question, you need to upload images with the same dimension or size in order to create a consistent product overview page.

    Regards,
    Ismael

    #440075
    CharlieTh
    Participant

    Think I have discovered a caption idiosyncracy on the gallery shown in the Enfold Blog Demo.

    Where to see it:

    The post “A small gallery” in the Enfold Small Blog Demo is a larger picture centered on top with smaller images underneath. It appears to be a standard Media Gallery (“Create Gallery” in Media?)

    On hover over the smaller image….the larger centered image above shows a bigger version of the thumbnail image.

    On click of the smaller image, you see a lightbox and slideshow or a full-screen slideshow of the thumbnail image. (You also see same effect if you click on the large centered image…a slideshow of the images.)

    Problem:

    If you hover over the small images, you get the proper “hovered caption.” I.E., bear would be bear, etc.

    If you hover over the larger image, you get the caption for the item that was the large image when page first loaded.

    The caption for the large image does not change according to the small hovered image.

    For example, “Miles rocking the Deck” is the first image enlarged when page first loads.

    If you hover over small bear image, the large image changes to the big bear — but the large image will still have the “Miles rocking the Deck” caption.

    Is there, by any chance, a quick fix on this?

    Thanks!

    You can see this on the demo itself.

    #440012

    Hi halasyt!

    It would be best to crop your images before uploading but in the gallery options you can select which thumbnail size to use. Perhaps you could try the medium size, 300 x 300.

    Cheers!
    Elliott

    #439926
    blizzmarketing
    Participant

    My photo gallery is grayed out and the thumbnails are tiny on the front end: http://www.visitfloridabeaches.com/travel-guide/photo-gallery/

    screenshot

    Any thoughts on how to fix this? It’s the Gallery from Avia Layout Builder under “Media Elements”.

    #439925

    Great, this will be good for adjusting thumbnail ratios but what about just simply showing the whole image? Is there a way to turn OFF thumbnails and just have the full (original) ratio featured image show on a post page? I think I’ve seen it.

    #439907

    Hey gharding!

    It’s just a balance of quality vs speed. Bigger images will display sharper but will take longer to download. Enfold will create thumbnails of each image you upload to fit in each area of the theme so what I do is crop my images to around 1200 width before uploading and let Enfold handle the rest.

    Best regards,
    Elliott

    #439886

    Hi Brandon!

    Please go to Appearance > Editor and open Functions.php file and find

    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    $avia_config['imgSize']['featured'] 		 	= array('width'=>1500, 'height'=>430 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['featured_large'] 		= array('width'=>1500, 'height'=>630 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] 		 	= array('width'=>1500, 'height'=>1500 , 'crop' => false);	// images for fullscrren slider
    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>185 );						// images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] 		 		= array('width'=>845, 'height'=>684 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['magazine'] 		 	= array('width'=>710, 'height'=>375 );						// images for magazines
    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>845, 'height'=>321);		            	// big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize'] = apply_filters('avf_modify_thumb_size', $avia_config['imgSize']);

    and change the sizes as needed and then regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/

    Cheers!
    Yigit

    #439653
    fisherman
    Participant

    Hi,
    I want to create a gallery with images of differing dimensions. When I do that, the images aren’t cropped to look like a nice gallery, the end result is this:

    http://www.quickercleaner.com/before-after/

    Can’t the gallery crop every image to make the thumbnails the same dimensions?

    Thanks
    Tom

    #439645
    leplusweb
    Participant

    Hello !

    I try to personnalize the widget latest-news ( I want to add a link, move title and image etc…)

    I add the code below to a function.php of my child theme ( i saw it here : )

    The new widget is correctly create but the change i made in function widget() doesn’t look to be applied

    There is a better way to do that ?

    Thx !

    
    add_action('after_setup_theme','avia_load_additional_widget');
    function avia_load_additional_widget()
    {
    	if (!class_exists('avia_customcptbox'))
    	{
    		class avia_customcptbox extends avia_newsbox
    		{
    			function avia_customcptbox()
    			{
    				$this->avia_term = '';
    				$this->avia_post_type = '';
    				$this->avia_new_query = ''; //set a custom query here
    				$widget_ops = array('classname' => 'newsbox', 'description' => 'Derniere actualite' );
    
    				$this->WP_Widget( 'customcptbox', THEMENAME.' actualite', $widget_ops );
    			}
    		}
    		
    		function widget($args, $instance)
    		{
    
    			global $avia_config;
    
    			extract($args, EXTR_SKIP);
    			echo $before_widget;
    
    			$title = empty($instance['title']) ? '' : apply_filters('widget_title', $instance['title']);
    			$count = empty($instance['count']) ? '' : $instance['count'];
    			$cat = empty($instance['cat']) ? '' : $instance['cat'];
    			$excerpt = empty($instance['excerpt']) ? '' : $instance['excerpt'];
    			$image_size = "square";
    
    			if ( !empty( $title ) ) { echo $before_title . $title . $after_title; };
    
    			if(empty($this->avia_term))
    			{
    				$additional_loop = new WP_Query("cat=".$cat."&posts_per_page=".$count);
    			}
    			else
    			{
    				$catarray = explode(',', $cat);
    
    				if(empty($catarray[0]))
    				{
    					$new_query = array("posts_per_page"=>$count,"post_type"=>$this->avia_post_type);
    				}
    				else
    				{
    					if($this->avia_new_query)
    					{
    						$new_query = $this->avia_new_query;
    					}
    					else
    					{
    						$new_query = array(	"posts_per_page"=>$count, 'tax_query' => array(
    														array( 'taxonomy' => $this->avia_term,
    															   'field' => 'id',
    															   'terms' => explode(',', $cat),
    															   'operator' => 'IN')
    															  )
    														);
    					}
    				}
    
    				$additional_loop = new WP_Query($new_query);
    			}
    
    			if($additional_loop->have_posts()) :
    
    			echo '<ul class="news-wrap image_size_'.$image_size.'">';
    			while ($additional_loop->have_posts()) : $additional_loop->the_post();
    
    			$format = "";
    			if(empty($this->avia_post_type)) 	$format = $this->avia_post_type;
    			if(empty($format)) 					$format = get_post_format();
    	     	if(empty($format)) 					$format = 'standard';
    			
    			$the_id = get_the_ID();
    			$link = get_post_meta( $the_id  ,'_portfolio_custom_link', true) != "" ? get_post_meta( $the_id ,'_portfolio_custom_link_url', true) : get_permalink();
    			
    			
    			echo '<li class="news-content post-format-'.$format.'">';
    
    			//check for preview images:
    			$image = "";
    
    			if(!current_theme_supports('force-post-thumbnails-in-widget'))
    			{
    				$slides = avia_post_meta(get_the_ID(), 'slideshow', true);
    
    				if( $slides != "" && !empty( $slides[0]['slideshow_image'] ) )
    				{
    					$image = avia_image_by_id($slides[0]['slideshow_image'], $image_size, 'image');
    				}
    			}
    
    			if(current_theme_supports( 'post-thumbnails' ) && !$image )
    			{
    				$image = get_the_post_thumbnail( $the_id, $image_size );
    			}
    
    			$time_format = apply_filters( 'avia_widget_time', get_option('date_format')." - ".get_option('time_format'), 'avia_newsbox' );
    
    			echo "<a class='news-link' title='".get_the_title()."' href='".$link."'>";
    
    			$nothumb = (!$image) ? 'no-news-thumb' : '';
    
    			echo "<span class='news-thumb $nothumb'>";
    			echo $image;
    			echo "</span>";
    			if(empty($avia_config['widget_image_size']) || 'display title and excerpt' != $excerpt)
    			{
    				echo "<strong class='news-headline'>".get_the_title();
    				
    				if($time_format)
    				{
    					echo "<span class='news-time'>".get_the_time($time_format)."</span>";	
    				}
    				
    				echo "</strong>";
    			}
    			echo "</a>";
    
    			if('display title and excerpt' == $excerpt)
    			{
    				echo "<div class='news-excerpt'>";
    
    				if(!empty($avia_config['widget_image_size']))
    				{
    					echo "<a class='news-link-inner' title='".get_the_title()."' href='".$link."'>";
    					echo "<strong class='news-headline'>".get_the_title()."</strong>";
    					echo "</a>";
    					if($time_format)
    					{
    						echo "<span class='news-time'>".get_the_time($time_format)."</span>";	
    					}
    
    				}
    				the_excerpt();
    				echo "</div>";
    			}
    
    			echo '</li>';
    
    			endwhile;
    			echo "</ul>";
    			wp_reset_postdata();
    			endif;
    
    			echo $after_widget;
    
    		}
    
    		register_widget( 'avia_customcptbox' );
    	}
    }
    #439622

    In reply to: Portfolio Slug

    I have not put up the portfolio yet. I had/have a question:

    “In portfolio section is it possible to have some of the portfolio entries as not linked to a page – instead it will be the thumbnail only? The only entries that will have a linked page will be case studies.”

    Translated: Cans oem of the portfolio entries be statiuc and not pages just thumbnail images?

    Thanks Yigit a lot. So to be clear, I can upload the image in any dimension (rectangle) and then use the regenerate plugin to generate the thumbnails to correct dimenesions?

    In addtion, if I wanted to upload all images via FTP into a folder is that ok to do? Or do I need to upload the images in the media library for the images to be created in the sizes that enfold theme needs.

    Again thanks much appreciated. :-)

    Raksha

    Hi Elliot,
    Thank you, but that isn’t what I’d like to be able to do. Perhaps it would help if I gave a specific example:

    If I create a portfolio category called “weddings” with the subcategories, “wedding portraits,” “wedding moments,” “engagements”, I’d like to be able to show ALL the images on one page, with sortability by their subcategories.

    Without having to upload every single photo separately and use it as a featured pic.

    right now, all I can accomplish is to create a portfolio item with a set of images, define it as “wedding portraits,” add a featured image, etc. And then show a page with the thumbnail for each portfolio category, upon which they can click to see JUST the images from that category. Via ajax or other means. Yes, with ajax the other categories are still at the bottom of the page, but the IMAGES from that category are not showing.

    My only workaround is to take each individual image and add it as a single portfolio item. There is no way to pull various sets of of images from a portfolio category onto a combined page.

    #439080

    Hi!

    I checked your link but I see the thumbnails, excerpt, and read more link so it appears to be displaying how you want it. Can you take a screenshot and highlight what your trying to do so we can get a better idea?

    Regards,
    Elliott

    #439004

    Hey!

    You can go to WooCommerce > Settings > Products > Display and change image sizes as needed and then regenerate them using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/

    You do not need to worry about image sizes but please keep in mind, if you upload very large images, it will increase page load time.

    Regards,
    Yigit

    #438989

    Hey amirhossein!

    You can go to Appearance > Editor and open Functions.php file and find

    
    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    $avia_config['imgSize']['featured'] 		 	= array('width'=>1500, 'height'=>430 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['featured_large'] 		= array('width'=>1500, 'height'=>630 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] 		 	= array('width'=>1500, 'height'=>1500 , 'crop' => false);	// images for fullscrren slider
    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>185 );						// images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] 		 		= array('width'=>845, 'height'=>684 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['magazine'] 		 	= array('width'=>710, 'height'=>375 );						// images for magazines
    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>845, 'height'=>321);		            	// big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize'] = apply_filters('avf_modify_thumb_size', $avia_config['imgSize']);

    and change image sizes as needed. Please do not forget to regenerate thumbnails after using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/

    Cheers!
    Yigit

    #438858
    luke7263
    Participant

    When watching a post, it is possible to display the next (and previous) post via the avia-post-nav/entry-info-wrap element. Very nice feature, especially the thumbnail of that next item that appears when mouse over !
    But the problem is when I display the last post of the current category, I don’t want to show posts from another category !
    So how can I limit the display of that element to only posts of the current category ( or categories) ?

    Or I can say that way:I have posts in a category News, and other posts in a category Articles. When scrolling between News posts, I just want to see News posts, and not Articles posts.

    Thanks.

    #438843
    cerelogic
    Participant

    I’ve noticed that in RSS readers like Feedly, that my RSS feed never has a preview image. It is the only website that has no preview image in the RSS feed. All other websites have it. Each of my blog posts do have a thumbnail image specified. How do i get the thumbnail to appear in the RSS feed?

    Thanks.

    #438831

    In reply to: Portfolio Slug

    Hi Ismael,

    In portfolio section is it possible to have some portfolio entries as not linked to a page – rather it will be the thumbnail only? The only entries that will have a seperate page will be case studies.

    Thanks
    Vince

    • This reply was modified 10 years, 11 months ago by Vincent.
    #438716

    Hi!

    You can choose a thumbnail size with a shorter height in the Accordion Image Size settings.

    Best regards,
    Ismael

    I don’t believe so. This is my list of active plugins:

    Help | Settings | Request custom changes | Deactivate | Edit

    Contact Form 7

    Contact Form 7 Multi-Step Forms

    L27 Sale Saver

    MailChimp for WordPress Lite

    Regenerate Thumbnails

    Simple Follow Me Social Buttons Widget

    Tawk.to Live Chat

    UpdraftPlus – Backup/Restore

    WordPress Force HTTPS

    WordPress Importer

    WordPress SEO

    #438690

    In reply to: blurry pictures

    Hi!

    Thank you for the info. Which browser are you using? Please try this in the Quick CSS field:

    .products .product h3, .products .product h4, .products .product h5, .products .product h6, #top .thumbnail_container img {
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
      -webkit-backface-visibility: hidden;
    }

    Remove browser cache then reload the page.

    Regards,
    Ismael

    Discovered that deactivating thumbnail regenerator plugin brought the Advanced Layout Editor back to normal operating mode. Tried a new post since deactivating the thumbnail regenerator and editor and display issues noted above seem fixed. Thanks for reading to the end.

    cricketdynamics
    Participant

    Hello All – how can I make the thumbnail container show the same height and width to keep a consistent look? In addtition is there a way to stop the ball filling out the image box. I managed to write some CSS for the single product page to make the box smaller but cant seem to do anything on the catalog page.

    .single-product-main-image {
    width: auto;
    }

    Link to site is.
    http://mysite.cricketdynamics.co.uk/?product_cat=balls

    #438370
    redwing77
    Participant

    Hallo Support Team,

    Ich habe ein Problem mit den Thumbnails in der Masonry Gallery.
    Die Bilder sind irgendwie alle unscharf (ganz speziell die Bilder welche im 16:9 Format sind)
    Ich habe auch schon versucht hier die Bilder in einer anderen Größe hochzuladen aber das funktioniert leider auch nicht.
    Sobald ich die Bilder dann in der Lightbox öffne sind sie perfekt scharf.

    In English:

    I have a problem with the quality of the masonry gallery
    The pictures are not sharp (especially when they are 16:9)
    i have also tried to upload the pictures in a different sice but it doesn’t matter.
    When the pictures are openede in the lightbox they are sharp as..

    kind regards

    • This topic was modified 10 years, 11 months ago by redwing77. Reason: Additional in english
    #438327

    The Partner/Logo Element is fairly predominate on the home page, they are the thumbnails of the bugs spanning the entire page that rotate right below the full width slider.

    I was able to figure out my space issue, but am still having an issue with the Partner/Logo Element. Everything looks great out of the box but once I add a link to one of the thumbnails it adds a grey background color to the sides. I want to add links to all the thumbnails but do not want it to add the background color.

    As an example attached and visible on the site I gave only the “View All Services” thumbnail a link and it has wide great background the other thumbnails do not.

    Thanks
    Jon

    t2blue
    Participant

    Hello, when trying to share a post on Facebook, it will not show the thumbnail preview photo. I saw another thread about this but their solution didn’t work for me. Here is an example of a blog post we have: http://woodlandvistas.com/where-exactly-is-columbia-township-2/.

    I do have the Yoast SEO plugin installed and I followed the instructions in the other thread to try to fix the issue but I haven’t had any luck.

    #438278

    Also I keep seeing suggestions for plugins – either the

    http://wordpress.org/extend/plugins/simple-image-sizes/

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

    https://wordpress.org/plugins/resize-image-after-upload/

    I am confused what I should be doing here – any support would be great Pleasee…..

    #438190
    CharlieTh
    Participant

    This may be straying from Enfold’s support, but I have a question.

    In your Small Blog Demo, you have a post entitled “A Small Gallery.”

    It showcases a gallery of one large image that shows whatever you’re mousing over in the small images under it.

    Below is the shortcode that is produced…actually…I think in original link=”none” is not there in original downloaded, but works the same way with either.

    [gallery columns="5" link="none" ids="72,71,70,69,68"]

    I have tried to duplicate the look on other pages — large central image that shows hovered lower small images. However, I end up with just a row of little (or big) images — no “preview pane” large image above them.

    What am I missing to make the WordPress Media Gallery work this way?

    I really like the look on the demo and am frustrated.

    Your other galleries are FABULOUS…but I want this look, if possible.

    Is there some checkbox I’m missing? I want to use on a page, but the demo shows blog, so tried on post as well. Still no look.

    Is there a magic key? :}

    I can’t give you a specific url for the “A Small Gallery” page, so am showing you this plugin which sort of resembles it…
    http://dopdemo.net/previews/?item=thumbnail-gallery-wordpress-plugin

    • This topic was modified 10 years, 11 months ago by CharlieTh.
    #438100

    Hi!

    as we can’t provide any support for 3rd party programs, you would need to contact feedly support. Ask them how you can set a custom thumbnail. However, it might help to use open graph which you could achieve with Yoast SEO plugin: https://kriesi.at/support/topic/facebook-open-graph-not-working-correctly/#post-384037

    Regards,
    Andy

Viewing 30 results - 6,691 through 6,720 (of 10,099 total)