Viewing 30 results - 4,111 through 4,140 (of 10,101 total)
  • Author
    Search Results
  • #782525

    @rvdnol regenerating the thumbnails was a bad decision. Read why

    #782517

    Hi, i managed to resolve my issue , steps i took :

    1. Installed the child theme and at import/export migrated the parent theme settings to the child one
    2. The only issue i had after that was my widgets got messed up, needed to rebuild my menu’s ( did that by switching back and forth to the parent theme to see my settings., or you can write them on paper)
    3. For big fonts at category pages i used code below
    Enfold->website styling->quick CSS

    .woocommerce .woocommerce-loop-category__title,
    .woocommerce li.product .entry-header h3 {
    font-size: 14px !important;
    text-align: center;

    4. Resize and rebuild images ( after setting the sizes below here ) , currently i use woocommerce settings for images at woocommerce->settings->products->view

    catalog images 200×300 hard cut
    product images 300×500 hard cut
    thumbnail images 120×120 hard cut

    ( my primary images are rectangle )

    All my images are normal quality now, very happy to have this one resolved !

    Robert

    #782507

    Hey sorry about that, you are able to check mine at this time, I had

    .attachment-shop_thumbnail {
    display: none!important;
    }

    Looks like JasonAmerica is still having trouble too.

    Thanks!

    #782487

    Same here, specifically on the product image in the sidebar on the product page. I’ve followed the Woocommerce instructions, regenerated thumbnails, changed image sizes, changed Woo product image size/hrad crop settings and attempted child theme CSS changes… still blurry. : /

    Any help is greatly appreciated!

    If you look at the source code in Chrome it superimposes a height and width of 120px on the image.

    #782280
    Jette
    Participant

    Hey there,

    I just updated my Enfold theme to the newest version.
    Unfortunately I now have a problem when creating new portfolio items. Whereas the featured image used to be scaled to a square thumbnail preview before, now the images now appear in their original aspect ratio in the portfolio overview. It seems as if the thumbnail image sizes are no longer automatically created when I upload a new image to the site.

    I can’t edit the images in the media library either. When I open the attachment detail page and try to resize or rotate an image, I get the following error: “Could not load the preview image. Please reload the page and try again.” Refreshing unfortunately doesn’t solve the problem.

    Can you please advise me with this matter?

    Thanks in advance,
    Jette

    #782252

    Hi,

    try this code inside Quick CSS field:

    a.lightbox-added img {
    max-width: 300px;
    }
    .thumbnails img {
    max-width: 90px !important;
    }

    and adjust as needed.

    Best regards,
    Andy

    #782174

    Hi,

    Thank you for using Enfold.

    Please add this filter in the functions.php file.

    if(!function_exists('avia_woocommerce_gallery_thumbnail_description_mod'))
    {
    	remove_filter('woocommerce_single_product_image_thumbnail_html','avia_woocommerce_gallery_thumbnail_description', 10, 4);
    	add_filter('woocommerce_single_product_image_thumbnail_html','avia_woocommerce_gallery_thumbnail_description_mod', 10, 2);
    	function avia_woocommerce_gallery_thumbnail_description_mod($img, $attachment_id)
    	{
    			$image_link = wp_get_attachment_url( $attachment_id );
    
    			if(!$image_link) return $img;
    
    			$image = wp_get_attachment_image( $attachment_id, apply_filters( 'single_product_small_thumbnail_size', 'shop_thumbnail' ) );
    			$image_title = esc_attr(get_post_field('post_content', $attachment_id));
    
    			$img = sprintf( '<a href="%s" class="%s" title="%s"  rel="prettyPhoto[product-gallery]">%s</a>', $image_link, $image_class, $image_title, $image );
    
    		return $img;
    	}
    }

    If this is not working, please post the FTP details here so that we can inspect the site thoroughly.

    Best regards,
    Ismael

    #782164

    Hey d,

    When you follow Ismael’s instructions in that thread, instead of this:
    echo "<div class='search-thumb'>".$thumb."</div>";

    Use this:
    echo "<div class='search-thumb'><a title='".the_title_attribute('echo=0')."' href='".get_permalink()."' $markup>".$thumb."</a></div>";

    The second one has the link added to the thumbnail. :)

    I hope that helps!

    Sarah

    #782125

    Hi Ana,

    Can you try to add this code in functions.php:

    global $woocommerce;
    if( version_compare( $woocommerce->version, '3.0.0', ">=" ) ) {
    	function avia_woocommerce_gallery_thumbnail_description($img, $attachment_id, $post_id, $image_class ) {
    	    return $img;
    	}
    	function avia_woocommerce_post_thumbnail_description($img, $post_id){
    	    return $img;
    	}
    }

    Let us know if this helps :)

    Best regards,
    Nikko

    #782095

    Hi,
    I use https://postimage.io/ and copy the “Thumbnail for website” link code to paste in the post.

    Best regards,
    Mike

    #781987
    dwebprojects
    Participant

    Dear Sir,

    Pls check this: https://kriesi.at/support/topic/thumbnails-on-search-results-page/#post-165871
    How to link the thumbnail too??
    Ty,

    d.

    #781952

    Topic: Shop Image blurry

    in forum Enfold
    Hundianer
    Participant

    Hi, just updated to new Enfold version 4.0.5 via Child-Theme. So far so good, but the main shop image is blurry.

    Refreshed thumbnails, uploaded images again – no result.

    https://www.dropbox.com/s/k9xndlwc88k2ire/Screenshot%202017-04-23%2015.20.24.png?dl=0

    Solutions?

    Thx, KW

    #781917
    FDF
    Participant

    Hi,

    I’m setting up the the WP Job Manager plugin on my website. I appreciate this is a Plugin, so not sure that the Enfold team can help me but thought I’d ask as the level of support you get here is much better than WordPress.org.

    If the job page is opened on a desktop device and the browser window is of a reasonable size, the job thumbnails appears no problem. If the browser is resized (making it smaller, or opened on a mobile device), the images disappear.

    Does anyone have any ideas how I can avoid this?

    You will also see on the website, that the Job Filter options are all displayed – both the parent and child category filters. Is there anyway of just getting the parent category filters to display?

    Many thanks for your time.

    Tim

    #781811

    Hey ana40,
    You image is 90×90 being resized up to 209×209, Please try going to Settings > Media and increase thumbnail sizes to 126x126px and then regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/

    More can be read here: https://kriesi.at/support/topic/woocommerce-3-0-03-0-1-and-the-images-issue/

    Best regards,
    Mike

    #781798

    It seems like we need to change the “thumbnail” to another photo size in the code per this advice in this thread:

    https://kriesi.at/support/topic/large-image-in-rss-feed/

    ?

    #781633

    Hey Rob,

    To attach the 300×300 size image to it, we’ll just change the values in the fourth line so that it becomes this:

    function featuredtoRSS($content) {
    global $post;
    if ( has_post_thumbnail( $post->ID ) ){
    $content = '<div>' . get_the_post_thumbnail( $post->ID, array( ‘width’=>300, ‘height’=> 300 ), array( 'style' => 'margin-bottom: 15px;' ) ) . '</div>' . $content;
    }
    return $content;
    }
    add_filter('the_excerpt_rss', 'featuredtoRSS');
    add_filter('the_content_feed', 'featuredtoRSS');

    Can you try that out please? 

    Sarah

    #781518

    In reply to: Woocommerce 3.0

    A few other notes.

    WooCommerce will change the image gallery when using zoom and swipe in flexslider to use SmoothHeight.

    Their release of the new default image gallery was flawed.

    This meant that if you had a landscape image set as your featured product image…

    And you had a portrait or square image in you gallery…

    Then there would be a big empty space between your featured products and thumbnails.

    The empty space is fixed to provide the zoom feature for the tallest image in your gallery.

    Smootheight will allow the thumbnails to move up or down when the featured product image area changes in aspect ratio. This keeps your page layout looking nice.

    It seems that WooCommerce only tests featured product images and gallery images that are all the same aspect ratio. Just look at all their demos.

    In reality shop owners upload product images for featured and gallery in various aspect ratios.

    It’s sad that we are running businesses on this ecommerce platform, paying for extensions and premium themes, and the developers at WooCommerce and theme companies pay little attention to these important details that affect real business.

    #781398
    etamboise
    Participant

    Hello,

    when creating any products, it shows error like :

    “Warning: Missing argument 3 for avia_woocommerce_gallery_thumbnail_description(), called in /homepages/7/d568928333/htdocs/clickandbuilds/BoutiqueLaTienda/wp-includes/class-wp-hook.php on line 298 and defined in /homepages/7/d568928333/htdocs/clickandbuilds/BoutiqueLaTienda/wp-content/themes/enfold/config-woocommerce/config.php on line 1360

    What is the problem and how to solve it ?
    Checked on forum and saw plenty of the same help requests but didn’t found any answer solution…

    tks for your help :)
    E. T.

    #781359

    But 120×120 is for the smallest thumbnails, or am I wrong?

    #781346
    Philippejazz
    Participant

    Hello there!

    Recently I have created a new website about jazz transcriptions: https://www.jazzscripts.nl and https://www.jazzscripts.com.
    Everything looks nice and works really well with the Enfold theme.
    However, whenever I visit the single product pages of my shop or transcriptions page, all the images look blurry.

    These are the display settings I use for WooCommerce:

    Catalog images: 450 x 450 px (Hard crop on)
    Single product image: 284 X 274 px (Hard crop off)
    Product thumbnails: 120 x 120 px (Hard crop on)

    I already have regenerated all the images with the Regerate Thumbnails plugin, but the problem still exists.

    I really appreciate any help you can provide.

    Philippe

    hypergolica
    Participant

    Dear Support,

    I hope you can help me figure something out. Please have a look here:

    As you can see, the thumbnails appear small, even though I’ve used Simple Image Sizes to resize thumbnails to 250 pixels… and, I’ve tried to apply custom CSS to allow for the space:

    #top .gallery .gallery-item {
    margin: 10px;
    width: 250px;
    height:250px;
    padding: 0;
    }
    
    dt.gallery-icon, dt.gallery-icon a {
    height: 250px !important;
    width: 250px !important;
    }

    Please see the screenshots here:
    https://www.dropbox.com/sh/eow4gvq5lkm7koa/AACdwwjCQLPCTBZjfN5KCIt1a?dl=0

    I have tried toggling the Lightbox Modal Window option in the settings, but that doesn’t appear to have any effect.

    Also note: I do not have any additional lightbox images active.

    Could you please help me understand the problem? Many thanks.

    Cheers,

    Tim

    #781306

    @Konstlist16
    I checked your backend, as you’ve provided admin access to us. I see that you haven’t adjusted WooCommerce’s thumbnails size in WooCommerce->Settings->Products->Display->Product thumbnails

    There is still 120x12px, although you want to display your images much bigger. So change that, then regenerate your thumbnails and you should go fine.

    However if you’re fine with your WooCommerce’s display settings, then use this code inside Quick CSS field:

    #top .product div.images img {
    width: 120px;
    }

    Adjust the width value to your display settings of your product thumbnail image.

    Best regards,
    Andy

    #781296
    goldengate415
    Participant

    Hi,
    I opened a thread about this and I thought it was solved so that thread is now closed, but it appears I need to still increase the size of the photos in my RSS feed at http://www.thomashenthorne.com/feed

    I’m not a coder so before modifying functions.php, I wanted to ask for your input. The current code you gave me is:
    function featuredtoRSS($content) {
    global $post;
    if ( has_post_thumbnail( $post->ID ) ){
    $content = ‘<div>’ . get_the_post_thumbnail( $post->ID, array( ‘width’=>150, ‘height’=> 150 ), array( ‘style’ => ‘margin-bottom: 15px;’ ) ) . ‘</div>’ . $content;
    }
    return $content;
    }
    add_filter(‘the_excerpt_rss’, ‘featuredtoRSS’);
    add_filter(‘the_content_feed’, ‘featuredtoRSS’);

    It looks to me like it’s feeding a 150 x 150 image to RSS which is too small. I would rather send the Enfold medium size which is 300×300, and then understand how to send a large size if that is still too small for the feed.

    Can you help me customize above code?

    Thanks!!!
    Rob

    #781270

    Hey Mike,

    Thank you for using our theme. Enfold creates different sizes for different places in the website, such as when the picture is the featured image, for when it is in a masonry grid, when it’s needs to be a square, etc.

    To stop Enfold from creating these different sizes, please comment out one line in enfold/functions.php. Replace:

    avia_backend_add_thumbnail_size($avia_config);
    

    with

    //avia_backend_add_thumbnail_size($avia_config);
    

    If you want to generate the thumbnails, undo the code modification and regenerate the thumbnails with this plugin: https://wordpress.org/plugins/regenerate-thumbnails/

    I hope that helps!

    Sarah

    #781214

    Hi,

    Please go to enfold/includes/loop-index.php file and find following line

    
    $link = !empty($url) ? $url : get_permalink();
    

    and change it to following

    
    $link = avia_image_by_id(get_post_thumbnail_id(), 'large', 'url');
    

    We would recommend you to use a child theme – http://kriesi.at/documentation/enfold/using-a-child-theme/ and apply the changes there :)

    Best regards,
    Yigit

    #781188
    radiob0x
    Participant

    Hi,

    I updated recently to the latest enfold theme and since then my woo commerce plugin has had some issues, the main two issues is that the text has now gone bold and all in caps lock on the slider, and the thumbnail images are pixelated.

    http://i.imgur.com/XFA2Jr.png (this is what the capitalised/bold text looks like)

    Can anyone help me or point me in the right direction? I’d appreciate it very much.

    Thanks,

    • This topic was modified 9 years ago by radiob0x.
    #781115

    Hello Victoria,

    1. I’ve tried that and it doesn’t seem to work. Having problems with the screenshot so here is the link to the page http://sdhcounselling.co.uk/category/relationship/ Re point 3, this includes the blog title layout as preferred. This is the alternative layout. http://sdhcounselling.co.uk/2017/01/12-steps-handle-conflict-help-improve-relationship/?preview_id=3506&preview_nonce=9fa1289e10&post_format=standard&_thumbnail_id=3687&preview=true

    2. I have read the post re read more, this seems to relate to the main blog page. That is showing up fine for me. It’s how the posts appear when accessed via the widgets. Where would I apply the code?

    Many thanks

    #781010

    By the way, I’m using the ‘Force Regenerate Thumbnails’-plugin for regenerating.

    #781009

    @Ismael: Thanks, it works :)
    (Setting the ‘Product thumbnails‘-size to 450x450px)

    I didn’t change it before, because I was so focused on the ‘Single product image’-setting..
    And, I don’t really understand that ‘Product thumbnails’-size setting affects the ‘Singel product image’.. But I guess that’s a question for woocommerce

    I’m happy you guys helped me out :) Thanks again!!!

    #781000

    Hey!

    We would like to apologize because it’s our mistaken. The “full” thumbnail doesn’t have an actual width and height value so the script fails to calculate the default height of the slider. Please remove the filter then add this code instead.

    $avia_config['imgSize']['custom']	= array('width'=>3000,  'height'=>3000, 'crop' => false);
    function avf_aviaccordion_config_mod( $config ) {
    	$config['size'] = 'custom';
    	return $config;
    }
    add_filter('avf_aviaccordion_config', 'avf_aviaccordion_config_mod');

    Regenerate the thumbnails by using the following plugin. https://wordpress.org/plugins/force-regenerate-thumbnails/

    Regards,
    Ismael

Viewing 30 results - 4,111 through 4,140 (of 10,101 total)