Viewing 30 results - 7,021 through 7,050 (of 10,097 total)
  • Author
    Search Results
  • #402035

    Topic: Simple Blog Post

    in forum Enfold
    eyammine
    Participant

    Dear Support,
    Can we make a simple blog post list without thumbnail images

    #402032

    Is it because I had crop thumbnail to exact dimensions. I downloaded simple image size and regnerated. or was there something else going on.

    Mike

    #401913
    Hatchman33
    Participant

    Hello there, I am regenerating my thumbnails for my ecommerce site. I have changed 3 thumbnail dimensions in woocommerce. However when regenerating my thumbnails I am regenerating all of these dimensions.

    Regenerate: 1000×1000, 1000×423, 1000×430, 1000×630, 100×100, 180×180, 194×194, 260×185, 300×300, 36×36, 495×400, 705×705, 710×375, 80×80, 845×321, 845×684

    Is there a file in enfold that has these defined? I have checked functions.php ect. I am also using child theme. I would like to redefine these.

    Also, are these set by default in enfold theme? I understand it is responsive. Is this why there are so many dimensions set? thanks

    #401836
    This reply has been marked as private.
    #401744

    Hi!

    Thanks for your answer @joeathomas, I appreciate it.
    I don’t really have a lot to ad. As was said before, the theme generates that amount of thumbnails to make sure that your end user does not need to load an image that is much bigger than necessary. Webspace is so cheap nowadays that only a someone with 1000s of images uploaded might run into trouble. For everyone else our solution is superior because it makes sure that page loading speed is kept to a minimum.

    Thomas answer is also true for the layout builder. I know this is a thing of preference and I am sorry that Enfold does not operate the way you like it but at the same time there are quite a few people who prefer the way we do things :)

    Your feedback is appreciated nevertheless.

    Regards,
    Kriesi

    #401240

    Hi Elliott

    Thanks for your reply. Here’s a screenshot, IE8. Starts slightly scrolled down and with squished thumbnail.

    screenshot

    • This reply was modified 11 years, 1 month ago by sepruda.
    uychkinnear
    Participant

    Hi, I am trying to set up a blog which seems to be working however there are 2 issues that I can’t resolved.

    1. I can’t seem to get the thumbnail to appear on the post (http://www.uych.vic.edu.au/?p=7629) and also the image to appear on the blog page (http://www.uych.vic.edu.au/?page_id=7627)

    2. The post has HTML code at the bottom and I can’t locate where that is coming from

    Hope you can assist me as I have exhausted all my options and I couldn’t find a blog setup that included comment setup and thumbnails (may have been searching incorrectly however I gave it a good go)

    Hope you can help or point me in the right direction

    #400646
    findar
    Participant

    Hi,
    How do I edit the Portfolio Grid Image width on Mobile Portrait to display 2 cols of 50% (similar to Mobile landscape) as opposed to one long column of 100% width?

    Thanks, Fiona

    #400503

    Hey xfacta!

    Thank you for using Enfold.

    Install the Simple Image Sizes plugin then go to Settings > Media panel. Adjust the width and height of the entry_with_sidebar thumbnail. Set the crop parameter to false. Update then save changes. You need to upload the images again or regenerate the thumbnails.

    Regards,
    Ismael

    #400351
    cworkman1
    Participant

    hi.

    I am just starting out using both WordPress and your theme and I’m a bit confused regarding uploading images to the media library.

    I know that there are media import settings located in settings > media and i believe i understand the various uses for the 3 formats: thumbnail, medium size and large size – at least as they apply to blog entries.

    but i’m a bit confused by what is happening on my server after i upload an image. besides my original image (which retains it’s true size), wordpress has created 17 additional images – in a vast assortment of sizes. 3 of the 17 match the parameters set out in the media settings but what are the other 14? why are they being created and what are they potentially being used for (in the enfold theme)?

    additionally, these 14 others are oddly cropped – none have been resized proportionally?

    and, not being familiar with the way wordpress works, does WP only load the image size i specified on my page at the time of the page load? or does it – by default – load all these 17 images before delivering the page content to the viewer?

    in the end, i’m creating a one page website – no blog – so i want to make sure my page loads fast and is not burdened by having to load/reference all these additional images.

    looking forward to some clarification and thanks in advance.

    cheers-

    cindy

    #400187
    freeethinka
    Participant

    Hi again!

    I am building a page of thumbnail images/artist’s name below each using the 1/5 Layout Element to make 20 rows down x 5 thumbnails/artist name across. The names must remain in alphabetical order and it must be easy to add additional names and thumbnails over time. This is the ony way that I have figured out how to do this but the margins between the columns and rows is excessive and I would like to reduce them. I tried the Masonry Portfolio but I wasn’t crazy about the panel and its v-cut that appeared along the bottom edge and partly covering the bottom part of each image, plus I was not able to put the artist’s name below (and outside of) each image. So I decided against the Masonry Portfolio for this particular site. I would appreciate any suggestions and/or some Quick CSS to achieve this.
    You guys and gals—I know there’s got to be at least one, or two or three, or more there—ROCK! Thank you again for your terrific support.

    • This topic was modified 11 years, 1 month ago by freeethinka.
    #399500
    This reply has been marked as private.

    Hi!

    Add the whole avia_post_nav function on the child theme’s functions.php:

    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;
            
    		//dont display if a fullscreen slider is available since they overlap 
    		if((class_exists('avia_sc_layerslider') && !empty(avia_sc_layerslider::$slide_count)) || 
    			class_exists('avia_sc_slider_full') && !empty(avia_sc_slider_full::$slide_count) ) $settings['is_fullwidth'] = false;
    
    		$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;
    	}

    Regards,
    Ismael

    #399460

    Hey!

    The option will not work archive pages. Please give us a link to the current archive or category page. Maybe if we can see it, we’ll understand the problem better. Try to add this to the functions.php:

    function avia_image_slideshow_filter($current_post)
    	{
    
    		$prepend_image = get_the_post_thumbnail(get_the_ID(), 'square');
    		$image = "";
    
    		if(!$prepend_image)
    		{
    			$image		= avia_regex($current_post['content'],'image');
    			if(is_array($image))
    			{
    				$image = $image[0];
    				$prepend_image = '<div class="avia-post-format-image"><img src="'.$image.'" alt="" title ="" /></div>';
    			}
    			else
    			{
    				$image		= avia_regex($current_post['content'],'<img />',"");
    				if(is_array($image))
    				{
    					$prepend_image = '<div class="avia-post-format-image">'.$image[0]."</div>";
    				}
    			}
    		}
    		else
    		{
    			
    			$large_image = wp_get_attachment_image_src( get_post_thumbnail_id(get_the_ID()), 'square' );
    			$prepend_image = '<div class="avia-post-format-image"><a href="'.$large_image[0].'">'.$prepend_image."</a></div>";
    		}
    
    			if(!empty($prepend_image) && is_string($prepend_image))
    			{
    				if($image) $current_post['content'] = str_replace($image, "", $current_post['content']);
    				$current_post['before_content'] = $prepend_image;
    				$current_post['slider']  = "";
    			}
    
    		
    		if(is_single(get_the_ID()) && get_post_meta( $current_post['the_id'], '_avia_hide_featured_image', true ) ) $current_post['before_content'] = "";
    		
    		return avia_default_title_filter($current_post);
    	}
    

    Edit loop-index.php, look for this code:

    $size = strpos($blog_style, 'big') ? (strpos($current_post['post_layout'], 'sidebar') !== false) ? 'entry_with_sidebar' : 'entry_without_sidebar' : 'square';
    

    Replace it with:

    $size = strpos($blog_style, 'square') ? (strpos($current_post['post_layout'], 'sidebar') !== false) ? 'entry_with_sidebar' : 'entry_without_sidebar' : 'square';
    

    Cheers!
    Ismael

    #399224

    The excerpt code worked perfectly. Thank you!

    For the thumbnails, that still didn’t work as intended. I may not have explained myself properly. Let me try again.

    If I was to create a blog page with only certain categories on it and I use the ‘Blog Posts’ content element, there is an option in there that says:
    Preview Image Size
    Set the image size of the preview images

    What I want to do on archive posts, without having to create a page for each category, is to have the Preview Image Size be the thumbnail size of 80×80. However, what is happening is the archive category page images are setting to this feature, “‘Set the preview image size automatically based on column or layout width'”.

    How to I programmically have that default setting changed to:
    “Choose the preview image size manually (select thumbnail size)” = Thumbnail (80×80)

    Does this explain what I am looking for better?

    Also, thank you kindly for replying so fast. I really appreciate your time and effort to help me resolve this. :)

    DigitalEssence
    Participant

    Hi,

    I need to rearrange the WooCommerce product loop ([products orderby=”date” order=”asc” ‘category’ => ‘courses’ columns = “1”]) such that the review stars and review count are after the h3 product title and before the short description.

    I’ve already used a remove and add action to change the layout of the avia_woocommerce_thumbnail function but now need to move the review and stars to after the title and before the short description.

    I have worked my way down to here:

    # wrap product titles and sale number on overview pages into an extra div for improved styling options
    #
    
    add_action( 'woocommerce_before_shop_loop_item_title', 'avia_shop_overview_extra_header_div', 20);
    function avia_shop_overview_extra_header_div()
    {
    	echo "<div class='inner_product_header'><div class='avia-arrow'></div>";
    }
    
    add_action( 'woocommerce_after_shop_loop_item_title',  'avia_close_div', 1000);

    And the next step is to output the title and then the short description but I’ve grepped the code for hours and just can’t work out where this is being added. Could you give me a pointer?

    Thanks

    #398921
    sepruda
    Participant

    The thumbnail to my post is squished in IE8 works fine in Chrome

    Also, when loading the homepage, it opens slightly scrolled down in IE8

    http://danskkirurgiskselskab.dk/

    #398909

    Hi!

    Yes, you don’t have to resize any image because the thumbnails are already available. Glad you like the theme. Thank you.

    Regards,
    Ismael

    #398795

    Hey Munford!

    Thank you for using Enfold.

    Edit the portfolio grid element, look for the Portfolio Grid Image Size setting. Set it to manual then select your preferred thumbnail size.

    Best regards,
    Ismael

    #398749

    Hi vadesign!

    Thank you for using Enfold.

    Try to install this plugin: https://wordpress.org/plugins/simple-image-sizes/

    Go to Settings > Media then adjust the “square” thumbnail size. This will help with the excerpt: https://kriesi.at/support/topic/blog-category-frontpage-view/#post-386022

    Best regards,
    Ismael

    #398670
    vadesign
    Participant

    So I was trying to figure out how to do a couple of things for the category archive blog pages. First I wanted the small thumbnail. Figured that out by this page: http://kriesi.at/documentation/enfold/change-archive-categorytag-blog-style/

    But I would like to make the thumbnail a manually 80×80 and cannot figure that out.

    Then I wanted it to be an excerpt with the read more link and followed this page:
    https://kriesi.at/support/topic/category-archive-pages-to-show-excerpt-only/

    The problem, is this changed the actual blog post to excerpt only and now you cannot read the blog on the actual blog page.

    Please help. Thank you!

    #398411

    Hi!

    You would have to edit the single.php file and do a lot of customization to it. It’s kind of bordering on custom work but the WordPress functions you would be interested in are http://codex.wordpress.org/Function_Reference/do_shortcode, and, http://codex.wordpress.org/Function_Reference/the_post_thumbnail.

    Cheers!
    Elliott

    Hey!

    Feel free to request such feature here – https://kriesi.at/support/enfold-feature-requests/
    As a workaround, you can check the post id of your posts and use the code as following

    .single.postid-1671961081 .page-thumb {
    display: none;
    }

    That would remove the page thumbnail from “Opbeat”

    Cheers!
    Yigit

    #398287

    In reply to: picture sizes

    Hey!

    Just to add to @digitalessence, after changing image sizes, please do not forget to regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/

    @digitalessence
    Thank you :)

    Best regards,
    Yigit

    Hi, thank you for the CSS, but I apologize if I didn’t explain properly.

    I don’t want to hide all of those Portfolio page thumbnails; we want them on almost every page. But in some cases, I don’t want to show them, so I want the same feature that appears on Blog posts to be available to Portfolio page featured images. It’s the same exact scenario:

    #398066

    In reply to: picture sizes

    Hi,

    I’m no expert (by a long shot) so could be giving you completely wrong info but…

    1. Where can I find the picture sizes, which are used in ENFOLD?

    functions.php has the following:

    $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

    2. Which size is the best size for pictures before I upload them to wordpress?

    Depends on the largest image size required and if you want large lightbox detailed images to show

    3. Must the original picture have the same ratio as the destination ratio inwordpress.

    This depends on the crop set above. This link n the WordPress Codex: http://codex.wordpress.org/Function_Reference/add_image_size lists the different types of crop and also explains how to add extra custom image sizes to your theme.

    http://havecamerawilltravel.com/photographer/wordpress-thumbnail-crop shows you how each type of crop is displayed as it doesn’t work exactly as one would think.

    Like I said, I’m no expert so if a Moderator comes along and says I’ve just told you a pile of rubbish then I’m sorry!

    #398052

    Hi itchybrain!

    Thank you for using Enfold.

    You can remove the modification then install this plugin: https://wordpress.org/plugins/simple-image-sizes/

    Go to Settings > Media to adjust the “widget” thumbnail size.

    Cheers!
    Ismael

    Hi itchybrain!

    Try editing line 127 in /enfold/functions.php.

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

    And then use this plugin to refresh the images, https://wordpress.org/plugins/regenerate-thumbnails/.

    Cheers!
    Elliott

    #397476

    Topic: image pixelation

    in forum Enfold
    codecreative
    Participant

    hi how do change the image thumbnails being used on the home page at

    http://kojuice.co.uk/

    You can see there is some pixelation going on with the products thumbnails. There is higher quality version higher resolution version used as the products featured image. But for some reason the theme is trying to display tiny thumbs and enlarging them

    This reply has been marked as private.
Viewing 30 results - 7,021 through 7,050 (of 10,097 total)