Viewing 30 results - 2,101 through 2,130 (of 10,095 total)
  • Author
    Search Results
  • #1139215
    danielmarsch
    Participant

    Hi,
    I have a site with a lot of galleries (Avia Layout Architect -> Gallery). I always used 3 columns and the no-scaling-option and although the pictures are not squared, I would get perfectly squared thumbs as in: https://blumen-hegemann.de/floristik/straeusse/
    Wordpress offered a 450×450.jpg, the gallery used this and everything was fine.

    Now after the last theme-update this doesn’t work anymore and I get what the option says: no-scaled-thumbs. So I look for alternatives, but none of them work. The only squared thumbs I can get are 180×180.jpg and these are too low in resolution. Everything else is rectangular (if the original picutre is).

    So what can I do? All I want is a gallery with square thumbnails in appr. 450px size and good resolution – no matter what the originals picture-size is.

    Thanks for your help,
    Daniel

    • This topic was modified 6 years, 6 months ago by danielmarsch.
    milano24ore
    Participant

    We created a site with over a hundred Portfolio items (our products) which are all assigned to categories and displayed in various pages using masonry with filters. Enfold masonry allows to select a white or black overlay which disappears with mouse over. Nice on PC, useless on mobile.
    Now we are looking for an angel that can give us a hint on how to make this overlay a custom image that depends on a portfolio category.
    Think about attributes like “limited”, “sold out”, “pre-sale”, “special“. We cook use an image or a symbol or text label. And we could define categories for these attributes as flags.
    No, we do not want to add woo commerce. Would be overkill.
    Wouldn’t that be a nice feature?
    http://www.m24o.net

    #1138772
    Jarmo
    Participant

    Hi,

    I am using this function but the output appears on top of the page right after #main is opened and not in the element I placed the shortcode.
    What is wrong with the code?

    function evenementen() {
    $today = current_time('Ymd');
    $args = array(
        'post_type' => 'evenementen',
        'posts_per_page' => '4',
        'meta_key'  => 'datum_evenement',
        'order' => 'DESC',
        'orderby' => 'meta_value',
        'meta_query' => array(
          array(
                'key'   => 'datum_evenement',
                'compare' => '>=',
                'value'   => $today,
            ),
        ),
    );
    
    $children = new WP_Query($args);
    ?>
    
    <?php if ($children->have_posts()) : ?>
      <?php while ($children->have_posts()) : $children->the_post(); $fields = (object) get_fields(); ?>
        <div class="event row">
          <div class="event-logo col-sm-4">
            <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail( 'large', array( 'class' => 'img-responsive' ) ); ?></a>
          </div>
          <div class="event-details col-sm-8">
            <h3 class="underline"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
            <h5><?php the_field('datum_evenement'); ?></h5>
            <p class="call-to-action"><a href="<?php the_permalink(); ?>">Read More</a></p>
          </div>
        </div>
      <?php endwhile; wp_reset_postdata(); ?>
    <?php endif; ?>
    <?php
    
    } add_shortcode('nm2d_evenementen', 'evenementen');
    #1138557
    Maskenzauber
    Participant

    Hi
    after i updated your theme the layout is completly crashed.
    Examples:
    – What has been a gallery with miniatures before is now one long row of big images below each other.
    -Lightboxes dont work anymore
    -The whole layout structure is foobar!
    If i look in the backend everything looks fine, the ALB shows everything as its supposed to be, but the output in the frontend is horrible.
    Please check at first if there is something in our childthemes functions.php which maybe doesnt work anymore and which could cause that conflict.
    The problem arises only on pages that uses a custom post type. The developer of the plugin says its a theme issue

    Here it is:

    <?php
    //$avia_config['imgSize']['square-custom'] = array('width'=>300, 'height'=>300); // small image for blogs
    //$avia_config['imgSize']['square2'] = array('width'=>400, 'height'=>400); // small image for blogs
    /*
    * Add your own functions here. You can also copy some of the theme functions into this file. 
    * WordPress will use those functions instead of the original functions then.
    */
    function enqueue_parent_theme_style() {
          wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
    }
    add_action( 'wp_enqueue_scripts', 'enqueue_parent_theme_style');
    
    /* Proper way to enqueue styles and scripts
     */
    function theme_name_scripts() {
    	wp_enqueue_style( 'style-name', get_stylesheet_uri() );
    }
    add_action( 'wp_enqueue_scripts', 'theme_name_scripts' );
    
    /* Activate Avia debug mode */
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    	return "debug";
    }
    add_filter('avf_builder_boxes', 'add_builder_to_posttype');
    
    function add_builder_to_posttype($metabox)
    {
    	foreach($metabox as &$meta)
    	{
    		if($meta['id'] == 'avia_builder' || $meta['id'] == 'layout')
    		{
    			$meta['page'][] = 'angebot'; /*instead add the name of the custom post type here*/
    			$meta['page'][] = 'bild-des-tages'; /*instead add the name of the custom post type here*/
    		}
    	}
    	
    
    	return $metabox;
    }
    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); 
    function avia_change_category_blog_layout($layout, $context){
    if($context == 'archive') $layout = 'blog-grid';
    return $layout;
    }
    add_filter('avf_blog_style','avia_change_tag_blog_layout', 10, 2); 
    function avia_change_tag_blog_layout($layout, $context){
    if($context == 'tag') $layout = 'blog-grid';
    return $layout;
    }
    /* Länge des Auszug auf Blogseite */
    add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1);
    function avia_change_postgrid_excerpt_length($length)
    {
       $length = 100;
       return $length;
    }
    /* Doppelten Breadcrumb entfernt */
    add_filter( 'avia_breadcrumbs_trail', 'mmx_remove_element_from_trail', 50, 2 );
    function mmx_remove_element_from_trail( $trail, $args ) {
    	if ( is_single() ) {
    		unset ($trail[2]);
    	}
    	return $trail;
    } 
    add_filter('avf_form_use_wpmail', 'avia_change_php_mail', 10, 3);
    function avia_change_php_mail($active, $new_post, $form_params){
    return true;
    }
    add_theme_support('avia_template_builder_custom_css');
    
    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub)
    {
    	$sub .= "<div id='headText'>
    					<a href='http://www.maskenzauber.com'><h1>Venezianische<span> Masken</span></h1></a>
    					<span id='subslogan'>und Headdresses</span>
    				</div>";
    	$sub .= "<div id='headClaim'>
    				<strong>Hier kommt</strong>
    					eine Unterzeile hin
    				</div>";
    	return $sub;
    }
    add_filter('avf_title_args','fotos_remove_bc');
    
    function fotos_remove_bc($args){
    
        if(is_single() && 'post' == get_post_type())
        {
            $args['breadcrumb'] = false;
        }
        return $args;
    }
    add_filter('avf_title_args','fotosangebot_remove_bc');
    
    function fotosangebot_remove_bc($args){
    
        if(is_single() && 'angebot' == get_post_type())
        {
            $args['breadcrumb'] = false;
        }
        return $args;
    }
    //entfernt den Kommentarblock und die Datumsangaben aus dem Combo Widget  // 
    
    class avia_combo_widget extends WP_Widget {
    
    		function avia_combo_widget() {
    			//Constructor
    			$widget_ops = array('classname' => 'avia_combo_widget', 'description' => 'A widget that displays your popular posts, recent posts, recent comments and a tagcloud' );
    			$this->WP_Widget( 'avia_combo_widget', THEMENAME.' Combo Widget', $widget_ops );
    		}
    
    		function widget($args, $instance)
    		{
    			// prints the widget
    
    			extract($args, EXTR_SKIP);
    			$posts = empty($instance['count']) ? 4 : $instance['count'];
    
    			echo $before_widget;
    			echo "<div class='tabcontainer border_tabs top_tab tab_initial_open tab_initial_open__1'>";
    
    			echo '<div class="tab first_tab active_tab widget_tab_popular"><span>'.__('Popular', 'avia_framework').'</span></div>';
    			echo "<div class='tab_content active_tab_content'>";
    			avia_get_post_list('cat=&orderby=comment_count&posts_per_page='.$posts);
    			echo "</div>";
    
    			echo '<div class="tab widget_tab_recent"><span>'.__('Recent', 'avia_framework').'</span></div>';
    			echo "<div class='tab_content'>";
    			avia_get_post_list('showposts='. $posts .'&orderby=post_date&order=desc');
    			echo "</div>";
    
    			echo '<div class="tab last_tab widget_tab_tags"><span>'.__('Tags', 'avia_framework').'</span></div>';
    			echo "<div class='tab_content tagcloud'>";
    			wp_tag_cloud('smallest=12&largest=12&unit=px');
    			echo "</div>";
    
    			echo "</div>";
    			echo $after_widget;
    		}
    
    		function update($new_instance, $old_instance)
    		{
    			$instance = $old_instance;
    			foreach($new_instance as $key=>$value)
    			{
    				$instance[$key]	= strip_tags($new_instance[$key]);
    			}
    
    			return $instance;
    		}
    
    		function form($instance) {
    			//widgetform in backend
    
    			$instance = wp_parse_args( (array) $instance, array('count' => 4) );
    			if(!is_numeric($instance['count'])) $instance['count'] = 4;
    
    	?>
    			<p>
    			<label for="<?php echo $this->get_field_id('count'); ?>">Number of posts you want to display:
    			<input class="widefat" id="<?php echo $this->get_field_id('count'); ?>" name="<?php echo $this->get_field_name('count'); ?>" type="text" value="<?php echo esc_attr($instance['count']); ?>" /></label></p>
    
    		<?php
    		}
    	}
    	
    	
    	function avia_get_post_list( $avia_new_query , $excerpt = false)
    	{
    		global $avia_config;
    		$image_size = isset($avia_config['widget_image_size']) ? $avia_config['widget_image_size'] : 'widget';
    		$additional_loop = new WP_Query($avia_new_query);
    
    		if($additional_loop->have_posts()) :
    		echo '<ul class="news-wrap">';
    		while ($additional_loop->have_posts()) : $additional_loop->the_post();
    
    		$format = "";
    		if(get_post_type() != 'post') 		$format = get_post_type();
    		if(empty($format)) 					$format = get_post_format();
         	if(empty($format)) 					$format = 'standard';
    
    		echo '<li class="news-content post-format-'.$format.'">';
    
    		//check for preview images:
    		$image = "";
    
    		if(!current_theme_supports('force-post-thumbnails-in-widget'))
    			{
    			$slides = avia_post_meta(get_the_ID(), 'slideshow');
    
    			if( $slides != "" && !empty( $slides[0]['slideshow_image'] ) )
    			{
    				$image = avia_image_by_id($slides[0]['slideshow_image'], 'widget', 'image');
    			}
    		}
    
    		if(!$image && current_theme_supports( 'post-thumbnails' ))
    		{
    			$image = get_the_post_thumbnail( get_the_ID(), $image_size );
    		}
    
    		$time_format = apply_filters( 'avia_widget_time', get_option('date_format')." - ".get_option('time_format'), 'avia_get_post_list' );
    
    		$nothumb = (!$image) ? 'no-news-thumb' : '';
    
    		echo "<a class='news-link' title='".get_the_title()."' href='".get_permalink()."'>";
    		echo "<span class='news-thumb $nothumb'>";
    		echo $image;
    		echo "</span>";
    		echo "<strong class='news-headline'>".avia_backend_truncate(get_the_title(), 55," ");
    		//echo "<span class='news-time'>".get_the_time($time_format)."</span>";
    		echo "</strong>";
    		echo "</a>";
    
    		if('display title and excerpt' == $excerpt)
    		{
    			echo "<div class='news-excerpt'>";
    			the_excerpt();
    			echo "</div>";
    		}
    
    		echo '</li>';
    
    		endwhile;
    		echo "</ul>";
    		wp_reset_postdata();
    		endif;
    	}
    //erzeugt Next / Preview Links in Blogposts auch bei Verwendung von Fullwidth-Slider //
    	if(!function_exists('avia_post_nav'))
    {
    	function avia_post_nav($same_category = false, $taxonomy = 'category')
    	{
    		global $wp_version;
    	        $settings = array();
    	        $settings['same_category'] = $same_category;
    	        $settings['excluded_terms'] = '';
    			$settings['wpversion'] = $wp_version;
    
    		$settings['type'] = get_post_type();
    		$settings['taxonomy'] = ($settings['type'] == 'portfolio') ? 'portfolio_entries' : $taxonomy;
    
    		if(!is_singular() || is_post_type_hierarchical($settings['type'])) $settings['is_hierarchical'] = true;
    		if($settings['type'] === 'topic' || $settings['type'] === 'reply') $settings['is_bbpress'] = true;
    
    	        $settings = apply_filters('avia_post_nav_settings', $settings);
    	        if(!empty($settings['is_bbpress']) || !empty($settings['is_hierarchical']) || !empty($settings['is_fullwidth'])) return;
    	
    	        if(version_compare($settings['wpversion'], '3.8', '>=' ))
    	        {
    	            $entries['prev'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	            $entries['next'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	        }
    	        else
    	        {
    	            $entries['prev'] = get_previous_post($settings['same_category']);
    	            $entries['next'] = get_next_post($settings['same_category']);
    	        }
    	        
    		$entries = apply_filters('avia_post_nav_entries', $entries, $settings);
            $output = "";
    
    		foreach ($entries as $key => $entry)
    		{
                if(empty($entry)) continue;
    			$the_title 	= isset($entry->av_custom_title) ? $entry->av_custom_title : avia_backend_truncate(get_the_title($entry->ID),75," ");
    			$link 		= isset($entry->av_custom_link)  ? $entry->av_custom_link  : get_permalink($entry->ID);
    			$image 		= isset($entry->av_custom_image) ? $entry->av_custom_image : get_the_post_thumbnail($entry->ID, 'thumbnail');
    			
                $tc1   = $tc2 = "";
                $class = $image ? "with-image" : "without-image";
    
                $output .= "<a class='avia-post-nav avia-post-{$key} {$class}' href='{$link}' >";
    		    $output .= "    <span class='label iconfont' ".av_icon_string($key)."></span>";
    		    $output .= "    <span class='entry-info-wrap'>";
    		    $output .= "        <span class='entry-info'>";
    		    $tc1     = "            <span class='entry-title'>{$the_title}</span>";
    if($image)  $tc2     = "            <span class='entry-image'>{$image}</span>";
                $output .= $key == 'prev' ?  $tc1.$tc2 : $tc2.$tc1;
                $output .= "        </span>";
                $output .= "    </span>";
    		    $output .= "</a>";
    		}
    		return $output;
    	}
    }
    	add_filter('avf_debugging_info', 'remove_debugging_info', $info);
    
    function remove_debugging_info($info) {
    $info = '';
    return $info;
    }
    
    remove_action( 'init', 'cptui_create_custom_post_types', 10 );
    add_action( 'init', 'cptui_create_custom_post_types', 11 );
    // Nach Dateinamen in der Mediathek suchen
    function posts_search_media_filenames($search, $a_wp_query) 
    {
        global $wpdb, $pagenow;
    
        // Only Admin side && Only Media Library page
        if ( !is_admin() && 'upload.php' != $pagenow ) return $search;
    
        // Original search string:
        // AND (((wp_posts.post_title LIKE '%search-string%') OR (wp_posts.post_content LIKE '%search-string%')))
        $search = str_replace(
            'AND ((', 
            'AND (((' . $wpdb->prefix . 'posts.guid LIKE \'%' . $a_wp_query->query_vars['s'] . '%\') OR ', 
            $search
        ); 
    
        return $search;
    }
    add_filter('posts_search', 'posts_search_media_filenames', 10, 2);
    // Sortiert alle Bilder in der masonry-Galerie nach Zufall
    add_filter('avia_masonry_entries_query', 'avia_random_image_query', 10, 2);
    function avia_random_image_query($query, $params)
    {
        if(!empty($query['post_mime_type']) && $query['post_mime_type'] == 'image')
        {
            $query['orderby'] = "rand";
        }
    
        return $query;
    }
    function remove_avia_search(){
        remove_filter( 'wp_nav_menu_items', 'avia_append_search_nav', 10, 2 );
    }
    add_action( 'init' , 'remove_avia_search' );
    add_filter( 'avf_main_menu_nav' , 'um_enfold_menu' , 100 , 1 );
    function um_enfold_menu( $menu ){
      $menu = ubermenu( 'main' , array( 'theme_location' => 'avia' , 'echo' => false ) );
      return $menu;
    }
    add_image_size( 'my-ubermenu-image-size', 100, 100, true );

    Hi Ismael, Thank you very much for answering.

    Yes, the image usually looks good, the problem is with the thumbnails, and in the categories. Links below.

    Thank you. Have a nice day.

    #1138242

    I am not sure if I am clear.
    It was not like this a couple of weeks ago. When adding a featuered image to a post, it came out as a circle or square, either on the blog page or in a post widget. I did not alter any css, and also in your own documantation it says the post thumbnail is circle by default. And on my site it is not anymore.

    Regards Nina

    #1137804

    Topic: cropping thumbnails?

    in forum Enfold
    yampieters
    Participant

    hello
    on this page, in the galery, i want all the thumbs to be square.
    why are the last 3 thumbnails of the galery recalcitrant/not obeying?
    i choose in settings: Shop Catelog 450×450 , that should be square, shouldnt it? but they are not cropping.
    best regards, jelle vanhijfte

    #1137741

    Hi,

    Thank you for the inquiry.

    It is possible to adjust the default size of the “entry_without_sidebar” thumbnail. That is the thumbnail used in the single post page. Install the Simple Image Sizes plugin, go to the Settings > Media panel, look for the said thumbnail, then adjust the width and height. Update the new options and then regenerate the thumbnails.

    Best regards,
    Ismael

    #1137608

    Hi Konstantin,

    There are 2 ways, first one using a plugin and the other one is using a wordpress filter.

    1. Install and Activate Simple Image Sizes, then go to Settings > Media.
    Then change portfolio size’s cropping from Yes to No, save, then regenerate the images (click on Regenerate Thumbnails button at the bottom).

    2. Add this code in functions.php:

    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
    function enfold_customization_modify_thumb_size( $size ) {
      $size['portfolio'] = array('width'=>495, 'height'=>400, 'crop'=>false);
      return $size;
    }

    then you’ll need to re-upload the image.

    Best regards,
    Nikko

    #1137331

    Topic: Outline css over image

    in forum Enfold
    bobfurgo
    Participant

    hi guys,

    I’m wondering if you might be able to help me figure out why my outline css is going underneath the image and not above it. I have the following css entered:

    .attorney-thumbnail.active {
    	outline-style: solid !important;
      	outline-color: white !important;
    	outline-width: 2px !important;
    	outline-offset: -10px !important;
    }

    It looks like the outline is having z-index issues or something because it’s not showing on the image. Would someone be able to lend a hand with this? Thanks :)

    #1137158
    Advantage09
    Participant

    Suddenly the thumbnails in the events calendar and the catalogue widget in Enfold is not showing up as round anymore. They are oval, either vertical or horizontal. Any idea why this is happening and how can I get it back to being round.

    The old ones stay round, it is new events and new catalogue items that is showing oval thumbnails.

    As you can see on this page, the top one is circle, the second one is oval. I need them all to be a circle.

    Also, featured images set in a post and showing up in a blog-post widget on the front page does no longer conform to equal height and width as it did before. https://www.spatind1414.no

    Regards
    Nina

    • This topic was modified 6 years, 6 months ago by Advantage09.
    #1137064

    Hi,

    Should I worry about those images taking space on my server? do they slow down my site?

    They will not slow down the site but they will take space in your disk. If you have a hosting plan with unlimited disk space like most shared hosting have, then you shouldn’t be worrying about those thumbnails. Are you on a shared hosting?

    Best regards,
    Ismael

    #1136990

    Topic: Edit category pages

    in forum Enfold
    ceiton
    Participant

    Hello Kriesi-Forum,
    I would like to edit the category pages of the blog.
    – The blog thumbnail is not displayed in the category subpages.
    – I would like to have the menus “Last entries” and “All categories” on the left side in the free area. Like in the blog page.

    Thanks a lot!
    Sarah

    #1136941
    Konstantin
    Participant

    Grid layout.
    How to resize thumbnails of grid layout? Need to make sure that the images are not cropped?

    I will try to more clearly display the screenshot…

    URL: https://www.ulovanet.ru/category/rybalka-video/
    https://www.ulovanet.ru/tag/video/

    • This topic was modified 6 years, 6 months ago by Konstantin.
    #1136237

    you can insert this to your child-theme functions.php:

    function avia_change_masonry_thumbnail_link($size){
      return "full";
    }
    add_filter('avf_avia_builder_masonry_lightbox_img_size', 'avia_change_masonry_thumbnail_link', 10, 1);
    #1136037

    Thank you for the articles. this is excatly what I have done long time ago:
    Login To Your WP Dashboard.
    Go to Settings and then, Media.
    Here you will find 3 various image sizes: thumbnail, medium, large. Decide which image sizes you won’t be using and then set those sizes to 0.
    Update and save your new settings.

    And this is what I was talking about in my question. even having set those sizes to 0 wordpress (or I guess it is the theme) generates many images.
    Should I worry about those images taking space on my server? do they slow down my site?

    #1135682

    Thank you very much for your time, Mike.
    But I don’t get it to work.

    I added your suggested CSS, then I cleared my browser’s cache, started my Firefox browser anew, looked at it in another browser (Chrome), the first image in the first row and the last image in the second row is still empty. I checked the CSS, and I really have added this new part, but I don’t get it to work like on your new thumbnail.

    #1135665

    Hi,
    Thanks for the access to your css, Bingo:
    2019-09-08-105148

    .fotogalerie .av-masonry-entry {
        height: 175px;
        width: 175px; 
    }

    I would have not expected that to be the issue, but the first av-masonry-entry in the container has the av-masonry-item-no-image which is the empty one :)
    Please try replacing it with this:

    .fotogalerie .av-masonry-entry:not(.av-masonry-item-no-image) {
        height: 175px;
        width: 175px; 
    }

    Then clear your browser cache and check.

    Best regards,
    Mike

    Thanks for letting me know about the thumbnails, I’ll look for a new solution.

    #1135595

    Hi @mike

    I have just made some custom CSS (at custum.css) to make the images square and with the double border.
    I have now enabled the theme editor in backend.
    I also have uploaded new the theme from Themeforest (v4.6.1), but it is the same.

    All theme files in this test installation are absolutely original from Themeforest and I have made here not a single change of any theme file.
    The only thing I have made is adding my styles to the custom.css

    But it’s not just the no-image thing at the beginning of the gallery, but the images also end up a position too soon:
    in line 2 there’s a missing image at the end, which goes on on page 2.

    Thank you for your help in advance, Mike.

    —————————————————————————-
    By the way: I tried to open your thumbnail above, but the lightbox seems not to work here in the forum: “image could not be loaded”, when I tried to enlarge your thumbnail above (Firefox 59, Wiindows 10 prof.): https://imgur.com/tw4ccUX

    #1134996

    Hi,

    The alt and title attribute is already added in the Image element. This is an example of the image element markup.

    
    <div class="avia-image-container  av-styling-    avia-builder-el-0  el_before_av_fullscreen  avia-builder-el-no-sibling  avia-align-center " itemtype="https://schema.org/ImageObject" itemscope="itemscope" itemprop="image">
    <div class="avia-image-container-inner">
    <div class="avia-image-overlay-wrap"><img width="300" height="188" title="Image Title" class="avia_image" alt="An alternate text" src="http://site.com/image.jpg" itemprop="thumbnailUrl"></div>
    </div>
    </div>
    

    Best regards,
    Ismael

    Hey pepin,

    Thank you for using Enfold.

    You have to set the “preview_mode” parameter or attributes of the “avia_post_slider” from “auto” to “custom”, then define the “image_size” value or thumbnail.

    'preview_mode'		=> custom,
    'image_size'		=> 'large',
    

    Default image_size value is portfolio.

    Best regards,
    Ismael

    Astrobiologic
    Participant

    Hello,

    I just started optimizing the images in webp format with the Google squoosh application to make things easier. The main image shows well in all browsers, I have tested it in Firefox, Opera, Explorer, Yandex, brave and Chrome. But the thumbnails of the image are not displayed.

    The image has the right format so the problem must be another, what can I do? Thanks!

    • This topic was modified 6 years, 6 months ago by Astrobiologic.
    #1134463

    Regenerating the thumbnails with that plugin worked.

    FeedXL2019
    Participant

    Hello. On my page I have added a color element. At desktop screen widths, there is some space between the thumbnail image and the previous element (screenshot). But at mobile screen widths (>768 px), there is no space between the thumbnail image and the previous element (screenshot). Is there a way within the theme/page builder to add some top padding to the element at these screen widths? Or would I have to simply add my own custom CSS?

    Thanks.

    #1134142

    Rats. I could have sworn I included everything you needed! I will try the regenerate thumbnails thing first. If that doesn’t work I’ll return and give you those last settings.

    #1133959

    Even a preview image ( youtube thumbnail ) is against GDPR (DSGVO) – only if you are willing to download those images and present self-hosted is a safe way.
    By the way – Borlabs Cookie (vers.2) has that option to show thumbnail by downloading the files to host it yourself.

    Hey Jochen,

    Thank you for using Enfold.

    We can’t reproduce the issue on our installation. The thumbnails in the uploads folder are immediately deleted when we remove the image in the Media > Library panel. Please try to deactivate the plugins, then test it again.

    Best regards,
    Ismael

    #1132964

    Hi,

    Sorry for the late response.

    We can’t access the sites because they are asking for the “flywheel” credentials. Please include it in the private field. For the meantime, try to regenerate the thumbnails using the following plugin.

    // https://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Ismael

    #1132766

    Hi,

    Thank you for the update.

    Set the Preview Image Size to the second option. You’ll be able to select a thumbnail size then. Make sure that you have a larger version of the image.

    Best regards,
    Ismael

    #1132649
    engerlieoutdoor
    Participant

    I have category images for each product category. This is very nice in the product page, but there is no way to hide this inside the category. Seems like must have this visible, either as a big thumbnail or as a fullsize wide header image inside the category.
    I would like to hide it and just show the products.

    Any help would be delightful :)

    Roger Enger Lie
    Norway

Viewing 30 results - 2,101 through 2,130 (of 10,095 total)