Viewing 30 results - 5,281 through 5,310 (of 10,101 total)
  • Author
    Search Results
  • #625326

    At the moment they are 1080 x 772 and as you can see they are only just not fitting in the square. If I could reduce them a small bit to fit in the square that would be great.

    When I reduce the image to 300 px I lose a lot of the quality of the image. Also at the moment when you click on the current image (I am not sure what to refer to them to? are those image on the page westcoasthammocks.com.au/superjumbo thumbnails or catalogue images?) you get through to the other product gallery images and when they are in full size of 1080 they are nice and big and you can see full detail. When I change the image size for the page i.e. down to 300 px then when you click through the product gallery images are also small and you can’t see the detail for example click on the image Original Rasta.

    For Original Rasta I have downsized the image size but it is not downsized on the main page (catalogue or thumbnail) for some reason.

    Ideally I would like them to fit in the box but retain the size so that when you click through you get the full image size 1080px.

    rixi
    Participant

    I try to delete the option for related projects on portfolios. Have lots of single portfolio sites with single projects (galleries) on them.
    On the left and right side comes always an arrow with a thumbnail for the next project.
    How can I get that out of the sites?
    Thanks a lot for help,
    Rixi

    • This topic was modified 10 years ago by rixi.
    #624901

    Hi,
    since this is not a permanent solution and will be removed with the next update, (ans also removes all thumbnails that are generated and necessary for the theme):

    Would you mind posting me your login data for wordpress as well as your FTP data in the “private data” field?
    I will see if I can find a fix that works better.

    Apparently this is an issue with GoDaddy, we have had some users reporting it now…

    Best regards,
    Kriesi

    #624686
    zetharia
    Participant

    Hello, I have a SmugMug account where all the photos are hosted at and it would seem to be the best idea to just link all the Featured Images (header graphics, images in blog posts, thumbnails for images in blog) to the external URL rather than to re-upload to WordPress and link it. Is there an easy solution for this? I tried a few Plugins but they don’t seem to work in ALL areas where the image would show up (i.e. the header graphic on the blog post will show up fine, but any instances on the blog page with thumbnails do not work). Do you have any solutions?

    #624611

    Topic: Hide every thumbnail

    in forum Enfold
    ott-werbeagentur
    Participant

    Hi kriesi-Team,

    seems that i am too stupid to find the right CSS code to hide the thumbnails.

    In the widget are “latest posts” everything worked fine, only the title is showing up. No thumb, news-time oder sub category..great.

    How can i do this for the “Blog Beiträge / blog posts”

    Looking forward to your answer,

    #624384

    Hey!

    You have to adjust the Large thumbnail size in the Settings > Media panel. Regenerate the thumbnails afterwards: https://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Ismael

    #624323

    Hi,

    Thank you for using Enfold.

    The theme is not using the default product thumbnail template. Add this in the functions.php file to add a placeholder:

    add_action( 'after_setup_theme', 'after_setup_theme_mod' );
    function after_setup_theme_mod(){
        remove_action( 'woocommerce_before_shop_loop_item_title', 'avia_woocommerce_thumbnail', 10);
        add_action( 'woocommerce_before_shop_loop_item_title', 'avia_woocommerce_thumbnail_mod', 10);
    }
    
    function avia_woocommerce_thumbnail_mod($asdf)
    {
    	global $product, $avia_config;
    	$rating = $product->get_rating_html(); //get rating
    
    	$id = get_the_ID();
    	$size = 'shop_catalog';
    
    	echo "<div class='thumbnail_container'>";
    		echo avia_woocommerce_gallery_first_thumbnail( $id , $size);
    		$thumbnail =  get_the_post_thumbnail( $id , $size );
    		if(!empty($thumbnail)) {
    			echo $thumbnail;
    		}
    		else {
    			echo "<img src='PLACEHOLDER IMAGE HERE'/>";
    		}
    
    		if(!empty($rating)) echo "<span class='rating_container'>".$rating."</span>";
    		if($product->product_type == 'simple') echo "<span class='cart-loading'></span>";
    	echo "</div>
    ";
    }

    Adjust the src attribute “PLACEHOLDER IMAGE HERE”.

    Best regards,
    Ismael

    • This reply was modified 10 years ago by Ismael.
    #624035
    dustingrof
    Participant

    Hey,

    I came across a weird bug since updating to the latest version of enfold and wordpress (i disabled all plugins). The Portfolio Items menu item was missing from my wordpress dashboard.

    I found this post that said that if two admin menu items have the same order number assigned one of them, one won’t show. I tried using the code they suggest on this post, but it didn’t help get the portfolio to work. https://www.wpfangirl.com/2015/help-my-custom-post-type-disappeared-from-the-admin-menu/

    I then decided to go to register-portfolio.php inside the includes/admin folder. I added the ‘menu_position’=> 33, to the arg array below and it reappeared in the menu.

    	$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,
    		'menu_position'=> 33,
    		'taxonomies' => array('post_tag'),
    		'supports' => array('title','thumbnail','excerpt','editor','comments')
    	);

    Is there a way to do this in the child theme’s functions.php file instead?

    #623485

    Hey seanchk!

    Thank you for using Enfold.

    The maximum width and height of the thumbnails generated for the masonry gallery is set to 705x705px. Images with 16:9 aspect ratio will be treated as “very wide” or “very high” images and will have twice the size (twice the height or twice the width) of the normal masonry items. Play around with different size settings to get the desired gallery layout.

    Best regards,
    Ismael

    #623339

    I’ve also tried adding the following code found here: https://kriesi.at/support/topic/change-main-product-image-using-thumbnails-beneath/

    function add_custom_target(){
    ?>
    <script>
    jQuery(document).on('mouseenter','.thumbnails .zoom', function(){
    var photo_fullsize = jQuery(this).find('img').attr('src').replace('-200x300','').replace('-169x300','').replace('-300x111','').replace('-300x200','').replace('-214x300','').replace('-300x169','');
    jQuery('.woocommerce-main-image img').attr('src', photo_fullsize);
    return false;
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_target');
    #623303
    LiamKenyon
    Participant

    Hello,

    I was wondering if there was something in enfold theme stopping the thumbnails showing in the main product image.

    At the moment i have disable lightbox to the main image but the thumbnails still show up in lightbox.

    I found this script which works with the standard wordpress theme when placed in the header.php:

    <script type="text/javascript">
    jQuery(document).ready(function() {
    	jQuery(document).on('hover','.thumbnails .zoom', function() {
            var photo_fullsize =  jQuery(this).find('img').attr('src').replace('-250x250','');
            jQuery('.woocommerce-main-image img').attr('src', photo_fullsize);
            return false;
        });
    });
    </script>

    But it doesn’t work when the enfold theme is activated.

    Any help with a workaround would be appreciated.

    #623109

    In reply to: magazine rtl layout

    Shalom!

    Please add following code to Quick CSS

    .rtl .av-magazine-thumbnail {
        float: right;
        margin-right: 0;
        margin-left: 15px;
    }

    Regards,
    Yigit

    #622902

    Hi thatryan!

    Thank you for using Enfold.

    The theme applies a predefined thumbnail to the posts. Install the following plugin to adjust the size of the “entry_with_sidebar” and “entry_without_sidebar” thumbnails. https://wordpress.org/plugins/simple-image-sizes/

    Regards,
    Ismael

    #622876

    Hi!

    Glad you found a workaround! I’m not sure why the dashboard re-generate did not work but the easiest and most effective way to re-generate the images is to use a plugin like https://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Vinay

    #622842

    Thanks Ismael,

    So if I want to have four columns what size should I make the thumbnails?

    #622783

    Hey keifygeorge!

    Thank you for using Enfold.

    The max width and height of the product thumbnails in the shop overview page is set to 450x450px by default. You can adjust the thumbnail size in the Woocommerce > Settings > Products > Display > Product Images section. In order to prevent WP from cutting off edges of the images, pre-cropped the thumbnail to the defined max width and height value. And upload images with uniform sizes as much as possible in order to have a consistent grid.

    Regards,
    Ismael

    torndownunit
    Participant

    I updated my site with the Enfold update that was released today, along with the WordPress update to 4.5.1. None of my portfolio featured images are loading in posts, or using any page builder elements to show portfolio posts. I disabled all plugins on the site, and it had no effect. Has anyone else run across this issue?

    The other symptom, the images in the media library will load in list view, but a big portion of them won’t load in grid view at all.

    EDIT: I tried the link here: https://kriesi.at/support/topic/having-problems-after-updating-to-wordpress-4-5-please-read-this-first/ and did all trouble shooting steps. I also manually updated all WordPress files. I also cleared any custom entries in functions.php to see if that would have any effect.

    EDIT 2: Thumbnails are showing up in a lot of places on the site, but if you click them you get ‘image not found’.

    What is the minimum PHP version the hosting should be running?

    #622226
    icebox10
    Participant

    Hello,

    After updated the theme, plugins, and wordpress – I am having issues with images not being able to upload. After they upload the thumbnail looks like a gray page and cannot be used. The site have been functioning for almost 3 years with no issues – after this recent update is when the media started having issues.

    Hope you can help

    #622076

    Topic: magazine rtl layout

    in forum Enfold
    talelie
    Participant

    Hi,

    I am using the magazine with a large image at the site of the small thumbnails.
    but… since my site is in Hebrew, I need the side image to be on the right (currently it is on the left)
    magazine layout - small image

    I need your help in changing the image and the text to the right (mirror to what it is now)

    Thanks
    Tal

    Hi Ismael,

    Sorry for all the stress and thank for your patience so far, This is where (check private content area) am trying to replicate the work. I can’t seem to achieve it. I have used the code in the shild theme functions file but no show. If you look at the page you’ll see that i want each ajax portfolio content to be different songs. Its not working that when i play it and i click any of the control or the ajax thumbnails the music stop. In fact from my observation the music keeps playing and when i click paly in another item that one continues playing over the previous one.

    Please any help will be much appreciated.

    #621824
    thatryan
    Participant

    Links in private, but cannot tell why images are being cropped on the blog index list and single post pages.

    In the admin post list, the thumbnail is right, and the featured image preview in bottom right of edit post screen is right, however on the actual site the images are cropped and look bad.

    Thank you

    #621380
    thatkidaathi
    Participant

    Hi there, I have an issue with the Masonry Gallery. the thumbnails are in terrible quality. I tried updating enfold and also tried changing line 126 in the functions.php:

    $avia_config['imgSize']['masonry'] = array('width'=>1300, 'height'=>870 , 'crop' => false); // images for fullscreen masonry

    But it still looks terrible, the image quality is not the issue here (i tried uploading a 4k image) and it still doesn’t look good

    COMING SOON PAGE ACTIVATED! LOGIN TO SEE SITE!

    Thank you for your time
    Cheers,
    Aathi

    Hi Ismael,

    Thanks for this. One more thing.

    1. I noticed the player stops when i click the close button or the 2 navigation arrow buttons beside the close button which is good. However, if the portfolio ajax is opened and audio is playing and then i click another portfolio thumbnail from beneath to see another ajax view, the audio doesn’t stop. Could you help fix such that clicking another portfolio thumbnail also stops the audio from playing.

    2. Also what adjustment/code was used so i can replicate this elsewhere on the main project im working on. Thanks.

    Many thanks and great work on the theme.

    • This reply was modified 10 years ago by adotopanuga. Reason: more inquiries
    #620725

    Hi!

    I checked the markup of the plugin after selecting an image but I don’t see any markup for the preview. Example of the selected image markup:

    <div class="wcuf_single_file_in_multiple_list"><span class="wcuf_single_file_name_in_multiple_list">Abducted (2).jpg</span><i data-id="1-824" class="wcuf_delete_single_file_in_multiple_list wcuf_delete_file_icon"></i></div>
    

    You can see the name of the thumbnail and close button but there’s no thumbnail preview. Please ask the plugin author for additional info.

    Cheers!
    Ismael

    Hey!

    Please update to the latest version and it will fix all the issues.
    If an image is not visible, please clear cache, try to regenerate thumbnails but it is sure they will be back to visible.

    Cheers!
    Basilis

    Hey!

    It’s because some images have a different aspect ratio so instead of cropping them to 180×180 it does 180×120, you could add this to Quick CSS to make sure all images look square:

    .blog-meta img.attachment-square.size-square {
        min-width: 80px;
        min-height: 80px;
    }

    Alternatively you could this plugin to specifically set the size of the images:
    https://wordpress.org/plugins/crop-thumbnails/

    Cheers!
    Josue

    #619459
    tangerinemoons
    Participant

    Is it possible to use an audio file from an external host and still have it play as a thumbnail, etc as demonstrated here if you upload audio to the WP Media Library?

    Thanks

    #619393

    OK, I found it how to set the graphic. But how can I set that I want no thumbnail in the sidebar?

    #619384

    OK, I think I found it how to set the graphic. But how can I set that I want no thumbnail in the sidebar?

    • This reply was modified 10 years ago by merome2.
    #619383
    merome2
    Participant

    In the right sidebar on my site http://www.logosmed.at it seems as if there are thumbnail graphics missing. Why? Where can I handle this setting?

Viewing 30 results - 5,281 through 5,310 (of 10,101 total)