Viewing 30 results - 6,751 through 6,780 (of 10,097 total)
  • Author
    Search Results
  • #435069
    This reply has been marked as private.
    #434962

    Hey!

    Hmm.. Yeah. Looks like it’s not working in a child theme but editing the code directly in the functions.php works fine. This should do the trick in the child theme:

    function ava_image_sizes() { 
    add_image_size('portfolio_small', 261, 186, array('center', 'top'));
    }
    add_action( 'after_setup_theme', 'ava_image_sizes', 11 );

    Based on: http://wordpress.stackexchange.com/questions/74934/remove-or-update-add-image-size

    Don’t forget to regenerate the thumbnails. If you have the Simple Image Sizes plugin installed, please deactivate it first.

    Best regards,
    Ismael

    #434892
    frank-rahn
    Participant

    Hallo zusammen,

    ich verwende den Blog-Stil “Einzelner Autor, kleines Miniaturbild” (Blog Single Author Small). Dabei habe ich über Google PageSpeed Insights festgestellt, dass die Thumbnail der Beitrage in der Größe 81x81px (.small-preview) angezeigt werden, aber die Bilder als 180x180px geladen werden. PageSpeed findet das nicht in Ordnung und möchte die Bilder reduziert haben.
    Was kann ich tun, damit die richtige Bildergröße verwendet werden? Die Bilder wurden in der richtigen Größe von WordPress generiert, sie müssten nur auch verwendet werden.

    Ich verwendet WordPress v4.1.3 und die aktuelle Version von Enfold.
    Hier kann man es sehen http.//www.frank-rahn.de

    Vielen Dank und Grüße
    Frank Rahn

    • This topic was modified 10 years, 11 months ago by frank-rahn.
    #434773
    rdswestnet
    Participant

    Hello

    http://www.sakuraseafoods.com/ Both these issues are on phone only:

    1. How can I get both buttons on the fullscreen slider to line up vertically?
    2. How can I get the thumbnails for the gallery to be bigger?

    Thanks much, Rob

    #434716
    songjiekun
    Participant

    i encounter the same problem as this thread https://kriesi.at/support/topic/enfold-masonry-problem-safari/
    The masonry element is not showing the thumbnails on safari at ios device on first load…. However if you make your screen slightly smaller or bigger or rotate your device,then they start to show.
    my ios devices are iphone 6 and ipad air 2.
    the page on my site is http://cotik.lvsanweb.com/cases/

    you can check this out
    http://cotik.lvsanweb.com/cases/

    #434677
    This reply has been marked as private.
    johnlaunstein
    Participant

    Hi! Just wondering if there is a way to stop image filenames from displaying on mouseover?

    Also same question for captions. I’ve noticed when I view a thumbnail gallery that clicks through to lightbox display on my phones, once I click on one image to preview it displays the caption and that never disappears even when going to another image. I think I’d prefer to just eliminate captions from loading on mouseover altogether.

    Thanks in advance!

    #434517
    This reply has been marked as private.
    #434433

    Yes, I’m using the “Advanced Layout Editor” option in Dashboard > Enfold > Blog Layout > Style. I need to use that method so I can maintain the sidebar submenu on the main blog page and put other things in the body area of the main blog page. The code snippet you gave me added excerpts and read more links to my archives pages, I’m just hoping we could also add thumbnails on those archives pages (e.g., http://skidrow.org/category/affordable-housing/).

    I’ll send you a login in the following, private reply.

    #434401

    Hi BoldiZo!

    We can give you some CSS to use but I’m not sure why you would want to do that. If you only want 5 thumbnails to display then you would only need to select 5 images in the gallery.

    Regards,
    Elliott

    Hey!

    1. You can change the size for those on line 118 in the functions.php file. You may need to regenerate your thumbnails afterwards to see the changes.

    2. Set your posts to display the full content instead of a summary in Dashboard > Settings > Reading.

    3. It’s because your using the advanced layout editor on the post. If you want the post to display like a regular post instead of a page then be sure to use the default editor.

    Regards,
    Elliott

    #434232

    Hey!

    It’s being resized to 180 x 180 but your forcing it with CSS to 220 x 220.

    You can change the size on line 118 in the functions.php file.

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

    And then regenerate your thumbnails, http://wordpress.org/extend/plugins/regenerate-thumbnails/.

    Best regards,
    Elliott

    #434221
    This reply has been marked as private.
    #434018

    Topic: Enfold add_image_size

    in forum Enfold
    kyfr4n
    Participant

    Hello,

    I’ve read many posts on how to add image size to enfold in a child theme and i don’t succeed…
    My goal is to use it in the Image Shortcode.

    This is what I add to my functions.php in the child theme :

    function avia_change_image_size_array() {
    	global $avia_config;
    	$avia_config['imgSize']['my_size'] = array('width'=>700, 'height'=>700 , 'crop' => false);	
    
           $avia_config['selectableImgSize'] = array(
    		'square' 				=> __('Square','avia_framework'),
    		'featured'  			=> __('Featured Thin','avia_framework'),
    		'featured_large'  		=> __('Featured Large','avia_framework'),
    		'portfolio' 			=> __('Portfolio','avia_framework'),
    		'gallery' 				=> __('Gallery','avia_framework'),
    		'entry_with_sidebar' 	=> __('Entry with Sidebar','avia_framework'),
    		'entry_without_sidebar'	=> __('Entry without Sidebar','avia_framework'),
    		'extra_large' 			=> __('Fullscreen Sections/Sliders','avia_framework'),
    		'my_size'				=> __('Ma taille perso','avia_framework'),
    		
    	);
    
    }
    add_action( 'init', 'avia_change_image_size_array', 0);

    But it seems that this hook is trigger after avia_backend_add_thumbnail_size(), even with a priority of 0.

    Thanks for your help.

    #433955
    BoldiZo
    Participant

    Hi guys,
    for the first, it’s a really great theme.
    And now my problem: if i make a gallery with big preview and with thumbnails under. I can limit somehow the number of the thumbnails?
    If i have 40 pictures in a gallery, but i want just one big preview and 5 little thumbnail, i can do somehow?

    Thank You
    Best regards, Zoltan.

    #433723

    Hi norman1!

    In the /enfold/functions.php file around line 127 you should see this.

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>845, 'height'=>321);		            	// big images for blog and page entries
    

    You can increase the height there and then regenerate your thumbnails, https://wordpress.org/plugins/regenerate-thumbnails/.

    Regards,
    Elliott

    #433673

    Right, but when you use the blog post element, it only shows the thumbnails on the blog index — I’ve switched it back to that setting so you can see (e.g., http://skidrow.org/category/affordable-housing/). And if I use the other method, I lose the sidebar submenu and, since I handle my page titles manually, I lose the page title on the blog index.

    #433652

    Hey!

    For the blog posts element there is an option where you can set to display the excerpt or the full post content.

    You said the thumbnails are not displaying? I checked your category magazine-articles and the thumbnails are displaying fine for me. Send us a link to the page where they are not displaying so we can get a better idea.

    Best regards,
    Elliott

    • This reply was modified 10 years, 11 months ago by Elliott.
    #433601
    tech500
    Participant

    Hello,

    I want to show all my products and categories thumbnails, as Lightbox, and not have them link to the buy product page.
    Something like the shop on that site: http://bit.ly/1zQjarW

    Can any one recommend a few ways to show wooccommerce categories as gallery without the actual shop features ?

    Thanks

    #433185
    liwaje
    Participant

    Hi there team Enfold,

    Is there any way to add captions on top of an image thumbnail, that will show when you use the blog posts grid element? I would like the thumbnail to show a text like “New project” (white font on orange background). The “New project” caption should not show on the feature image in the blog post itself, only on the thumbnail. I would like to toggle between 3 different captions on the thumbnail images saying either “New project”, “About us” or “New Inspiration”. Is that possible to do so? And is it possible to do it, so that the client could write the caption without having to code anything themselves, when they make a new blog post?

    Best regards,
    Lisbeth

    #433167
    Aljoscha23
    Participant

    Hi,

    I’m using your great Enfold theme and have a portfolio on a site. The single portfoilo entries should all work the same. I have a 2/3, 1/3 avia layout. The 2/3 box features a galery, the 1/3 a plain text. The problem is with the avia galery. I loaded several images into the galery, some in portrait, some in landscape format. while portrait images are shown correctly and have some white space left and right, landscape images are getting squeezed to fully fill the galery image. So they are full height but show the whole width squeezed into the box as well. The images in the thumbnail images underneath apear to be cropped correctly to show a square image.

    Thanks for your support,
    Aljoscha

    hoqui
    Participant

    Hi, I searched the forum a lot but did not find working solution.
    With mouse over an image in a gallery, after some seconds shows the name of the big image file. Same with Thumbnails underneath. Same effect also with easy slider, after a while turns up the image file name. I tried different CSS quickcodes – no result.
    I tried the recommended .js code on js/avia.js

    jQuery(document).ready(function($){
    jQuery('img').removeAttr('title');
    });

    On easy slider this worked fine, perfect
    But on the (simple) gallery element this code avoided to show the file name, but instead it shows the description text (or the caption text,if description is not present). I want caption text not to be empty because I like the caption text on black background when hovering over the small thumbnail gallery pictures below the big picture.
    By the way: In a gallery shows only the filename or caption or description of the first gallery image no matter which image is shown in the main (big) image.
    Do you have any advice? Thanx in advance.

    #433077

    The CSS provided above does not take the white border off of a gallery with the big image shown above the thumbnails. It only takes the border off of the thumbnails.

    i.e.
    #top div .avia-gallery img { border-style: none; padding: 0; }
    #top #wrap_all .avia-gallery-1 .avia-gallery-thumb a { width: 16%; margin: 20px; }

    .avia-gallery-big { border: 0 !important; }

    Notice the Gallery with Preview and Bigger Gallery with Preview on your demo…
    http://kriesi.at/themes/enfold/shortcodes/gallery/

    The above code only removes the border for the thumbnails.

    Any ideas how to remove the border from the big preview? I have tried numerous css combinations and now stuck.

    Thanks,

    #433073

    Now we’re talkin! ;) I went to Dashboard > Enfold > Blog Layout and set the “Blog Style” to the single author, small preview pic style, and made the edit to the includes/loop-index.php file, as noted above, and that did the trick. Now, what if I needed to do that while still using the advanced layout editor blog element? In that case, with your code, I get the excerpt and read more links on the archive pages, but no thumbnail — can you add the thumbnail in that code snippet? Thanks so much!!

    #432948

    Hi ThSchenk!

    Deutsch ist erstmal in Ordnung denke ich :)
    Versuche es mit diesem Plugin: https://wordpress.org/plugins/regenerate-thumbnails/
    Falls das nicht klappt, schicke uns bitte einen Admin Zugang zu, dann schauen wir mal rein. Login Daten kannst du hier als private Nachricht posten.

    Gruß,
    Andy

    Hey!

    It’s just so you understand how to create CPT’s. For example the supports > thumbnail option needs to be set if you want the featured image option to be available.

    Regards,
    Elliott

    #432827

    In reply to: image issues

    Hi Rikard,

    I can not find the option for changing the resolution? Im using the Easyslider and not Layverslider.

    Also:
    Im having problems with the tags. When i’m on the page Mad og drikke -> restaurant and want to choose to see restaurant in a specific city it shows all blogs/articles in that city and not only restaurant. Is this possible to achieve?
    I also think the small thumbnails is not looking sharp enough…

    Regards
    Louise

    Mike61
    Participant

    Hey Team,
    I have three questions:

    1.) What I have to do for change the thumbnailsize in blog-archive in the left:
    http://neu.inputaudio.de/category/creek/
    I know there are more and bigger sizes off all images, but I don’t know what I
    have to do for using this sizes.

    2.) What I have to to for eliminate the […] after the more content?
    Instead of this, I will show the whole text from top to more, not truncated.

    2.) The featured image will not shown in the single post:
    http://neu.inputaudio.de/evolution-100a-vollverstaerker/
    What is wrong?

    Thank you for your answers and best regards
    Mike

    scottwassermanmedia
    Participant

    On my website, I have a fullscreen slider, with a video that autoplays. When a mobile user visits my homepage, they only see the thumbnail image, as that is my fallback solution currently.

    Here is my website: scottwassermanmedia.com

    Is there a way to set a different homepage for mobile users, or an alternate, better fallback solution with good content?

    #432615
    Wolf
    Participant

    Hello Team Enfold.

    A while back I got the following quick css from Elliot to change the aspect ratio if the thumbnails in the blog overview.

    .blog-meta, .blog-meta a, .blog-meta img {
    width: 220px !important;
    max-width: 220px !important;
    max-height: 170px;
    height: 170px;
    border-radius: 0px !important;
    }

    I really like the size the images have now. But the images get stretched even if they are large enough. Also if i upload an image that is 220 170 it gets stretched. And facebook sharing doesn’t work with images under 200 x 200.

    So how do I stop the stretching?

    cheers

Viewing 30 results - 6,751 through 6,780 (of 10,097 total)