Viewing 30 results - 6,721 through 6,750 (of 10,097 total)
  • Author
    Search Results
  • #437834
    Aljoscha23
    Participant

    Hi folks,

    I already had this request in another post: https://kriesi.at/support/topic/landscape-images-in-avia-galery-out-of-proportion/ and thought I had the problem solved – because it disappeared when I recreated the gallery..

    Now the same issue is reappearing. I have deleted and recreated the gallery about three times with the following settings:
    – Großes Bild mit Thumbnail unterhalb (Big image with thumbnails underneath)
    – Mansonry 705×705
    – No, do not force the same size
    – Squaree 180×180 (for Thumbnails)
    – 6 Spalten (6 colums)
    – use Lightbox: Yes
    – Animate on load

    Still the problem remains, that images are distorted.

    Any idea?

    Best regards,
    Aljoscha

    #437762

    Hi,

    Open /config-templatebuilder/avia-shortcodes/postslider.php and look for line 290:

    $link 		= get_permalink($the_id);
    

    Replace it by this:

    $link 		= get_permalink($the_id);
    $link_thumb = get_post_meta($the_id, "custom_thumbnail_url", true) ? get_post_meta($the_id, "custom_thumbnail_url", true) : get_permalink($the_id);
    

    Also change line 368 to:

    $output .= $thumbnail ? "<a href='{$link_thumb}' title=''>{$thumbnail}</a>" : "";
    

    Then in each Post (enable Custom Fields in Screen Options), add the custom URL as a custom_thumbnail_url custom field:

    Regards,
    Josue

    • This reply was modified 10 years, 11 months ago by Josue.
    #437732
    This reply has been marked as private.
    #437632
    pcglenn
    Participant

    Hi!

    I’m not sure how to explain this problem, but the thumbnail images on my blog page are showing tiny dark lines at the rounded corners. It’s only visible on light-colored images.

    #437587

    Topic: iPad Mini

    in forum Enfold
    CurlyHost
    Participant

    Hey guys,

    First off, love Enfold. I used it here – http://www.squareonedesign.com/ – and when I’m on an iPad Mini using Safari and I click on the Work page it initially shows up blank as is seen in the screencast video below:

    http://www.screencast.com/t/LNfjj7pHa

    When you flip it sideways and back the thumbnails show up. I tried deleting all of the CSS modifications I had done to the site but still had that page initially show up blank while using an iPad Mini on Safari.

    Any help would be greatly appreciated.

    #437535
    Aaanalog
    Participant

    How big should the images be?
    Which settings in the WP backend recommended for the thumbnail sizes?
    And in what size (edge length) should I upload the images at least?

    Cheers

    #437506
    erikvermeulen
    Participant

    Hi, you guys have already helped me a lot with a lot of questions, but I have a follow-up question about a previous topic.

    https://kriesi.at/support/topic/add-extra-logos-in-head-space/

    The extra text in my header space now shows up as 1st line black, 2nd line blue like a hyperlink.

    I would like to change the color. I want the first line to be blue (not a hyperlink but this color: #51b2ea) and the second line to be orange (#fd8917 stil a hyperlink). Is there any way to do this? I’ve included below the quick CSS lines I currently use. Also the lines in my functions.php.

    My seconds follow-up question to this is the placement of the NRTO logo and the Social links. Can I put the NRTO all the way on the right and the social links where the NRTO was? (So essentially swap them out for each other).

    Thanks in advance!

    #scroll-top-link {display: none; }
    
    strong.second-logo {
      float: right!important;
      position: relative;
      margin-right: 21%;
    }
    .second-logo img{
    padding-top:50px;
    }
    .header-scrolled .second-logo img {
      padding-top: 10px;
    }
    
    #top .social_bookmarks li a { font-size: 25px; }
    @media only screen and (max-width: 768px) {
    #top .social_bookmarks li a { font-size: 18px; }
    strong.second-logo { margin-right: 30%; }}
    #top .social_bookmarks li a {
    color: #5cb4e4;
    }
    
    #top .avia-logo-element-container .slide-image {
      background: transparent !important ;
    }
    
    .main_color input[type='submit'] {
    background-color: #51b3ea;
    color: white;
    border-color: #51b3ea;
    }
    .main_color input[type='submit']:hover {
    background-color: ##51b3ea;
    color: white;
    border-color: #51b3ea;
    }
    
    .header-message {
      position: relative;
      top: 80px;
      left: 38%;
    }
    @media only screen and (max-width: 769px) {
    .header-message {
      left: 40%;
    }}
    @media only screen and (max-width: 480px) {
    .header-message {
      top: 190px;
      left: 13%;
    }}
    
    .header-message {
      margin-top: -44px;
    }
    .header-scrolled .header-message {
      top: 50px;
    }
    .header-message * { font-weight: bold !important; }
    
    .header-message { z-index: 99; } 
    
    .header-scrolled .logo img,.header-scrolled .second-logo a {
      padding-top: 0;
    }
    .logo img {
      padding-top: 20px;
    }
    strong.second-logo a {
      padding-top: 10px;
    }
    
    @media only screen and (max-width: 768px) {
    .header-message { display: none!important; }}
    @media only screen and (max-width: 480px) {
    strong.second-logo { margin-right: 20%; }}
    
    @media only screen and (max-width: 768px) {
    .second-logo { display: none !important; }}
    
    .home .avia-builder-el-5 {
      margin-right: 8%;
      margin-top: 20px;
    }
    .home .avia-builder-el-4 {
      margin-left: 8%;
      margin-top: 20px;
    }
    
    function second_logo($logo) {
    	$logo .= '<strong class="second-logo logo bg-logo"><a href="http://www.nrto.nl/partnerorganisaties/kwaliteitslabels_en_keurmerken/geschillencommissie/"><img src="http://www.tophbo.org/wp-content/uploads/2015/04/NRTO-logo-2.jpg"></a></strong>';
    	return $logo;
    }
    add_filter('avf_logo_final_output', 'second_logo');
    
    function my_home_category( $query ) {
     if ( $query->is_home() && $query->is_main_query() ) {
     $query->set( 'cat', '17');
     }
    }
    add_action( 'pre_get_posts', 'my_home_category' );
    
    add_action('ava_main_header', 'ava_main_header_mod');
    function ava_main_header_mod() {
    	$output  = '<div class="header-message">';
    	$output .= '<span class="blue bold">Kom naar een informatieochtend!</span> <br>';
    	$output .= '<a href="http://www.tophbo.org/informatieochtend/" class="orange bold">Loop even binnen of meld je hier aan!</a>';
    	$output .= '</div>';
    	echo $output;
    }
    
    function custom_widget_featured_image() {
    	global $post;
    
    	echo tribe_event_featured_image( $post->ID, 'thumbnail' );
    }
    add_action( 'tribe_events_list_widget_before_the_event_title', 'custom_widget_featured_image' );
    • This topic was modified 10 years, 11 months ago by erikvermeulen.
    #437311

    Hey!

    Yes, you can add your own thumbnail size or use the existing thumbnail sizes. Regenerate the thumbnails afterwards. http://wordpress.org/extend/plugins/regenerate-thumbnails/

    Cheers!
    Ismael

    #437229

    Hey!

    I checked the blog page but the images are still 180x180px in size. Did you try the fix provided above? Please regenerate the thumbnails after. We’ll check the other issue after you resize the images. Decreasing the image size to 81x81px should take care of the PageSpeed Insights Optimize images warning as well.

    Cheers!
    Ismael

    #436902

    Hey altei!

    Hmm, not sure what could be going on there. When you upload a new image to the media library Enfold will create some thumbnails to use in certain areas but those should not be displaying there at all.

    Let’s try the following.

    1. Deactivate all plugins.

    2. Completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest.

    Regards,
    Elliott

    #436882
    CharlieTh
    Participant

    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.)

    Is it possible that the hover action remains the same, but you can set the click action to go to a particular page?

    Is this same look available on one of the other ALB components that I’m missing?

    This is one of those “looks simple” but can’t figure it out myself!

    Thanks for any help!

    #436844

    Hey!

    Send us a link and let us know which thumbnails you wish to hide.

    Best regards,
    Elliott

    • This reply was modified 10 years, 11 months ago by Elliott.
    #436760

    In reply to: blurry pictures

    Hey!

    The product image stretches when the layout switch to a single column. Add this in the Quick CSS field to use the natural image size on mobile devices:

    @media only screen and (max-width: 480px) {
    #top .thumbnail_container img {
      width: auto;
      height: auto;
    }}

    Or set the Catalog Images to use larger images.

    Cheers!
    Ismael

    #436636

    Hi!

    Edit includes > related-posts.php. Look for these codes:

    'image_size' => 'square',
    

    Replace ‘square’ with a different thumbnail size. The name of the thumbnail size is located on functions.php:

    $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

    Best regards,
    Ismael

    #436398
    johncon
    Participant

    Hello,

    I am using images with various sizes but most of them have a width around 900px and a shorter hight. Woocomerce shows the small thumbnails correctly formatted but the large preview image is streched.
    I guess I have to change the size of the images in the Woocommerce settings and regenerate the thumbnails using that plugin, but I don’t know to what size, I tried 1200×1200 but that didnt seem to have any effect

    Thank you in advance

    #436217

    Hi Andy
    1. on this page: http://andes-world-travel.flywheelsites.com/trips/ecu-48/ and see here: http://imgur.com/IqMS2Bv
    if you go to itinerary, you will see under the entry for DAY 1, there is an extra space there between DAY 1 and DAY 2 compared to the other items. I have checked and rechecked the text block, table, etc. but can’t find the cause. It’s minor…but frustrating.

    2. I would like to increase the size of the thumbnails in the portfolio widgets. Do I have to resize them in the media library or is it done through css?

    3. The code for the widget did not work for me – but that is what I’m trying to do (move the excerpt closer to the title)

    thanks for your help
    n

    • This reply was modified 10 years, 11 months ago by Munford.
    #436013

    Hi Elliott,
    I want to use limited thumbnails because in some of our gallery’s we have a lot of picture, and it is looks bad when we have 50 thumbnails, so my clients wants to show just some thumbnails, and the rest of the picture just show in the light box.
    Best regards.
    Zoltan

    #435935

    Hey Frank!

    Danke dass Du unser Theme verwendest.

    In functions.php des Child Themes (oder des Hauptthemes, wenn Du kein Child Theme verwendest) am Anfang füge das folgende ein (z.B. über Dashboard -> Appearance > Editor):

    
    add_filter( 'avf_modify_thumb_size', 'my_image_sizes', 10, 1);
    		
    function my_image_sizes ( array $image_sizes )
    {
    	$image_sizes['square'] 		 	    = array('width'=>81, 'height'=>81);
    	return $image_sizes;
    }
    

    Use https://wordpress.org/plugins/regenerate-thumbnails/ after adding this.

    Nur zur Info von Kriesi:

    Ist so gewollt. ist bei den kleinen bild dateien normal ned tragisch und stellt gleichzeitig sicher das es auf retina displays auch gut aussieht.

    Cheers!
    Günter

    • This reply was modified 10 years, 11 months ago by Günter.
    #435925
    This reply has been marked as private.
    #435910

    It looks like I fixed it by changing it from “Show thumbnail and display post title by tool tip” to “Show thumbnail and post title by default” and then adding the css code.

    Thanks

    #435908
    fpanico82
    Participant

    hi,
    I would like to know why in feedly not I see the pictures of my articles?
    obviously I set the image…

    #435490

    Oh, I’m sorry — I know I tried that (Peter’s post) before, but I thought it didn’t work for me, for some reason… OH! I see what it is! Peter’s snippet doesn’t add the excerpt and read more links. BUT, that snippet combined with Elliot’s tweak to the includes file above (April 22) gives me what I’m looking for — the thumbnails and excerpt and read more links on archives pages.

    Thanks guys!!

    Uh oh! It looks like Elliot’s snippet in the includes file was actually conflicting with my single posts pages — instead of showing the whole post, they were just showing the excerpt and read more link. So, back to the drawing board. Can we re-open this ticket? Now I’m back to needing excerpts and read more links on my category/archive pages (e.g., http://skidrow.org/category/affordable-housing/ ).

    • This reply was modified 10 years, 11 months ago by sky19er.
    #435424

    Hi Elliott,
    I want to use limited thumbnails because in some of our gallery’s we have a lot of picture, and it is looks bad when we have 50 thumbnails, so my clients wants to show just some thumbnails, and the rest of the picture just show in the light box.
    Best regards.
    Zoltan

    #435372
    #435317
    codecreative
    Participant

    Hi

    This website shows no preview on the second slide when hovering your mouse of the thumnbnail for slide 2 at this site

    http://www.warringtonsmileclinic.co.uk/

    I have set an image as a preview thumbnail but this is failing to render on the front end of the site and it still says no preview

    any advice on what im doing wrong?

    #435285

    Hey!

    It should be. To make sure, i asked my teammates to check your related post thumbnails on Firefox. Please kindly wait to hear from them.

    Edit: @rikard also checked your website on Firefox and confirmed that he also sees it as my screenshot :)

    Regards,
    Yigit

    • This reply was modified 10 years, 11 months ago by Yigit.
    #435271

    Topic: blurry pictures

    in forum Enfold
    Robert188
    Participant

    Hello,

    I have read some latest advices concerning blurry pictures but unfortunatelly non of them worked for me.
    I do have blurry pictures on my frontpage, but only pictures of products. Another pictures on my frontpage like portfolio are clear. Strange is, than blurry is not only picture but description as well and the problem is visible only on my iPhone (maybe other mobiles) and iPad. If I open my frontpage on computer monitor it is clear. I tried to resize and renegerate thumbnails but with no results and since blurry is also description, I am not sure that it is a question of picture size. All my pictures are almost always 1000x1000pcs.
    My website is http://www.manufactura.cz
    Thank you in advance for any advice!
    Robert

    #435243

    Hey tech500!

    you could modify the shortcodes you are using. To activate lightbox use something like this:

    [av_image src='YOUR-THUMBNAIL.jpg' link='lightbox'][/av_image]
    

    If you still need help then please provide us admin access and show us the exact page you are trying to modify.

    Cheers!
    Andy

    mdbg
    Participant

    Hi Guys,

    I’m using a plugin to show product listings in my enfold theme.
    = The pages for the individual listings are showing well.

    But my problem is the gallery view of my products on the Product Archive page (Custom Post Types Archive page).
    = For some reason, my WP / Enfold setup is ONLY SHOWING ONE of my products in the Archive Page, when it should show a gallery of all my products (currently 3 product thumbnails & description excerpts).
    => My setup is effectively not following the rules which my plugin has set! i.e.) “Show 10 per page” ! : (

    Can anyone provide any assistance?

    Many thanks
    John : (

    #435137

    Hey DJQuad!

    Thank you for coming back.

    If you are using a child theme in functions.php of the child theme put the following:

    
    /* 
    Add a checkbox to the featured image metabox 
    */
    if(!function_exists('avia_theme_featured_image_meta'))
    {
    	add_filter( 'admin_post_thumbnail_html', 'avia_theme_featured_image_meta');
    	
    	function avia_theme_featured_image_meta( $content ) 
    	{
    		global $post, $post_type;
    	
    		if($post_type == "post")
    		{
    		    $text = __( "Don't display image on single post", 'avia_framework' );
    		    $id = '_avia_hide_featured_image';
    		    $value = esc_attr( get_post_meta( $post->ID, $id, true ) );
    //		    $selected = !empty($value) ? "checked='checked'" : "";
    			$selected =  "checked='checked'";
    		    
    		    $label = '</div><div class="av-meta-extra-inside"><label for="' . $id . '" class="selectit"><input '.$selected.' name="' . $id . '" type="checkbox" id="' . $id . '" value="1" > ' . $text .'</label>';
    		    return $content .= $label;
    		}
    		
    		return $content;
    	}
    }
    
    

    Otherwise modify enfold\functions-enfold.php line 1188: locate

    
                $selected = !empty($value) ? "checked='checked'" : "";
    

    and replace with:

    
    //		    $selected = !empty($value) ? "checked='checked'" : "";
    			$selected =  "checked='checked'";
    

    Regards,
    Günter

Viewing 30 results - 6,721 through 6,750 (of 10,097 total)