Viewing 30 results - 541 through 570 (of 10,078 total)
  • Author
    Search Results
  • MotiveAgency
    Participant

    Hi Support,

    I am using the Blog Posts Content Element, is there a hook I can use to include the post categories for each post after the blog post thumbnail?

    I have done something similar for the Portfolio Grid by copying that component file to my shortcodes folder and modifying the portfolio.php file. I wonder if there is a hook for this before a modify this component though.

    While looking into this if there is a similar hook for the portfolio grid to output the posts associated portfolio categories that would be useful to know.

    Thanks
    Sean

    #1399612

    In reply to: Forum Issues

    Hi,

    Thank you for update.

    I did what you had said, but it did not fix the problem.

    Looks like you are using the Advance Layout Builder to create the content of the product page and to create the product gallery, you added an Image and Gallery element. Please edit the gallery element and make sure that the Styling > Gallery Styling is set to the second option (Big image with thumbnails below).

    You have to switch to the default editor if you want to use the default product gallery instead.

    Best regards,
    Ismael

    #1399404

    Hi sitibus,

    I apologize for misunderstanding, I thought what you wanted was to lineup the featured image from the other thumbnail images like this:

    The Blog page is using this image size:
    – with sidebar: 845 x 321px
    – without sidebar: 1210 x 423px

    In order to adjust the featured image in the blog page, please add this code in functions.php using a child theme or if you don’t have a child theme, you can use WPCode plugin to insert this php snippet:

    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
    
    function enfold_customization_modify_thumb_size( $size ) {
        $size['entry_with_sidebar'] = array('width'=>845, 'height'=>446);
        return $size;
    }

    Once this is added, you can re-upload the image or use an image regeneration plugin to regenerate images.

    Best regards,
    Nikko

    #1399384
    sitibus
    Participant

    Hi, I’m working on telemedicinaoggi.it, which is the best size of the image in order to have exactly the same thumbnails size in the magazine style for the home page?
    I saw https://www.telemedicinaoggi.it/wp-content/uploads/2023/02/48-696×443.jpg (696×443) so that I tried with image with proportions 900×600 -> https://www.telemedicinaoggi.it/wp-content/uploads/2023/02/cardio-on-line-europe.png but in home page is https://www.telemedicinaoggi.it/wp-content/uploads/2023/02/cardio-on-line-europe-710×375.png while in the blog content becomes https://www.telemedicinaoggi.it/wp-content/uploads/2023/02/cardio-on-line-europe-845×321.png

    Thanks Gianluca

    #1399086

    Hey profumopuntoit,

    Thank you for the inquiry.

    Have you tried adjusting the size of the product images in the Appearance > Customize > Woocommerce > Product Images panel? You can also select a different thumbnail size by adjusting the product slider’s Styling > Image Size > Select image size settings.

    Best regards,
    Ismael

    #1397950

    @Alwin yes you can see it listed there already: https://kriesi.at/support/topic/enfold-upcoming-fixes/

    @Gunter thank you so much for adding this so quickly! I haven’t tested it yet, will likely wait for the official release, but thanks again for acting on this request.

    Any thoughts on the second request of the navigation options? I’ll paste it here again for ease of use:

    Secondly, on the ALB Gallery element, it would be great to have an option for desktop to also display the navigation arrows when the “Big Image with Thumbnails below” setting is selected, meaning the user doesn’t have to hover the thumbnails to change the image (which may not be super intuitive for some users). Perhaps there could be 3 options – hover thumbs, show navigation arrows, use both hover and arrows.

    Thanks a lot.

    #1397773
    THP Studio
    Participant

    Hey Gunter,

    Sorry, forgot to add this to the other feature request thread.

    Back when you introduced v5 you had this in the changelog:
    feature: added swipe to all devices supporting touch screens (not only to mobile devices)

    I mistakenly took this to mean that you could now swipe in the lightbox (in addition to using the arrows as navigation) but clearly I misunderstood.

    Which brings me to the first feature request:

    On mobile (or devices that support swipe) could we add the ability in the lightbox to swipe left/right on images, rather than just rely on the arrows?

    Secondly, on the ALB Gallery element, it would be great to have an option for desktop to also display the navigation arrows when the “Big Image with Thumbnails below” setting is selected, meaning the user doesn’t have to hover the thumbnails to change the image (which may not be super intuitive for some users). Perhaps there could be 3 options – hover thumbs, show navigation arrows, use both hover and arrows.

    Any questions please let me know.

    Thanks for considering it.

    Have a great day.

    Tim

    • This topic was modified 2 years, 10 months ago by THP Studio.
    #1397574

    In reply to: Hide portfolio archive

    Hi Stefan,

    Are you referring to website.com/portfolio_entries? or website.com/portfolio_entries/category_name? the former returns 404 however the latter is not possible to remove, you can only change the slug in the URL so if there’s URL conflict it can be avoided. Removing archive pages of the custom post type is possible but not with custom taxonomy.

    Maybe you can try to play with it by re-registering the portfolio and just changing the values as you see fit.
    The one you need to change is $tax_args

    function register_portfolio()
    {
    	global $avia_config;
    
    	$labels = array(
    				'name'				=> _x( 'Portfolio Items', 'post type general name','avia_framework' ),
    				'singular_name'		=> _x( 'Portfolio Entry', 'post type singular name','avia_framework' ),
    				'add_new'			=> _x( 'Add New', 'portfolio', 'avia_framework' ),
    				'add_new_item'		=> __( 'Add New Portfolio Entry', 'avia_framework' ),
    				'edit_item'			=> __( 'Edit Portfolio Entry', 'avia_framework' ),
    				'new_item'			=> __( 'New Portfolio Entry', 'avia_framework' ),
    				'view_item'			=> __( 'View Portfolio Entry', 'avia_framework' ),
    				'search_items'		=> __( 'Search Portfolio Entries', 'avia_framework' ),
    				'not_found'			=>  __( 'No Portfolio Entries found', 'avia_framework' ),
    				'not_found_in_trash' => __( 'No Portfolio Entries found in Trash', 'avia_framework' ),
    				'parent_item_colon'	=> ''
    			);
    
    	$permalinks = get_option( 'avia_permalink_settings' );
    	if( ! is_array( $permalinks ) )
    	{
    		$permalinks = array();
    	}
    
    	$permalinks['portfolio_permalink_base'] = empty( $permalinks['portfolio_permalink_base'] ) ? __( 'portfolio-item', 'avia_framework' ) : $permalinks['portfolio_permalink_base'];
    	$permalinks['portfolio_entries_taxonomy_base'] = empty( $permalinks['portfolio_entries_taxonomy_base'] ) ? __( 'portfolio_entries', 'avia_framework' ) : $permalinks['portfolio_entries_taxonomy_base'];
    
    	$args = array(
    				'labels'			=> $labels,
    				'public'			=> true,
    				'show_ui'			=> true,
    				'capability_type'	=> 'post',
    				'hierarchical'		=> false,
    				'rewrite'			=> array(
    											'slug'			=> _x( $permalinks['portfolio_permalink_base'], 'URL slug', 'avia_framework' ),
    											'with_front'	=> true
    											),
    				'query_var'			=> true,
    				'show_in_nav_menus'	=> true,
    				'show_in_rest'		=> true,				//	set to false to disallow block editor
    				'taxonomies'		=> array( 'post_tag' ),
    				'supports'			=> array( 'title', 'thumbnail', 'excerpt', 'editor', 'comments', 'revisions' ),
    				'menu_icon'			=> 'dashicons-images-alt2'
    			);
    
    	$args = apply_filters( 'avf_portfolio_cpt_args', $args );
    	$avia_config['custom_post']['portfolio']['args'] = $args;
    
    	register_post_type( 'portfolio' , $args );
    
    
    	$tax_args = array(
    					'hierarchical'		=> true,
    					'label'				=> __( 'Portfolio Categories', 'avia_framework' ),
    					'singular_label'	=> __( 'Portfolio Category', 'avia_framework' ),
    					'rewrite'			=> array(
    												'slug'			=> _x( $permalinks['portfolio_entries_taxonomy_base'], 'URL slug', 'avia_framework' ),
    												'with_front'	=> true
    											),
    					'query_var'			=> true,
    					'show_in_rest'		=> true			//	set to false to disallow block editor
    				);
    
    	$avia_config['custom_taxonomy']['portfolio']['portfolio_entries']['args'] = $tax_args;
    
    	register_taxonomy( 'portfolio_entries', array( 'portfolio' ), $tax_args );
    
    	//deactivate the avia_flush_rewrites() function - not required because we rely on the default wordpress permalink settings
    	remove_action( 'wp_loaded', 'avia_flush_rewrites' );
    }
    
    add_action( 'init', 'register_portfolio' );

    You can see further information in WordPress Codes: https://developer.wordpress.org/reference/functions/register_taxonomy/

    Best regards,
    Nikko

    #1395955

    Ok ok ok … I found it!!! Ismael already posted the solution on 13 januar!
    He wrote on woocommerce-shop-different-image-quality-depending-on-how-i-open-the-product/#post-1378523 “You can add the following code in the functions.php file to adjust the size of the catalogue images.”

    add_filter( 'avf_wc_before_shop_loop_item_title_img_size', 'avf_wc_before_shop_loop_item_title_img_size_mod', 10, 1 );
    function avf_wc_before_shop_loop_item_title_img_size_mod( $thumbnail_size ) {
        return 'woocommerce_thumbnail';
    }

    Works perfectly – problem solved.

    #1395779

    Hi,
    Try this css:

    #top.home #av_section_3 .avia-content-slider .slide-entry img {
    	width: 100%;
    }

    or could change the size-medium image to 400px with Simple Image Sizes and then Regenerate Thumbnails.

    Best regards,
    Mike

    #1395775

    Hi Mike,
    Thank you so much! This almost gets me there, however, I’m wondering if there is a way to force the thumbnail size so that they remain constant regardless of the image size?

    #1395339

    Hey Ismael,
    thank you for answering.
    I tried it with:
    $thumbnail = get_the_post_thumbnail( $the_id, “full” );

    But nothing is changing :(( – am I doing something wrong?
    Best regards Barbara

    #1395302

    Hey walhai,

    Thank you for the inquiry.

    You have to modify the enfold\config-templatebuilder\avia-shortcodes\postslider\postslider.php file, look for the following code around line 805.

    $thumbnail = get_the_post_thumbnail( $the_id, $image_size );
    

    Replace the $image_size with a different thumbnail (ex. full, large, square, medium etc ). Default size is “portfolio”.

    $thumbnail = get_the_post_thumbnail( $the_id, "full" );
    

    Best regards,
    Ismael

    #1395161

    Hi Andre,

    You will need to use a child theme for the solution.
    1. Copy loop-page.php (inside includes folder of Enfold)
    2. Create a new folder inside your child theme and name it includes
    3. Paste loop-page.php in the includes folder
    4. Edit loop-page.php and remove this code (should be in line 21-30):

    echo '<header class="entry-content-header">';
    
    	$thumb = get_the_post_thumbnail( get_the_ID(), $avia_config['size'] );
    
    	if( $thumb )
    	{
    		echo "<div class='page-thumb'>{$thumb}</div>";
    	}
    
    echo '</header>';

    Hope this helps.

    Best regards,
    Nikko

    #1395055

    Hey John,

    Thank you for the inquiry.

    You can use the avf_modify_thumb_size filter to adjust the dimension of the existing thumbnails. Usage examples can be found in the following threads.

    // https://kriesi.at/support/topic/alter-featured-image-on-blog-does-not-work/#post-1342432
    // https://kriesi.at/support/topic/title-and-image/#post-1304670
    // https://kriesi.at/support/topic/source-for-masonry-image-size/

    Best regards,
    Ismael

    Sandy
    Participant

    The Related Entries do not seem to be displaying correctly by common tags. Instead almost all pages seem to suggest the same (very old) posts regardless.

    The site is set up this way:
    Enfold / Blog Layout / Related Entries – Set to “Show thumbnails and display title by tooltip”

    Please review the Custom CSS and let me know what steps are needed to have more relevant posts appear in Related Entries.

    #1390301
    add_action('after_setup_theme', 'update_enfold_image_sizes');
    	function update_enfold_image_sizes() {
    add_image_size ('shop_thumbnail', 200, 0, false );
    add_image_size ('shop_catalog', 450, 0, false);
    add_image_size ('shop_gallery_thumbnail', 300, 0, false);
    }

    Found it.

    I have a content partner providing imagery for thousands of products and they are all poorly cropped so i am trying to make it so that they will display correctly without having to be re-sized to a specific aspect ratio. I’ll share my solution on my other thread.

    #1388191
    thinkjarvis
    Participant

    Hi guys,

    Enfold adds four new WooCommerce image sizes.

    shop_thumbnail
    shop_catalog
    shop_single
    shop_gallery_thumbnail

    Is there a way to stop these image sizes from cropping?
    I am looking for a function to edit the settings.

    I am looking to improve my ecommerce sites by adding some code so users can upload any image size and it will work with Enfold. But on some sites I am experiencing inconsistent image behaviour in the image gallery.

    The easiest fix for this is to stop these four image sizes from cropping.

    Please can you provide me with some code for functions.php? I cannot find an existing thread that shows how to remove the crop.

    #1388069
    thinkjarvis
    Participant

    Hi All,
    Solution for Enfold users (Also works for most other WooCommerce WordPress Themes)
    I have been looking for something that fixes this problem in WooCommerce for a while.
    If your client uploads images in different aspect ratios and sizes into WooCommerce the shop grid and product pages will be extremely inconsistent.

    The following code makes it so imagery is a uniform size within the container making the standard woocommerce categories and grids less sensitive to image aspect ratio variations. I use square for most sites.

    NOTES – Please adjust the aspect ratio to suit your WooCommerce Settings!
    https://developer.mozilla.org/en-US/docs/Web/CSS/aspect-ratio

    /* Shop / Categories - Sets the aspect ratio of the image to square and contains the image within it */
    #top .thumbnail_container img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    #top .thumbnail_container {
    aspect-ratio:1/1;
    }
    /* Product Page - Sets the aspect ratio of the main product image to square and contains the image within it */
    #top .product div.images img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .template-shop .single-product-main-image .images a {
        aspect-ratio: 1/1;
        overflow: hidden;
    }

    STOP ENFOLD CROPPING IMAGES IN SHOP
    In Functions.php in your child theme.

    
    add_action('after_setup_theme', 'update_enfold_image_sizes');
    	function update_enfold_image_sizes() {
    add_image_size ('shop_thumbnail', 200, 0, false );
    add_image_size ('shop_catalog', 450, 0, false);
    add_image_size ('shop_gallery_thumbnail', 300, 0, false);
    }
    
    • This topic was modified 2 years, 11 months ago by thinkjarvis.

    Hi!

    Thank you for the update.

    There was an error in the code above, but we already corrected it. Please try it again. The filter should disable the default thumbnail (450x450px) that is enforce by the theme and revert it back to the default woocommerce_thumbnail, which automatically adjusts based on the selected options in the Appearance > Customize > Woocommerce > Product Images panell.

    Regards,
    Ismael

    #1378529

    Hey Sebastian,

    Thank you for the inquiry.

    You will have to directly add the shortcode of the full width section in the archive.php template or use this hook in the functions.php file.

    add_action("ava_after_main_title", function() {
        $post_id = get_the_ID();
    
        if(get_post_type( $post_id ) == "post" || is_archive())
        {
            $thumbnail = get_the_post_thumbnail_url ( $post_id );
    
            echo do_shortcode("[av_section min_height='50' min_height_pc='25' min_height_px='500px' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' padding='default' custom_margin='0px' custom_margin_sync='true' av-desktop-custom_margin='' av-desktop-custom_margin_sync='true' av-medium-custom_margin='' av-medium-custom_margin_sync='true' av-small-custom_margin='' av-small-custom_margin_sync='true' av-mini-custom_margin='' av-mini-custom_margin_sync='true' svg_div_top='' svg_div_top_color='#333333' svg_div_top_width='100' svg_div_top_height='50' svg_div_top_max_height='none' svg_div_top_opacity='' svg_div_bottom='' svg_div_bottom_color='#333333' svg_div_bottom_width='100' svg_div_bottom_height='50' svg_div_bottom_max_height='none' svg_div_bottom_opacity='' color='main_color' background='bg_color' custom_bg='' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='" . $thumbnail . "' attachment='31' attachment_size='full' attach='scroll' position='center center' repeat='stretch' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' custom_arrow_bg='' css_position_z_index='' av-desktop-css_position_z_index='' av-medium-css_position_z_index='' av-small-css_position_z_index='' av-mini-css_position_z_index='' id='' custom_class='' template_class='' aria_label='' av_element_hidden_in_editor='0' av_uid='av-lck8sod6' sc_version='1.0'][/av_section]");
        }
    }, 10, 1);
    

    Replace the value of the $thumbnail with the URL of the image that you would like to display as background.

    Best regards,
    Ismael

    Hey Stephen,

    Thank you for the inquiry.

    You can add the following code in the functions.php file to adjust the size of the catalogue images.

    add_filter( 'avf_wc_before_shop_loop_item_title_img_size', 'avf_wc_before_shop_loop_item_title_img_size_mod', 10, 1 );
    function avf_wc_before_shop_loop_item_title_img_size_mod( $thumbnail_size ) {
        return 'woocommerce_thumbnail';
    }

    Best regards,
    Ismael

    #1378381

    Thanks Niko.
    What worked for me:
    PHP
    ===
    Please edit includes > loop-search.php, find this code on line 33:

    echo “<span class=’search-result-counter {$counterclass}’>{$post_loop_count}</span>”;

    Replace it with:

    $searchthumb = get_the_post_thumbnail( $the_id, ‘large’ );
    echo “<span class=’search-result-counter {$counterclass}’>{$searchthumb}</span>”;

    CSS
    ===
    #top.search-results .search-result-counter {
    padding: 0;
    }
    #top.search-results .search-result-counter img {
    border-radius: 0;
    height: 100%;
    }
    #top.search-results .search-result-counter {
    height: 200px;
    width: 200px;
    background: transparent;
    }
    #top.search-results .template-search.content .entry-content-wrapper {
    height: 215px;
    }
    #top.search-results #main .post-meta-infos {
    display: none;
    }
    #top.search-results .entry-content,
    #top.search-results .post-title {
    margin-left: 280px;
    }
    #top.search-results .post-entry {
    padding-bottom: 20px;
    }

    #1378133
    Munford
    Participant

    HI
    The gallery on my site is not displaying the correct thumbnail sizes – no matter what I chose they are showing at orignial ratios.
    They are also still showing the title as caption even though it is set to have no text.
    Can you see what is wrong here? I don’t have any image plugins.
    thanks
    Nancy

    Das sind meine CSS für die Seite :

    #top.page-id-2623 .av-magazine-group .av-magazine-entry {
      padding: 10px;
      border-radius: 8px;
    }
    
    #top.page-id-2623 .av-magazine-group .av-magazine-entry:nth-of-type(2n) {
      background: #eee;
    }
    
    #top.page-id-2623 .av-magazine-group .av-magazine-entry:nth-of-type(2n+1) {
      background: #ccc;
    }
    
    #top.page-id-2623 .av-magazine-group .av-magazine-entry .av-magazine-content-wrap {
      border-bottom: none
    }
    
    #top.page-id-2623  .av-magazine header {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
    }
    
    #top.page-id-2623  .av-magazine-thumbnail-link {
      display: table;
    }
    
    #top.page-id-2623 .av-magazine-group .av-magazine-entry .av-magazine-thumbnail-link img {
     display :none
    }
    
    #top.page-id-2623 .av-magazine-group .av-magazine-entry .av-magazine-thumbnail .av-magazine-thumbnail-link:before {
      font-family: entypo-fontello;
      font-size: 40px;
      line-height: 50px;
      position: absolute;
      top: 0;
      left: 5px;
      width: 100%;
      height: 100%;
      display: block;
    }
    
    #top.page-id-2623 .av-magazine-group .av-magazine-entry:nth-of-type(2n+1) .av-magazine-thumbnail .av-magazine-thumbnail-link:before {
     content: "\e80c";
     color:#333
    }
    
    #top.page-id-2623 .av-magazine-group .av-magazine-entry:nth-of-type(2n) .av-magazine-thumbnail .av-magazine-thumbnail-link:before {
     content: "\e80b";
     color:#666
    }
    • This reply was modified 2 years, 11 months ago by Guenni007.
    #1377803

    Hi,

    You can try this hook in the functions.php file to render a color section in the portfolio page with the featured image as background. Please note that this modification will only work for portfolio items without sidebars.

    add_action("ava_after_main_title", function() {
        $post_id = get_the_ID();
    
        if(get_post_type( $post_id ) == "portfolio")
        {
            $thumbnail = get_the_post_thumbnail_url ( $post_id );
    
            echo do_shortcode("[av_section min_height='50' min_height_pc='25' min_height_px='500px' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' padding='default' custom_margin='0px' custom_margin_sync='true' av-desktop-custom_margin='' av-desktop-custom_margin_sync='true' av-medium-custom_margin='' av-medium-custom_margin_sync='true' av-small-custom_margin='' av-small-custom_margin_sync='true' av-mini-custom_margin='' av-mini-custom_margin_sync='true' svg_div_top='' svg_div_top_color='#333333' svg_div_top_width='100' svg_div_top_height='50' svg_div_top_max_height='none' svg_div_top_opacity='' svg_div_bottom='' svg_div_bottom_color='#333333' svg_div_bottom_width='100' svg_div_bottom_height='50' svg_div_bottom_max_height='none' svg_div_bottom_opacity='' color='main_color' background='bg_color' custom_bg='' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='" . $thumbnail . "' attachment='31' attachment_size='full' attach='scroll' position='center center' repeat='stretch' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' custom_arrow_bg='' css_position_z_index='' av-desktop-css_position_z_index='' av-medium-css_position_z_index='' av-small-css_position_z_index='' av-mini-css_position_z_index='' id='' custom_class='' template_class='' aria_label='' av_element_hidden_in_editor='0' av_uid='av-lck8sod6' sc_version='1.0'][/av_section]");
        }
    }, 10, 1);
    

    Best regards,
    Ismael

    #1377756

    Topic: Image Overlay

    in forum Enfold
    nV15OoBtg21iTn5z
    Participant

    I had a previous issue with image overlay sizing here: https://kriesi.at/support/topic/image-overlay-position-for-resized-thumbnails/

    And it was fixed with the following code:

    .avia_transform a .image-overlay {
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 0 !important;
    }

    On a different page with an image carousel, the image overlay is not covering the entire image.

    How can I modify the existing CSS edit above or add another custom CSS to fix this other overlay issue?

    #1377560

    Hey SRF,

    Thank you for the inquiry.

    The theme designates its own thumbnail size to the catalog pages by default, but you can override it by adding this filter in the functions.php file.

    add_filter( 'avf_wc_before_shop_loop_item_title_img_size', 'avf_wc_before_shop_loop_item_title_img_size_mod', 10, 1 );
    function avf_wc_before_shop_loop_item_title_img_size_mod( $thumbnail_size ) {
        return 'woocommerce_thumbnail';
    }
    

    The selected options in the Product Images panel should apply once the filter is added.

    Best regards,
    Ismael

    #1377553
    SRF
    Participant

    The images for the WooCommerce catalog pages are showing cropped. Although the product images are setup to show uncropped. See this screenshot: https://www.screencast.com/t/r15ukNZu

    You can see the cropped images here: https://staging.srf-books.org/product-category/books/paramahansa-yogananda-books/page/5/

    I already tried regenerating the thumbnails.

    Note that it works fine when I change to the default theme.

    Thanks,

    #1377299

    In reply to: 3-col blog post grid

    Hi,
    Thanks for the screenshot and the link to your site, your image is cropped, I recommend using the plugin Simple Image Sizes, it will let you change the image crop to false.
    After you make the changes you will need to use the plugin Regenerate Thumbnails to change all of the thumbnails.

    Best regards,
    Mike

Viewing 30 results - 541 through 570 (of 10,078 total)