Viewing 30 results - 4,621 through 4,650 (of 10,101 total)
  • Author
    Search Results
  • #719586

    Hey flocco21,

    Wordpress cropped deine Bilder automatisch und mit diesem Plugin kannst du dies selbst steuern: https://de.wordpress.org/plugins/simple-image-sizes/

    Vergiss nicht deine Thumbnails zu regeneraten!

    Wenn es damit immer noch nicht klappt, dann versuche es mal mit einem standard WordPress Theme und sag uns, ob du da ähnliche Ergebnisse erhältst oder nicht.

    Liebe Grüße,
    Andy

    #719374
    blars62
    Participant

    Hi — I’m having trouble getting larger thumbnails on a blog posting where I’ve included a standard gallery. The thumbnails are always small (about 80×80 it looks like), even when I set what I believe the appropriate settings are to get them to be 300×300. Here’s the page:

    I’ve set the following:
    –within the Gallery: columns = 3, size = “Gallery”
    –within “Settings/Media”: thumbnail size = 300×300 (changed from default of 80×80)

    When I look at the post on my desktop, thumbnails are tiny (80×80 still?). What changes do I need? Many thanks!

    -Brad

    #719337

    Hi Ismael,

    This has NOT been the case for ALL of my previous posts…They absolutely have featured images. And it’s actually a big UX problem for me because instead of providing a thumbnail view and then users click on the portfolio (mostly videos in my case) and then the video pops up big and plays. Using the “featured media” box means that the first portfolio item is just a still picture–instead of the videos. Users are supposed to figure out that they need to click the tiny little arrow to get to the actual video content? Not good for my uses anymore. I guess I’ll have to start the hunt for a new video portfolio theme if this weird new problem can’t be corrected.

    Thanks,
    Farrin

    #719294

    Hey!

    Thank you for using Enfold.

    The blog archive or category pages are using a specific thumbnail called “portfolio”. If you want to replace it with custom thumbnail, you have to modify the archive.php file and adjust the avia_post_slider attribute.

    $atts   = array(
                                    'type' => 'grid',
                                    'items' => get_option('posts_per_page'),
                                    'columns' => 3,
                                    'preview_mode' => 'custom',
    	            'image_size' => 'extra_large',                             
                                    'class' => 'avia-builder-el-no-sibling',
                                    'paginate' => 'yes',
                                    'use_main_query_pagination' => 'yes',
                                    'custom_query' => array( 'post__in'=>$post_ids, 'post_type'=>get_post_types() )
                                );

    We set the “preview_mode” parameter to “custom” so that we can choose a predefined “image_size”. In the code above, we set it to “extra_large”.

    Cheers!
    Ismael

    #719196

    I posted the info. I need to center the columns text. And I have the portfolio setup like I want to have it but I can not play video in there? It only shows the thumbnail.

    #719075
    niufeng99
    Participant

    I have a problem.
    How to disable the image thumbnail link open in new tab?
    Earlier time I managed to disable the big image link with custom css
    `
    .avia-gallery .avia-gallery-big {
    pointer-events: none;
    cursor: default;
    }
    Please advise how I resolve this problem with css.
    Thank you

    #719010

    Hi Andy,

    Thanks for your reply. I’ve installed the plugin you mentioned. Now I have a lot of media-classes which I can change. I’ve tried featured, because I have added the image as the featured image. But this doesn’t change anything. Can you tell me which class I should use?

    thumbnail 400 px 150 px Yes
    medium 300 px 300 px No
    medium_large 768 px 0 px No
    large 1030 px 1030 px No
    widget 36 px 36 px Yes
    square 180 px 180 px Yes
    featured 347px 150px Yes
    featured_large 1500 px 630 px Yes
    extra_large 1500 px 1500 px No
    portfolio 495 px 400 px Yes
    portfolio_small 260 px 185 px Yes
    gallery 845 px 684 px Yes
    magazine 710 px 375 px Yes
    masonry 705 px 705 px No
    entry_with_sidebar 845 px 321 px Yes
    entry_without_sidebar 1210 px 423 px Yes
    shop_thumbnail 120 px 120 px Yes
    shop_catalog 450 px 450 px Yes
    shop_single 450 px 999 px No

    Hope you know which class is used.

    Regards,

    Erwin

    #719000

    Hey StephanPfluegler,

    Yes, just edit the portfolio and set Portfolio Grid Image Size to Choose the Portfolio Grid image size manually (select thumbnail size) then select a size that you want.

    Best regards,
    Nikko

    #718993
    elenapoliti
    Participant

    Hi, I have followed similar post about adding a further thumbnail size for images. In particular in this one (https://kriesi.at/support/topic/generate-new-image-sizes-in-child-theme/) you say that if I create a new rule for thumb size and I still want to have all the rest I must add all the old contents in my new array.

    I wrote the following function with a new thumbnail called ‘page_bottom_section ‘: 2500 x 430

    function avia_change_image_size_array() {
    global $avia_config;
    $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
    $avia_config['imgSize']['page_bottom_section'] 	= array('width'=>2500, 'height'=>430 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize'] = apply_filters('avf_modify_thumb_size', $avia_config['imgSize']);
    
    $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'),
    	'page_bottom_section'	=> __('Section Bottom Page','avia_framework'),
    );
    
    }
    add_action( 'init', 'avia_change_image_size_array');

    However I don’t see my new page_bottom_section in the dropdown list. However, if I add to my function only my rule without the others, from the dropdown menu I won’t see all the 9 rules but 3 plus my rule (so actually it exists!).

    What I did wrong? I wish to have all your 9 rules + mine

    Thank you

    • This topic was modified 9 years, 5 months ago by elenapoliti.
    #718978

    In reply to: Images in Mobile

    Hi Yigit,
    Here are the problems I am seeing on mobile:
    1. The secondary menu at top disappears, but the lines remain.
    2. The image that goes with the Find Your Hot Tub isn’t showing up.
    3. The image with Find Your Big Green Egg isn’t showing up.
    4. The image with Would You Like to Talk isn’t showing up.
    5. On mobile and desktop, the blog post thumbnails aren’t showing up in the footer.

    Thank you!
    Justine

    #718589
    flocco21
    Participant

    Liebes Kriesi-Team,

    ich teste gerade eine neue Startseite und würde gerne den “Featured Image Slider” einbauen. Leider werden die Bilder immer unscharf dargestellt. Ich habe bereits mit verschiedenen Größen (bis wirklich sehr groß) und mit verschiedenen Bildverhältnissen rumgespielt. Ich habe auch in den WP-Thumbnail-Einstellungen alles mögliche getestet von 80×80 bis zu 700×700 für das Thumbnail. Das Resultat ist und bleibt, dass die Bilder extrem unscharf bleiben. Jetzt bin ich mit meinem Latein am Ende und hoffe, ihr könnt mir den entscheidenden Tipp geben.

    Eine Testseite liegt hier
    http://phototravellers.de/rrrrrr/

    Viele Grüße
    Florian

    #718586

    Nikko,
    Added ftp access below.
    I ran these tests:
    restored the site, including database from an earlier version.
    set the theme to a default theme – the media library was visible again
    uploaded new versions of the enfold theme and child theme
    – now the media library is about half visible and the other half looks as though all the thumbnails and photos are broken.

    thank you

    -m

    #718421

    Regenerating the thumbnails apparently broke the two that were working before. Now all four are showing the square thumbnail.

    GottaGetEm
    Participant

    Hi there.

    I was wondering if there is a way to show copy upon clicking a thumbnail when using a Big Image w/ Thumbnails gallery. Under, “Private Content” I included a link to an example page. It is what will become the client’s old website. I would like to carry the functionality over if possible.

    Any ideas from the pros is appreciated.

    Thank you

    #718378
    pcmichiana
    Participant

    Having an issue on my archive pages where it’s hard cropping thumbnails to a square instead of fitting image. Enfold seemed to do fine with OLD images (see sample in link below), but when I created two new posts and added featured images I got the larger, square versions.
    http://www.craigthetechteacher.com/category/full-courses/faster-8-complete-guides/

    Attempted solutions:
    1. Update WordPress settings to: 142 x 80 thumbnail (force crop), 1280 x 720 medium, 1920 x 1080 large
    2. Deleted and reuploaded thumbnails in the sample above after changing media settings.
    3. Regenerated thumbnails using most popular thumbnail regeneration tool
    4. Cleared cache after regen
    5. Attempted to reapply featured image after cache removal

    Any other suggestions on this one?

    Absolutely love the theme.

    Thank you!

    #718219

    Topic: Thumbnail Categories

    in forum Enfold
    nuncer
    Participant

    Hi, is there a way to show in product categories thumbnail image and decription on the right?
    In practice:
    Home>Categories: I see all thumbnail image categories and it’s ok.
    In Home>Categories>Product: It must shows an image thumbnail on the left and description text on the right.

    In private a link of exemple and admin access

    Thank you in advance
    Best regards.
    Nunzio

    Hey!

    Alright. Please open a new thread. If you want to adjust the pattern of the share icons, you can use the following filter.

    add_filter('avia_social_share_link_arguments', 'avia_add_social_share_link_arguments', 10, 1);
    function avia_add_social_share_link_arguments($args)
    {
    	$thumb = wp_get_attachment_image_src( get_post_thumbnail_id(), 'masonry' );
    	$args['twitter']['pattern'] = 'https://twitter.com/share?text=[title] '.$thumb[0].'&url=[shortlink]';
    	return $args;
    }

    Best regards,
    Ismael

    #718097

    Hey norbou!

    Thank you for using Enfold.

    Please refer to these threads if you want to remove some of the generated thumbnails.

    // https://kriesi.at/support/topic/image-upload-2/#post-614738
    // https://kriesi.at/support/topic/enfold-child-remove-shop_single-shop_catalog-shop_thumbnail-in-functions-php/#post-696928

    Regards,
    Ismael

    #718063

    Discovered that the plugin that hides the Portfolio items is:
    Admin Menu Editor
    When this one is turned off, the ‘Portfolio items appear in the dashboard.

    But the bad news is that all the thumbnails and photos in the media library are not showing.
    I tuned off all the plugins and re-installed the theme, but the entire media library shows no photos.
    Is there a fix fro this?

    Any help would be appreciatred.

    -m

    #717926

    Topic: Blog Thumbnail

    in forum Enfold
    jnightingale
    Participant

    Hi,
    Can you please look at the footer on this page: http://c83.b63.myftpupload.com/

    Can you tell me how to get the blog thumbnail photo to show up next to the text?
    Thx!

    #717852

    In reply to: Adjusting image size?

    Hi,

    seems that it’s working fine for you. Don’t forget to clear browser cache and hard refresh a few times after regenerating thumbnails.

    Best regards,
    Andy

    #717604

    In reply to: Portfolio grid

    Hey MaaikeVVV!

    Thank you for using Enfold.

    The images have different sizes. Edit the Portfolio Grid element then set the “Portfolio Grid Image Size” settings to the second option. Select the thumbnail size. And make sure that the original or source images have the same sizes.

    Cheers!
    Ismael

    #717594

    Hi!

    The image is not included in the “share pattern”. You can filter the pattern with the following code.

    add_filter('avia_social_share_link_arguments', 'avia_add_social_share_link_arguments', 10, 1);
    function avia_add_social_share_link_arguments($args)
    {
    	$thumb = wp_get_attachment_image_src( get_post_thumbnail_id(), 'masonry' );
    	$args['twitter']['pattern'] = 'https://twitter.com/share?text=[title] '.$thumb[0].'&url=[shortlink]';
    	return $args;
    }

    // https://kriesi.at/support/topic/large-twitter-card-for-post-share-icon/#post-662746

    Best regards,
    Ismael

    #717536

    Topic: Search Bar Ajax

    in forum Enfold
    Tflores87
    Participant

    Hi!

    I recently spoke with you on another post (https://kriesi.at/support/topic/search-does-not-work/) concerning the search box and you helped me get it all set up, thanks again! I had a few minor questions after the set up and was hoping you could help.

    1. We noticed that on our Ajax search lists too many products— we are only wanting to display 4 at most before “View All Results” link. How can we limit the max to 4 products shown?
    ⁃ Also, the Results never disappear and is always open (as seen in this video)
    ⁃ As for the search .avia-arrow, where is it?

    2. We would like the Ajax Search functionality for our other search fields. Is that possible to have Ajax functionality for those as well?

    3. How do we get the Search Results Page to display the Product Thumbnails like in the Ajax Search (seen here) in stead of the numbers (seen here)?

    • This topic was modified 9 years, 5 months ago by Tflores87.
    #717359

    Hi,

    I’m very sorry for the confusion. You can actually override the templates as described in the link (https://docs.woocommerce.com/document/template-structure/). However, the theme configures the templates via hooks and filters. Do you have a cache plugin? Make sure that you’re not looking on a cached version of the site. The modification above should create a new column for the product thumbnail. We added this block of codes:

    
    <td class="product-thumb">
                                <?php $thumb = get_the_post_thumbnail_url($_product->id, 'shop_catalog'); ?>
                                <?php
                                    if(!empty($thumb)) {
                                        echo "<img src='{$thumb}' width='80px' height='100px'/>";
                                    }
                                ?></td>
    

    Best regards,
    Ismael

    Hi Andy,
    I am suffering confusion over your suggestion of using a “default” WordPress theme?? Luckily I had a copy version locally on my machine, so tried what you suggested, but of course, selecting a “default” WordPress theme was useless. The whole website is built using Enfold as a theme, so selecting a different theme and expecting it to render correctly was a bit pointless.
    However, what was more worrying was that when returning to my Enfold Child theme, the thumbnails in the Woocommerce pages display were twice as big compared to what they were before I changed the theme to a default alternative.
    See the image link in Private Content comparing left side (my now enlarged thumbnail version on my local version) with right side (the correct size thumbnails on the live site)
    >:(

    #717041

    Hallo Andi,
    ich denke ich habe hier im Forum die Lösung gefunden.
    aber ich finde die richtige config.php nicht – der Post ist von 2014,also etwas älter …

    https://kriesi.at/support/topic/moving-woocommerce-tabs-underneath-the-image-and-short-description-full-width/

    Das muss geändert werden aber ich finde den Pfad nicht.

    I have partially succeeded in moving the Product tabs underneath the image and thumbnails + title / short description and having the woo commerce tabs be full width by changing the 1 to 5 in the file enfold/woocommerce-config/config.php

    #
    # display tabs and related items within the summary wrapper
    #
    remove_action( ‘woocommerce_after_single_product_summary’, ‘woocommerce_output_product_data_tabs’, 10 );
    //add_action( ‘woocommerce_after_single_product_summary’, ‘woocommerce_output_product_data_tabs’, 1 );
    add_action( ‘woocommerce_after_single_product_summary’, ‘woocommerce_output_product_data_tabs’, 5 );

    Danke für Deine Hilfe.
    Beste Grüße
    Marcus

    Hi Nikko
    The white gaps you indicated in your image were not what I was referring to.

    I was referring to the fact that the thumbnail grids, when full on one page would not populate the bottom right-hand corner location and push content onto a new page for just one thumbnail. This should be present on the previous page as there is white space there for it to go.

    I have given marked up images and page links in the private content for you to see what I mean.

    #716719

    In reply to: Adjusting image size?

    Hello Again,

    So, I went back, installed the plugin, and tried to modify the image sizes.

    The bad news is, I still can’t figure out a way to do it. When I upload the image into a media element, it still only gives me the standard medium, large options (I have tried regenerating thumbnails, etc.).

    The good news is, I have used buffers in the elements/columns to pare the images down (see also http://www.brilliantl.com/index.php/about/ for another example of this.).

    Is this an OK way to adjust image size?

    Or is there any easy way to do this that I’m missing?

    Thanks,

    L

    #716624
    teamgl_olly
    Participant

    Hey!

    After uploading pictures there are other colors in the thumbnails as in the original. In the Lightbox the colors are normal displayed.
    But only in the last uploads. All pics uploaded before are normal colored.

    What can I do?

Viewing 30 results - 4,621 through 4,650 (of 10,101 total)