Viewing 30 results - 2,461 through 2,490 (of 10,096 total)
  • Author
    Search Results
  • susizimm
    Participant

    Hi there, my web host installed an ssl certificate for me and I’m getting the following Mixed Content error below on “Why No Padlock” for images. I tried deleting the logo image and reloaded it (now called … logo-original-345×82 2019) via Media Library and it also shows as http and gives an error on Why No Padlock. It seems like all of the images in my Media Library have the http? I’ve read through the forum topics and there seem to be various fixes suggested but nothing ‘this works’ so thought I would contact you. I’ve tried to keep plugins to a minimum in genera and am not sure if thats the best way to go? What do you suggest. Pls help. I also have a second website with Enfold theme that came up with the same problem.

    An image with an insecure url of “http://aclassicyacht.com/wp-content/uploads/2019/02/logo-original-345×82-2019.png” was loaded on line: 198 of https://aclassicyacht.com/.
    This URL will need to be updated to use a secure URL for your padlock to return.

    An image with an insecure url of “http://aclassicyacht.com/wp-content/uploads/2015/11/Alaska-Whale-watching-thumbnail.jpg” was loaded on line: 363 of https://aclassicyacht.com/.
    This URL will need to be updated to use a secure URL for your padlock to return.

    • This topic was modified 7 years, 1 month ago by susizimm.
    #1066548

    In reply to: picture problem

    Hi,

    Thanks for the update.

    The recommended size is 845x321px, which is the specified dimension of the “entry_with_sidebar” thumbnail.

    Best regards,
    Ismael

    #1066346

    Topic: Portfolio grid problem

    in forum Enfold
    strikerdesign
    Participant

    Good morning,

    I used a portoflio grid on ‘http://2019.strikerdesign.nl/#werk’ and set that 8 can be previewed before you click on ‘load more’. I have chosen to show only the title. This goes well with the first 8, after this it seems as if a textual preview can be seen on the thumbnail. This is not the intention. How can this be solved? I would also like to see on the portfolio of items in this grid after the first 8 only the title in the middle of the thumb.

    I would like to hear from you again.
    With kind regards, Martijn

    #1066233

    Hi,

    Thanks for the update.

    That is a valid solution and is actually the same as manually editing the thumbnail in the functions.php file or using the Simple Image Size plugin. The default set width of the “entry_with_sidebar” thumbnail is 845px, and the crop parameter is actually disabled by default, so I’m not sure why that code works and not the default configuration. Anyway, I’m glad that you found a working solution.

    Thank you for your patience. Have a nice day.

    Best regards,
    Ismael

    #1066144
    galpinr
    Participant

    How can I get the image that has a tall aspect ratio to display in a Gallery Image content block to vertically align to display the the top of the image – not the center.

    See the second thumbnail at https://affiliations.si.edu/about-us/affiliate-directory/

    Thanks!

    #1065950

    Hi Ismael,

    I have tried different things in functions.php of child theme and came up with this code which solves the issue:

    function set_calender_thumbnail_size() {
        add_image_size('entry_with_sidebar', 800);
    }
    add_action('after_setup_theme', 'set_calender_thumbnail_size');

    It just specifies the max width of the the image with unlimited height. The image doesn´t get hard cropped because the function does not have ,true behind the 800.

    So, I don´t know. Enfold might have the add_image_size or something related set with true so hard crop mode is on and that´s causing the problem. Maybe you can investigate that.

    Please check my proposed code above and tell if it won´t cause any problems somewhere else and if the hook is fine.

    But I am glad that we could solve the issue.

    #1065034

    In reply to: LazyLoad a div?

    Hi,
    Sorry for the late reply, I searched for the script that delayed the css animation in Enfold, and found it in:
    enfold\js\shortcodes.js
    starting on line 390:

    $.fn.avia_sc_animation_delayed = function(options)
    {
    	var global_timer = 0,
    		delay = options.delay || 50,
    		max_timer = 10,
    		new_max = setTimeout(function(){ max_timer = 20; }, 500);
    	
    	return this.each(function()
    	{
    		var elements = $(this);
    
    		//trigger displaying of thumbnails
    		elements.on('avia_start_animation', function()
    		{
    			var element = $(this);
    			 
    			if(global_timer < max_timer) global_timer ++;
    			
    			setTimeout(function()
    			{ 
    				element.addClass('avia_start_delayed_animation'); 
    				if(global_timer > 0) global_timer --; 
    			
    			}, (global_timer * delay));
    			
    		});
    	});
    }

    so reading this it looks like the elements with the class “avia_start_animation” get the class “avia_start_delayed_animation” added to them. I’m not sure if this will help you, but this is where the lazy load is starting in Enfold.

    Best regards,
    Mike

    #1065013

    Hey OKEIwebbureau,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    .entry-summary .woocommerce-product-rating .woocommerce-review-link {
        top: -12px;
    }
    .entry-summary .woocommerce-product-rating {
        top: -8px;
    }
    .thumbnail_container .rating_container {
        opacity: 1;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1064671
    condonpb
    Participant

    Guys,

    I saw this suuport query https://kriesi.at/support/topic/portfolio-page-adding-a-line-of-text-under-the-page-title/. I went to the single.php page but could not see where to add the following code
    $punchline = get_post_meta($post->ID, “punchline”, true);
    if($punchline != “”) { echo “<h3>”.$punchline.”</h3>”; }

    Can you please help

    Pete

    #1064403

    Hi,

    Have you tried adjusting the default size of the “entry_with_sidebar” thumbnail, so it fits your requirement? That is the actual name of the thumbnail and you can adjust its size manually in the functions.php file or install the Simple Image Sizes plugin. Unfortunately, I’m not really sure why those images resize differently but I know adjusting the default thumbnail size will certainly help.

    Best regards,
    Ismael

    #1064062
    milano24ore
    Participant

    The media library list shows the thumbnail of the image, file name and title and a column for “uploaded to”. Images used in Portfolio pages ate not marked as used in these. Only when used in pages the media library shows the “uploaded to” info correctly. Can this be fixed?
    It would also be nice to enhance this list with additional info about the image like dimensions, aspect ratio, file size, file type. Are we asking for too much convenience?
    But maybe its just a matter of settings.

    • This topic was modified 7 years, 1 month ago by milano24ore.
    #1063783

    Topic: PDF Not Showing

    in forum Enfold
    intrustfunding
    Participant

    Hello Enfold Team,

    I have uploaded a fillable PDF form to my website but when I click the link to view the PDF, nothing shows up. I have updated to the latest version, cleared cache, and disabled plugins. I’m not sure why it’s not working.

    I’ve attached the direct URL to the PDF, and have disabled the redirect so you can see the clickable thumbnail image for the document. It looks like Enfold can read it, and I can edit it from the website, but I can’t get it to display.

    Thanks,

    #1063613
    tebitrongmbh
    Participant

    Hi,

    is there a way to place a image + lightbox into the cell of a table? I’ve managed to place the image with a simple tag. How do I get to place an lightbox in there? I tried something like this – which doesn’t give me the functionality of the lightbox though.

    <a href="IMAGE HERE" class="avia_image lightbox-added">
    <img class="avia_image " src="THUMBNAIL HERE" alt="" title="" itemprop="thumbnailUrl">
    </a>

    I’d appreciate your assistance.

    Hi Mike,
    thanks – yes, you’re right – that should fix it… and does, if I dump the changes I made to display the size info on the shop page (which is a request from the client).
    To be able to show size info (=variations) of the product on the shop & category page as well as the product page I have set up content-product.php in a child them folder with the following code (which works great for displaying the variations on all pages, but is obviously responsible for my inability to hide the “add to cart” button on the achive / category pages mentioned before):

    <?php
    /**
     * The template for displaying product content within loops
     *
     * This template can be overridden by copying it to yourtheme/woocommerce/content-product.php.
     *
     * HOWEVER, on occasion WooCommerce will need to update template files and you
     * (the theme developer) will need to copy the new files to your theme to
     * maintain compatibility. We try to do this as little as possible, but it does
     * happen. When this occurs the version of the template file will be bumped and
     * the readme will list any important changes.
     *
     * @see     https://docs.woocommerce.com/document/template-structure/
     * @package WooCommerce/Templates
     * @version 3.4.0
     */
    
    defined( 'ABSPATH' ) || exit;
    
    global $product;
    
    // Ensure visibility.
    if ( empty( $product ) || ! $product->is_visible() ) {
    	return;
    }
    ?>
    <li <?php wc_product_class(); ?>>
    	<?php
    	/**
    	 * Hook: woocommerce_before_shop_loop_item.
    	 *
    	 * @hooked woocommerce_template_loop_product_link_open - 10
    	 */
    	do_action( 'woocommerce_before_shop_loop_item' );
    
    	/**
    	 * Hook: woocommerce_before_shop_loop_item_title.
    	 *
    	 * @hooked woocommerce_show_product_loop_sale_flash - 10
    	 * @hooked woocommerce_template_loop_product_thumbnail - 10
    	 */
    	do_action( 'woocommerce_before_shop_loop_item_title' );
    
    	/**
    	 * Hook: woocommerce_shop_loop_item_title.
    	 *
    	 * @hooked woocommerce_template_loop_product_title - 10
    	 */
    	do_action( 'woocommerce_shop_loop_item_title' );
    
    	/**
    	 * Hook: woocommerce_after_shop_loop_item_title.
    	 *
    	 * @hooked woocommerce_template_loop_rating - 5
    	 * @hooked woocommerce_template_loop_price - 10
    	 */
    	do_action( 'woocommerce_after_shop_loop_item_title' ); 
    
    	/**
    	 * Hook: woocommerce_after_shop_loop_item.
    	 *
    	 * @hooked woocommerce_template_loop_product_link_close - 5
    	 * @hooked woocommerce_template_loop_add_to_cart - 10
    	 */
    	remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title', 5 );
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
    do_action( 'woocommerce_single_product_summary' );
    	?>
    </li>
    

    Questions: Would there be a better way to do this?
    Or: Can I keep on using this tweak, but get rid of a part of the code?

    #1063539

    Hi,

    What do you mean it looks weird in the overview page? The images in “event-overview” screenshot looks fine. The actual size of the registered thumbnail for the single events page is 845x321px, so resizing the images to that dimension prior to uploading will ensure that it’s not cropped or resized unexpectedly.

    Best regards,
    Ismael

    #1062922
    mlangereis
    Participant

    Hello,

    I noticed that the thumbnails for my Enfold blog are all different sizes. I couldn’t find an option in the theme settings to change this. Could someone help me resolve this issue so they look uniform? I have attached the page in question below.

    Thanks!

    #1062693

    Here is another test case where 4 thumbnails sizes are bigger then the original image.

    Original Image 1100×619

    Resized Thumbnails
    Resized Thumbnails

    #1062688
    Jay
    Participant

    It would appear that the some or all of image thumbnails generated by Enfold theme are sometime larger then original image file. Here are all the resized thumbnails. Here is a test case for which 1200×630 thumbnail is almost 200Kb larger then original.

    Original Image: 1200×800 pixel

    Resized Thumbnails
    Resized Thumbnails

    Feel free to use the original image above as a test image. I have other images where several thumbnails generated by enfold are larger then original.

    I am using Smush-It plugin, but this has NO Impact on the image sizes. Even regenerating thumbnails has no impact. This does not happen with all the image, but there is a large percentage of image where this is a problem.

    This is a major hit on the performance of the Enfold Theme.
    Please provide a fix for this. I am capable of modifying a function.php file.

    • This topic was modified 7 years, 1 month ago by Jay.
    #1062607

    Hi,

    Thanks for the update.

    Can you give us links to the test events? Try to resize the images to 845x321px. It seems to be the actual dimension of the thumbnails used in the events.

    Best regards,
    Ismael

    #1062040
    flylanddesigns
    Participant

    Hi, I need to remove the border on Gallery thumbnails
    This SHOULD work, based on other feedback in the forum, and messing around with Chrome Developer tools. But it DOESN’T:

    /* no border around gallery thumbnails */
    #top div .avia-gallery img {
    border-style: none !important;
    }

    Can you please help?

    #1061058

    Hey keeslamper,

    Thank you for using Enfold.

    There is a filter for the logo:

    enfold\framework\php\function-set-avia-frontend.php line 546:

    
    $logo = apply_filters('avf_logo_final_output', $logo, $use_image, $headline_type, $sub, $alt, $link);
    

    For the blog:

    enfold\includes\loop-index.php line 69:

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

    replace with:

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

    Hope this will help you.

    I added this filter to our repo – so it should become part of the core in one of the next updates.

    Best regards,
    Günter

    #1060964

    In reply to: picture problem

    Hi,

    Thank you for the info and I would like to apologize for the misunderstanding. The theme is actually using a predefined thumbnail for the grid layout because it has to make sure that every thumbnails are square. The maximum size is 450x450px and the thumbnail is called “portfolio”. If you want to change that, you have to modify the index.php file. Look for this code around line 44:

     $atts 	= array('type' => 'grid', 'items' => get_option('posts_per_page'), 'columns'=> 3, 'class'=>'avia-builder-el-no-sibling', 'paginate'=>'yes');
    

    .. and add the “image_size” parameter:

     $atts 	= array('type' => 'grid', 'items' => get_option('posts_per_page'), 'columns'=> 3, 'class'=>'avia-builder-el-no-sibling', 'paginate'=>'yes', 'preview_mode' => 'custom', 'image_size' => 'entry_without_sidebar');
    

    The changes above sets the thumbnail from the default value “portfolio” to “entry_without_sidebar”.

    Best regards,
    Ismael

    #1060855

    PS: ich sehe Ihr habt wohl eine Layerslider Standalone Lizenz. Denn dieser Origami Effekt ist glaube ich nur so verfügbar.
    Da müsst Ihr aber glaube ich mehr Höhe für den home slider nehmen – da sind sonst die Schriften bei breiten Screens angeschnitten.

    habt ihr an den Grundeinstellungen dort was verändert?
    Oder bei den Slides selber gibt es auch neben dem Hintergrund thumbnail die Position ( center bottom zB)

    #1060655
    Munford
    Participant

    HI Kriesi gurus

    a few questions:

    1. my client wants a masonry gallery like the one on this page https://www.visuello.no/, where there is a mix of image and video thumbnails (featured images) with the videos playing automatically. I looked at https://wordpress.org/plugins/featured-video-plus/ plugin which looks like what I need, but it hasn’t been updated in awhile and my test with it was not good. Is there a way to do this in enfold? Or have a video gallery where the thumbnails autoplay?

    2. an you tell me how to disable the loading animation on the masonry and have the it look more like it does on that page? I’d the caption to be white text on black background on hover, but with a fade in, instead of the default pop up caption tab. Can you help with that css?

    3. is there any way to get rid of the loading symbol on the background video on the page below. It’s being linked from vimeo. Is there a better way to load it?

    thanks very much
    Nancy

    • This topic was modified 7 years, 2 months ago by Munford.
    #1060405

    Hey Deanna,

    Thank you for using Enfold.

    Looks like you’re using another post plugin now. Do you still require help with this?
    If you want to change the width of the image, try this:

    .bdp_blog_template.news .post-thumbnail-div {
        width: 30%;
    }
    
    .news .post-content-div {
        width: 70%;
    }
    

    Best regards,
    Ismael

    #1060152
    18frames
    Participant

    Hey,
    I try to adjust the cart’s product table.
    I have modified the table and deleted some cells which I don’t need, so there are only 4 remaining cells: Remove, Thumbnail, Name and Quantity.
    On mobile, the thumbnail and quantity disappear but i want to keep quantity, even on mobile devices.
    Is there any easy way to solve this?

    #1059866
    robnelson4
    Participant

    I’m trying to use the full screen video option in the color section but it only shows a tiny thumbnail video and doesn’t autoplay… What’s the deal?

    #1059528

    In reply to: Moving elements

    Hi,

    I added the image directly in the slider’s caption field.

    
    <img class="snap-pronosgame avia_image lazyloaded" src="https://pronosgame.fr/wp-content/uploads/2018/06/snap-pronosgame-180x180.jpg" data-lazy-src="https://pronosgame.fr/wp-content/uploads/2018/06/snap-pronosgame-180x180.jpg" alt="snap Pronosgame" title="snap-pronosgame" itemprop="thumbnailUrl" data-was-processed="true">
    

    You can remove that code.

    Best regards,
    Ismael

    #1059377
    danmorganvideo
    Participant

    When I open up a self hosted video in an iframe on a mobile device it gives me an autogenerated thumbnail, and requires the user to click ‘play’ again.

    I understand autoplay isn’t possible(?) but how can I make this stretch the full width of the iframe? At the moment it looks very poor.

    > Please see example in the private content.

    Thanks for the theme, it really is the best on the market.

    #1059263

    Hello, I have solved it in a different way from the ones proposed by the forum since they did not work for me

    In functions.php (Child Theme) i add this

    /* add new image size*/
    function ava_image_sizes() { 
    add_image_size('entry_with_sidebar', 809, 403, array('center', 'center'));
    }
    add_action( 'after_setup_theme', 'ava_image_sizes', 11 );

    and then i Regenerate Thumbnails with the Alex Mills plugin. Regenerate everything and do not skip the regeneration if the correct miniature size exists. Regenerate everything

    And work for me,

    Thanks to me! o you are wellcome :)

Viewing 30 results - 2,461 through 2,490 (of 10,096 total)