Viewing 30 results - 6,901 through 6,930 (of 10,097 total)
  • Author
    Search Results
  • #416685

    In reply to: top bar font size

    This reply has been marked as private.
    #416595
    rengarajan
    Participant

    Hi!

    Firstly congrats on an awesome theme. The theme’s just fantastic, especially how neatly everything works, just as if it is a native wordpress theme. Just a couple of issues I require your help.

    I extensively use the Portfolio feature throughout the site. But the Portfolio thumbnail quality looks very poor, especially on Mobiles, Tabs and Retina displays. I have used the suggestion said here in this thread – https://kriesi.at/support/topic/poor-quality-thumbnail-images-in-portfolio-gallery/, but the display quality is still poor. But once I click the image, the full sized one displays with native resolution.

    Another query is with regards to Templates. I use templates to design a lot of pages. Is there a way where I can edit the template so that I needn’t edit every single page.

    Thanks in advance for your support. Keep coming up with more great themes like Enfold :)

    #416443

    Great, this works!

    By the way, the code I changed/added is this:

    masonry_entries.php, from line 770:

    							case 'video' :
    								if(!$this->loop[$key]['thumb_ID']) 
    								{
    									preg_match_all('#\bhttps?://[^\s()<>]+(?:\([\w\d]+\)|([^[:punct:]\s]|/))#', $entry->post_content, $match);
    									foreach($match[0] as $test_url){
    										if($this->loop[$key]['video_image_url']=video_get_image_url ($test_url))
    											break;
    									}
    									if($this->loop[$key]['video_image_url']=="")
    											$this->loop[$key]['text_before'] = av_icon_display($post_format);
    								}
    								else
    									$this->loop[$key]['text_before'] = av_icon_display($post_format, 'av-masonry-media');
    								break;

    …and line 863:

    				//get attachment data
    				$this->loop[$key]['attachment'] = !empty($this->loop[$key]['thumb_ID']) ? wp_get_attachment_image_src($this->loop[$key]['thumb_ID'], $img_size) : array($this->loop[$key]['video_image_url']);

    and in functions.php this function:

    // Video-URL
    function video_get_image_url($url,$size="thumbnail_large"){
    	$image_src = parse_url($url);
    	if($image_src['host'] == 'www.vimeo.com' || $image_src['host'] == 'vimeo.com' || $image_src['host'] == 'player.vimeo.com'){
    		parse_str($image_src['query'], $query);
    		if(isset($query['clip_id']) && $query['clip_id'] != ""){
    			$id = $query['clip_id'];
    		} else {
    			$path = explode("/",$image_src['path']);
    			$id = $path[(count($path)-1)];
    		}
    		if(function_exists('curl_init')){;
    			$ch = curl_init();
    			curl_setopt($ch, CURLOPT_URL, "http://vimeo.com/api/v2/video/$id.php");
    			curl_setopt($ch, CURLOPT_HEADER, 0);
    			curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    			curl_setopt($ch, CURLOPT_TIMEOUT, 10);
    			$output = unserialize(curl_exec($ch));
    			$output = $output[0][$size];
    			curl_close($ch);
    			return $output;	
    		}
    	}
    	else if($image_src['host'] == 'www.youtube.com' || $image_src['host'] == 'youtube.com'){
    		parse_str($image_src['query'], $query);
    		if(isset($query['v']) && $query['v'] != ""){
    			$id = $query['v'];
    		} else {
    			$path = explode("/",$image_src['path']);
    			$id = $path[count($path)-1];
    		}
    		if($size=="thumbnail_large")
    			return "http://img.youtube.com/vi/".$id."/0.jpg";				
    		else
    			return "http://img.youtube.com/vi/".$id."/default.jpg";				
    	} else{
    		return false;
    	}
    }
    

    Voilá – now every post content of type “video” in the masonry automagically displays the cover image of the first video of the post instead of only the video icon. Wouldn’t this feature be nice for a future enfold update? :-)

    #416268
    Jahrl
    Participant

    Hi
    We are using child theme to Enfold and I would like to know what pages you have edit between 3.0.8 and 3.1.1. I cant find the change log or in the version.txt

    We have edit:
    single-portfolio.php
    page.php
    template-builder.php
    footer.php
    functions.php

    And right now the creating of thumbnails don’t work. Is this a known error?

    #416088
    johnlotton
    Participant

    Hi,

    I’ve had an issue for a while now, and updating Enfold doesn’t seem to fix it.

    Masonry on desktop is fine, but when on mobile, or shrunk in a desktop browser, the columns won’t switch to single, and images can no longer be seen.

    How do I fix this?

    For example:
    http://thenibble.com.au/australia/victoria/melbourne/

    Thanks.

    #416016

    In reply to: THUMBS PORTFOLIO

    Hi!

    This will require custom modification directly on the core theme files. Edit shortcode.js. Look for this code on line 2287:

    var gallery = $(this), images = gallery.find('img'), big_prev = gallery.find('.avia-gallery-big');
    

    Replace it with:

    var gallery = $(this), images = gallery.find('img'), big_prev = gallery.find('.avia-gallery-big'), imglink = gallery.find('.avia-gallery-thumb a');
    

    Change this line:

    //trigger displaying of thumbnails
    		gallery.on('avia_start_animation', function()
    		{			
    			images.each(function(i)
    			{
    				var image = $(this);
    				setTimeout(function(){ image.addClass('avia_start_animation') }, (i * 110));
    			});
    		});

    With this:

    //trigger displaying of thumbnails
    		gallery.on('avia_start_animation', function()
    		{
    			imglink.each(function(i)
    			{
    				imglink.removeAttr('href');
    			});
    			
    			images.each(function(i)
    			{
    				var image = $(this);
    				setTimeout(function(){ image.addClass('avia_start_animation') }, (i * 110));
    			});
    		});

    Again, look for this line:

    gallery.on('mouseenter','.avia-gallery-thumb a', function()
    

    Replace it with:

    gallery.on('click','.avia-gallery-thumb a', function()
    

    Edit avia.js, look for this code:

    exclude			:	'.noLightbox, .noLightbox a, .fakeLightbox, .lightbox-added',
    

    Replace it with:

    exclude			:	'.noLightbox, .noLightbox a, .lightbox-added, .avia-gallery-thumb a',
    

    Last, add this to the Quick CSS field:

    #top .avia-gallery .avia-gallery-thumb a {
    	cursor: pointer;
    }

    Best regards,
    Ismael

    #415781

    Topic: html5 video thumbnail

    in forum Enfold
    Vermishelle
    Participant

    I switched to self-hosted html5 videos in order for pages to load faster. But I’m disappointed with the fact that I can’t assign an image (thumbnail) for a self-hosted video media element. I know, I can use native wordpress shortcode, but I don’t like the appearence of that player.

    So, is there a way to assign an image thumbnail for a self-hosted video?

    I have installed Video Embed & Thumbnail Generator https://wordpress.org/plugins/video-embed-thumbnail-generator/, it has a nice video.js player and lets assign thumbnails, but I’d prefer to stick to the theme’s player and keep the number of plugins close to minimum.

    #415434
    mlkg
    Participant

    Hi!

    I have installed the enfold child theme and it works fine.

    Now I wanted to add an automatic thumbnail image for videos in post masonries. So I added a line in function prepare_loop_from_entries() in /config-templatebuilder/avia-shortcodes/masonry_entries.php. This works fine.

    Now I want to make the whole hack via the child theme so it is update proof. But I can’t figure out how.

    1. I created the filestructure /config-templatebuilder/avia-shortcodes/ in the child theme folder an copied masonry_entries.php therein. But nothing happens – the original version keeps showing.
    2. I copied the function prepare_loop_from_entries() in the child themes function.php – with no success. The original version is taken.

    What do I do wrong?

    Regards,
    Rolf

    • This topic was modified 11 years ago by mlkg.
    #415043

    In reply to: Gallery Problems

    Hey!

    You can change the thumbnail size in the Gallery Preview Image Size setting. If you use the advance layout builder for posts, all default elements such as featured image, post meta info, titles will be remove. You have to add it manually.

    Regards,
    Ismael

    #414946

    Hi Chris!

    1- Please go to Appearance > Editor and open Functions.php file and find

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

    and change it as needed then regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/
    2- Please see – http://kriesi.at/documentation/enfold/replace-the-default-blog-latest-news-title/

    Cheers!
    Yigit

    #414591

    In reply to: Gallery not displaying

    Yes I disabled the lightbox, but now I can only get thumbnails, when what I want is a masonry gallery, plus my featured image isn’t showing up since the last update.

    #414526

    Hey Mattias!

    Thank you for using Enfold.

    What do you mean by “before scaling begins”? The size of the images in the portfolio grid is set to 495x400px by default, given that the column is set to 2 or more. When column is set to 1, the portfolio image size is 1500x430px. You can also select the thumbnail size by setting the Portfolio Grid Image Size to manual.

    Cheers!
    Ismael

    #414369

    Hi!

    I don’t see any partner/logo element on the page. Did you remove it? To fix the gallery, try to use images with the same size or dimension. Or set the Gallery Preview Image Size to your preferred thumbnail size. I think the “Square” size will do.

    Best regards,
    Ismael

    #414213
    TorsteinWold
    Participant

    Hello,

    I want to change the oval shape of the next / previous portfolio item thumbnail to a square. Is this possible?

    Best regards,
    Torstein

    http://www.torsteinwold.com

    #413877

    In reply to: Woocommerce Image Size

    I don’t get an error in Chrome so I can’t see if deactivating all plugins changes anything. However, I have deactivated them and regenerated the thumbnails and cleared my cache. Since I didn’t have an error, I can’t see if the error is gone, but nothing changed in my view. I left all plugins disabled for you to look at to see if the error has cleared.

    #413801

    In reply to: Gallery Problems

    Thankyou :)
    Ok great thanks – so that will solve the stacking issue, but what about the problem with the image sizes? I can only get it to show thumbnails. Also, my featured image is no longer showing on the post!!

    #413775

    In reply to: Woocommerce Image Size

    Hey thecszone!

    I get some error in chrome console for your website. Can you please deactivate all plugins to see if one is causing this issue? Afterwards please regenerate again your thumbnails and clear browser cache. If that does not help please provide us admin access so we can have a deeper look into it.

    Best regards,
    Andy

    #413511
    cannonballb
    Participant

    Hi there guys :)

    I’m a bit stuck & would appreciate some help!
    I’ve recently updated to the latest version of Enfold, and I’m working with a Child Theme.

    I have three NB issues:

    1. For some reason all my Buttons are not working properly. When I add a new button using the Avia Layout Builder, the default button works, but the moment I change any button settings, they don’t seem to work anymore :(

    2. All my portfolio thumbnails are not linking to their corresponding portfolio pages – I’m getting a 404 error. Not sure what the problem is? I’m worried now!!

    3. On many of my portfolio pages I’ve added an audio snippet using the following html, and now for some reason it’s not working? (it was working before)
    [audio src="https://www.realwiredmusic.com/wp-content/uploads/2012/05/GM-Debut.mp3" text="Gavin Minter Debut (sample)" dl="0"]

    Your urgent help would be greatly appreciated!!

    Thank you so very much.

    #413447

    In reply to: Customise Side bar

    Hey!

    You can add this to the Quick CSS field to increase the thumbnail container:

    .news-thumb, .news-thumb img {
      height: 50px;
      width: 50px;
    }

    Regards,
    Ismael

    #413339
    ondrej
    Participant

    Hi there,
    I am using Panopress plugin for 360 interactive panoramas and I came across the problem which seems to be related to the theme so I wonder if you could help. Here is the example of the page – http://rapturousmedia.com/services/360-aerial-photography/
    1. click any thumbnail to open pano in full screen
    2. close pano
    3. after clicking to another thumbnail the previous thumb disappear from the page

    Another user of Panopress having the same problem described that after clicking second thum “the width and height style disappear … element exists but the width and height style is not on the PP_(X)”

    It is not a general problem of the plugin. Here is the page where everything works ok and thumbnails don’t disappear.

    It would be great if you could look into it and see if you find solution or could point me to the right direction.
    Many thanks!
    Ondrej

    #413315

    Topic: Woocommerce Image Size

    in forum Enfold
    thecszone
    Participant

    Hi,
    I am trying to add products to woocommerce and have added an image that is 150 x 237 as a test. I have reset the image sizes in woocommerce products where is allows me to change the sizes. I have selected 450×450, 450x 450, and 150×150. I then regenerated my thumbnails using the plugin regenerate thumbnails. However, my images all remain the wrong size. Both the product page and the shop page. Below are links to the pages and you can see that on the shop page it is scaling the 150×237 up to 297 x 470 and on the product page it is scaling it up even higher.
    I have cleared my browser and tried it on other browsers and get the same thing and I don’t know how to fix it. Thanks in advance for your help.

    #413282
    smittypages
    Participant

    I am working with a client to switch their site to Enfold on an existing site that I didn’t originally build. All going well so far, except I can’t figure out why the following is (or isn’t) happening:

    When I update a blog post, the post thumbnail and excerpt don’t automatically update on the page on which they display. I need to manually update that page on which the blog section is placed, and then the changes show up. The changes do show up on the post itself, but just not in the content areas where I’ve got blog posts set up in a grid.

    Similarly, when I update the content in a widget area and click save, those changes don’t automatically update when I refresh the page on which they display. I need to, again, go in and manually update that page on which that sidebar displays to make the changes display.

    Any idea what is causing this? Like I mentioned, I didn’t build the original site, and am working from a lot of existing posts and just fine-tuning each one. It appears that the thumbnail and excerpt are automatically updating after changes on category pages, but not pages in which I’ve placed a blog section using the layout builder.

    #413256

    Hi JennyIdentify!

    1. If you use our image element you can select a custom thumbnail to use and also nest the image inside our columns to change their size. You can also use HTML to display an image in a codeblock element like so.

    <img src = "#" style = "width: 100px; height: 100px;" />
    

    2. You could try using HTML in that field as seen above.

    3. You would have to float the images left like so.

    <img src = "#" style = "float: left; margin-right: 10px;" />
    

    Cheers!
    Elliott

    #413108

    I also wanted full size images after clicking on the thumbnail. It’s been a while and I think Josue was the one to give me the solution. I’ve been using it ever since and still works perfectly:

    1) Go to config-templatebuilder/avia-shortcodes/gallery.php
    2) Search for: 'lightbox_size' => 'large',
    3) Change large into full.

    Sorry if this doesn’t answer the question. For Masonry it’ll probably be in a different php file in avia-shortcodes.

    • This reply was modified 11 years ago by DavyE.
    #413036

    You can recreate that entire page with Enfold and make it look 10 times better without any effort. :)

    For the gallery, you can use the following Enfold element in the layout builder:
    Media Elements > Gallery > Set Gallery Style to “Big image with thumbnails below”

    That’ll get you the desired effect.

    #413019
    robertscott
    Participant

    Hi,
    One of my clients would like to create a page like this: see here
    I’ve set a colored section with layout 1/2 | 1/2 but cant find a similar slider gallery to use.
    Has anyone used a similar gallery plugin that works with enfold with one main image and smaller thumbnails underneath?
    Thanks

    #412949

    In reply to: Customise Side bar

    Hi,
    I was trying to create a customized side bar for my blog page, where I can also get a thumbnail image of the blog page. I added the enfold latest news in the sidebar blog section which worked .how do I increase the size of the thumbnail image. Please let me know.

    Thank you.

    #412928
    shoo
    Participant

    Hi,
    I’ve used a plugin to automatically set the first image in my post as a featured image. That worked great and I know have thumbnails but the featured image is now appearing in my posts as a header as well. I can remove it if I edit the post and select “Don’t display image on single post” but is there a shortcut to set this for ALL my posts? I don’t want to have to re-edit 500+ posts. Thanks.

    Here’s a pic to what I want to enable for ALL my posts: http://s18.postimg.org/x1vmt0289/pic.jpg

    #412923

    Topic: Gallery Problems

    in forum Enfold
    juliaevemann
    Participant

    Hi
    I’ve restarted a new thread here as I still haven’t had this issue resolved. First when adding a gallery to a post, all the images were stacking up instead of displaying in a line. I’ve got the 5 columns selected. Then I updated to the latest update but this didn’t solve it, even when I was using the new post builder. So then I disabled the lightbox which worked and displayed the thumbnails. However, now it will only allow me to display thumbnails and no other sizes in the preview. I really want the lightbox and a masonry gallery!
    Thanks

    #412684

    Hey!

    Try with this code instead:

    add_filter('avf_avia_builder_gallery_image_link', 'avia_change_gallery_thumbnail_link', 10, 4);
    function avia_change_gallery_thumbnail_link($link, $attachment, $atts, $meta)
    {
        $link = wp_get_attachment_image_src($attachment->ID, "full");
        return $link;
    }

    Regards,
    Josue

Viewing 30 results - 6,901 through 6,930 (of 10,097 total)