Viewing 30 results - 8,371 through 8,400 (of 10,095 total)
  • Author
    Search Results
  • #251314

    Hi Yigit,

    Thanks for the quick reply. The 2nd code worked, however the 1st code didn’t make any changes for the post slider display on the home page. Anything else I should be looking at?

    thx,

    #251281
    spallen8877
    Participant

    I am trying to create a sortable portfolio on our site, but when I attempt to do this, I find there seems to be an issue. I will try to explain best I can. For example, if I have a category of animals with 5 photos in that category, and a category of people with 3 photos, and I sort for only animals, then click on the thumbnail, get the lightbox enlarged image, and then when I see the number of images in the bottom left, it would show as 8, and it should only be 5, because I would only want to see elements in the animals category. Is there any way to accomplish this?

    Thank you!

    #251154

    Hi Dan!

    Thank you for using the theme!

    1.) I’m sorry but can you please elaborate the issue?

    2.) You can find the post thumbnail code on loop-index.php, find this code on 165:

    else if(strpos($blog_style, 'small')  !== false)
                {
                    $blog_meta_output = "<a href='{$link}' class='small-preview' title='{$featured_img_desc}'>".$slider.$icon."</a>";
                }

    Regards,
    Ismael

    #251144

    Hi!

    Thank you for the info.

    This has nothing to do with css. If you inspect the small preview images, they are cropped on the edges. I’m sorry but did you do the changes above? The images are still cropped which suggests that you didn’t add the crop parameter on the post thumbnail. Also, after installing the regenerate thumbnails plugin, did you use it? Go to Tools > Regen. Thumbnails to regenerate the thumbnails. Make sure that you modify the functions.php as suggested above.

    Regards,
    Ismael

    #251085

    Hi wacky32!

    Please add following code to Quick CSS in Enfold theme options under Styling tab
    1-

     .avia-content-slider .slide-image img {
    height: 180px!important;
    width: 180px;
    }

    2-

    a.small-preview {
    height: auto;
    }

    Best regards,
    Yigit

    #251027

    Hi!

    Thank you for using the theme.

    Did you use WP MigrateDB or WP MigrateDB PRO plugin when you transfer the website? Please try to regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Ismael

    #250968
    wacky32
    Participant

    Hi. A couple questions about automated image pots.

    HOMEPAGE POST SLIDER
    I’m using the post slider on my homepage and have the “Choose the preview manually” with 180×180 square option, but the images are showing up as rectangles, varying heights, etc.

    PREVIEW IN THUMBNAIL SQUARES ON POST CATEGORIES
    On some category pages the post icons are cropped and showing partial gray backgrounds. Here’s a sample. (http://mainstreetalliance.org/category/issues/health-care-2/)

    #250941

    Hey!

    Great, you can also try to use this plugin: http://wordpress.org/plugins/wp-resized-image-quality/ to improve the thumbnail quality.
    Cheers!
    Peter

    #250729
    This reply has been marked as private.
    #250699

    Hey!

    Thank you for the link.

    The aspect ratio option is for video slides only. It won’t affect how the image thumbnail turns out. You can choose the thumbnail size for the easy slider on “Slideshow Image Size” option. For example, please use the “Magazine (710×375)” thumbnail size which I think is the best thumbnail size for your slider. Edit functions.php, find this code on line 100:

    $avia_config['imgSize']['magazine'] 		 	= array('width'=>710, 'height'=>375 );						// images for magazines
    

    Replace it with:

    $avia_config['imgSize']['magazine'] 		 	= array('width'=>710, 'height'=>375, 'crop'=>false );						// images for magazines
    

    This will prevent the theme from cropping the edges of the image thumbnails. Make sure that you uploaded the images with sizes close to that ratio. Regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Cheers!
    Ismael

    #250625

    Hi,

    Open /includes/loop-index.php and look for line 32:

    $current_post['slider']  	= get_the_post_thumbnail($current_post['the_id'], $size);
    

    Replace it by this:

    $current_post['slider']  	= get_the_post_thumbnail($current_post['the_id'], "full");
    

    Regards,
    Josue

    #250620

    Hey Daniel!

    Try adding this code to the Quick CSS:

    .ls-thumbnail-wrapper {
        position: absolute !important;
        bottom: 0 !important;
    }

    Cheers! 
    Josue

    #250566

    I did the update, edited the code, and the installation of the thumbnail regenerator and nothing has changed.
    See: http://fairfieldcounty.info/angel-street-blog/
    Are you sure there’s nothing conflicting from all the styling adjustments you had me make? See below:
    .team-img-container img { float: left; }
    body .column-top-margin { margin-top: 1px; }
    .content, .sidebar { padding-top: 10px; }
    .template-page .big-preview a {
    pointer-events: none;
    }
    .single-post .template-blog .blog-meta { display: none; }
    .single-post .single-small.with-slider .small-preview { height: auto; }
    .main_color .small-preview { background: transparent; }
    .page-id-1336 .avia-content-slider .slide-image { min-height: 75px; }
    .blog-meta a {
    pointer-events: none !important;
    }

    #250459

    Hi!

    Where are you setting the image size for the post grid?

    Regards,
    Devin

    #250308

    Hi!

    Please add following code to Quick CSS as well

    .dropdown_widget ul.cart_list li a img, .product-thumbnail { display: none; }

    Cheers!
    Yigit

    This reply has been marked as private.

    You can try using this plugin to see every thumbnail setting site wide along with their crop values: http://wordpress.org/plugins/simple-image-sizes/

    This isn’t something I’ve ever seen not work for someone which is why I’m still not clear on what the issue is. The image sizes can be changed which will be reflected in the *source* of the page but in order to change the *container* sizes you need to change the number of columns in the shop or on a single product page the grid sizes used for the two content sections.

    #250068

    Hi!

    Please edit functions.php, find this code on line 93:

    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    

    Replace it with:

    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180, 'crop'=>false);		                 // small image for blogs
    

    This will prevent wp from cropping the edges of the small preview image. Regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Ismael

    Hi!

    Please try adding following code that Peter suggested in another post

    add_filter('avf_avia_builder_gallery_image_link', 'avia_change_gallery_thumbnail_link', 10, 4);
    function avia_change_gallery_thumbnail_link($link, $attachment, $atts, $meta)
    {
        $link = wp_get_attachment_image_src($attachment->ID, "full");
        return $link;
    }

    Cheers!
    Yigit

    #249904
    Ronan
    Participant

    Hello,
    In my galleries with big preview, lightbox is working well when I click in the thumbnails, but it’s not working on the big preview picture. On ly the hover effect appears.

    • This topic was modified 11 years, 11 months ago by Ronan.
    #249768

    Hi!

    Glad you figured it out! And thanks for sharing :)

    Regards,
    Yigit

    #249735
    mareva
    Participant

    Hello
    (First, sorry for my very bad english).
    I’m using Enfold theme for one week.
    I’ve created a portfolio grid (that works perfectly) and now, I would like to change the look of the “child” galeries of this grid.
    I don’t use Ajax Portfolio but simple galeries (with thumbnails and big image above) displayed in their own pages.
    I don’t want to use any lightbox when clicking on any image or thumbnail in the galery.

    My question is :
    Is it possible (and how) to display the description (and eventualy the tittle) of images over the big image of the galery with, if possible, a transparent layer under the text to get a better contrast between text and image?

    Thank you for your answer.

    #249712
    stephenturner
    Participant

    Hi, i have looked at other people who have had the same issue, but still have not found a fix. when i add a gallery, then click on a thumbnail, the images open up in the same window , but the lightbox has been selected. If you click on the first image in the gallery, it works fine, you can scroll through the other images, but if you click on any thumbnail other than the first one, the image opens up in the same window. I have tried using another gallery plugin, but when you click on the thumbnail, you get 2 sets of lightboxes showing up, the theme lightbox and the gallery lightbox plugin. I have currently no plugins activated and cannot fix it, any help?

    the website is: http://rmdrivewayandtreeservices.co.uk/gallery-2/

    cheers guys… :-)

    #249693
    kayzelmoo
    Participant

    HI there! I was wondering if there’s any issue to fixed this, I used regenerate thumbnails but to no avail.
    (www.pitstoptyres.com.sg/good-friday-tsw-clearance-stock-specials/)

    Current css settings:

    .fullsize .big-preview.single-big {
    width: 395px !important;
    height: auto !important;
    right: -35% !important;
    }

    Cheers!

    #249691
    bakbek
    Participant

    Hi, i’m trying to add a gallery to a post and the thumbnails are not aligning right – https://www.evernote.com/shard/s55/sh/a133551e-2450-4905-b300-2ec1a411c0ab/30119c0018c8dfc69db0b08e69437e05/deep/0/Tripadvisor-Top-25-Destination-for-2014—Photobek.png

    Is there a way to fix this so that all thumbnails will be the same size?

    Thanks.

    #249687

    Hello Devin,

    I changed the column count to a higher number just now for that single item which shrunk the thumbnail and made it appear not blurry since its container is smaller.

    I already did so and found earlier that it was working fine with increase in column count, as it is currently working too. But was surprised to see the results when i set the column size to 4 or less. The thumbnail gets blurry then.

    But with your suggestion of changing thumbnail size from Settings>Media>thumbnail size in WordPress, i get fair idea about it, that the images container is somewhat bigger than thumbnail size set in settings to be of 80×80, when i was using 4 columns, hence they appeared blurry. Did you mean to say so, am i right.
    And if i want to set 4 columns, then i may have to increase the size of thumbnail images under settings as suggested and then run the plugin to regenerate the sizes.
    Is that what you all want to suggest. If so, thanks a lot. I got it perfectly.

    Thanks a lot :)

    #249657

    Hello Peter

    thanks for your answer.

    Well, i’m happy with the slider ..it’s a fantastic one. Just as my client want’s the thumbnail navigation, i’m stuck with the issue that the thumbs do not keep in place when scaling the browser.

    Thanks i’ll wait for Kriesi’s answer then.

    Daniel

    #249654

    Hey!

    Right now I’m not aware of another solution. I’ll mark this thread for Kriesi though – if he considers this as a bug we’ll report it to the LayerSlider plugin author (the slider is a third party plugin and we just bundle the plugin with our theme). You can also try a different slider like: http://codecanyon.net/item/slider-revolution-responsive-wordpress-plugin/2751380 if you’re not happy with the LayerSlider.

    Cheers!
    Peter

    #249652

    In reply to: Portfolio image height

    Hi!

    If you don’t want to crop the image on the detail page at all open up wp-content/themes/enfold/single-portfolio.php (or copy this template to your child theme directory and edit the file in your child theme folder) and replace:

    
    $avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
    

    with

    
    $avia_config['size'] = 'full';
    

    Then wordpress will use the original image and not a cropped thumbnail version.

    Cheers!
    Peter

    Hey!

    I would like to avoid the image being
    cropped in the window that opens when you click on it from the portfolio grid – Is this even possible
    it seems like the images on the enfold demo are also cropped so maybe I am asking the impossible?

    Are you using the ajax portfolio? If yes the theme will not use the single-portfolio.php template I mentioned here https://kriesi.at/support/topic/how-can-i-make-the-title-for-each-portfolio-entry-18-point/#post-245059 but it will use a special html template which is loaded with js/ajax. Open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php and replace:

    
    $params['style'] =  "big_thumb";
    

    with

    
    $params['style'] =  "big_thumb";
    $params['preview_size'] ='full';
    $params['crop_big_preview_thumbnail'] ='avia-gallery-big-no-crop-thumb';
    

    Best regards,
    Peter

Viewing 30 results - 8,371 through 8,400 (of 10,095 total)