Viewing 30 results - 8,551 through 8,580 (of 10,095 total)
  • Author
    Search Results
  • #237508

    Hi blaircomm!

    1) You can install this plugin: http://wordpress.org/plugins/wp-gallery-custom-links/ to apply a custom link to the gallery images. You could use it to i.e link your square thumbnail images to another “full size” image.

    2) If you need full control over the thumbnail size you can select the “Don’t show the images at all and display the preview text only” option: http://www.clipular.com/c/6453051829256192.png?k=5TIdSdjsRn87CQytVuQeUU4899A

    By going this way Enfold will stretch the content area of the ajax preview to 100% width and then you can use the entire space to build your custom layout. I.e. use the gallery and column shortcodes to build your custom gallery preview. The advantage is that you can use the thumbnail size options: http://www.clipular.com/c/5101738725998592.png?k=HlLKLkHRaW2pCz2oP5_O7UD9Ozw to determine the size of the squared images. You can install a plugin like: http://wordpress.org/plugins/simple-image-sizes/ to define new thumbnail sizes.

    I am using the “Child” theme, so in what files can I customize the blow-up size, background fades, and so on?

    Do you want to change the portfolio ajax animations? If yes the theme does not allow you to customize these settings. You would need to modify the enfold/js/avia.js but this may require some customization work and depending on your coding skills I recommend to hire a freelancer. You also can’t overwrite the js file directly with the child theme. If you want to remove the default avia.js file and register a custom avia.js file insert this code at the very bottom of the child theme functions.php:

    
    if(!is_admin()) add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 100);
    function avia_register_child_frontend_scripts()
    {
    	$child_theme_url = get_stylesheet_directory_uri();
    	wp_dequeue_script('avia-default');
    
    	//register js
    	wp_register_script( 'avia-default-child', $child_theme_url.'/js/avia.js', array('jquery'), 1, false);
    	wp_enqueue_script( 'avia-default-child' );
    }
    
    

    and then place the modified avia.js into your child theme (enfold-child/js/avia.js).

    3) Yes, if you want to open the full size image with the lightbox insert this code at the very bottom of your child theme functions.php file:

    
    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;
    }
    

    Best regards,
    Peter

    #237499

    In reply to: Portfolio items

    Hi bastikan!

    Du meinst wahrscheinlich die Anpassung hier: https://kriesi.at/support/topic/portfolio-item-2/ ? Ich vermute Josue hat einfach in enfold/single-portfolio.php diese Zeile:

    
    $avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
    

    mit:

    
    $avia_config['size'] = 'full';
    

    ersetzt. Dann wir statt dem Thumbnail das Originalbild verwendet und das Foto nicht abgeschnitten.

    Regards,
    Peter

    Hi!

    Please post a link to your website. The masonry gallery should link to the original images if you add the code to the functions.php file. If the code is in place and works properly the only other possible solution would be to replace the prettyphoto script with another lightbox like fancybox.

    Best regards,
    Peter

    #237408

    Hi!

    Please edit the thumbnail size on functions.php, find this code:

    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    

    Increase the width and height, if necessary set the crop to false. Something like this:

    $avia_config['imgSize']['square'] 		 	    = array('width'=>312, 'height'=>302, 'crop' => false);		                 // small image for blogs
    

    Regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Ismael

    #237376

    In reply to: image library

    Hi Edna!

    A single image is broken down or cropped into smaller thumbnails. The theme resizes the image and create smaller version of the thumbnails. You can find those thumbnail or image sizes on functions.php:

    $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'=>710, 'height'=>575 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270);		                 // big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 );						// images for fullsize pages and fullsize slider
    
    //overwrite blog and fullwidth image on extra large layouts
    if(avia_get_option('responsive_layout') == "responsive responsive_large")
    {
    	$avia_config['imgSize']['gallery'] 		 		= array('width'=>845, 'height'=>684 );					// images for portfolio entries (2,3 column)
    	$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
    }

    It is quite normal for a wp installation to have different sizes for a single image.

    Best regards,
    Ismael

    #237339

    In reply to: Gallery blurry images?

    Hi!

    Please edit functions.php, find this code on line 105:

    $avia_config['imgSize']['gallery'] 		 		= array('width'=>845, 'height'=>684 );					// images for portfolio entries (2,3 column)
    

    Replace it with:

    $avia_config['imgSize']['gallery'] 		 		= array('width'=>1000, 'height'=>800 );					// images for portfolio entries (2,3 column)
    

    Regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Ismael

    #237269

    Topic: Extrem langsam

    in forum Enfold
    medienvirus
    Participant

    Hallo,

    ich bin etwas am verzweifeln und hoffe auf Eure Erfahrung. Ich versuche nun schon eine weile eine Seite zu optimieren die ich mit dem enfold-theme gemacht habe. Alles lief anfangs ziemlich rund.

    http://www.soelker-infrarotheizung.com/

    Es ist alles auf dem aktuellsten Stand.

    An Plugins ist folgendes drin / aktiv

    • Antispam Bee
    • Digg Digg
    • W3 Total Cache
    • WooCommerce
    • WooCommerce German Market
    • WordPress Backup to Dropbox
    • WordPress SEO (yoast
    • WP-Optimize
    • WPML Multilingual CMS
    • WPML String Translation

    Weitere Plugins die ich nach Bedarf zuschalte, aber sonst brav deaktiviert sind: Broken Link Checker, Compress PNG for WP, Duplicate Post, P3 (Plugin Performance Profiler – Hat nix brauchbares ergeben…), Regenerate Thumbnails, WooCommerce Google Merchant Center Feed, Woocommerce Role Based Prices, WP Wartungsmodus

    Server:
    https://www.hosteurope.de/de/WebServer/ <– Basic

    Meine Fragen / Anmerkungen

    • Welche Server nutzt ihr bei welchem Provider mit welchen Leistungsdaten. Eure Themebeispiele sind ja angenehm schnell und flüssig. Liegt es nur am Server?!?
    • Mir ist klar das ich z.B. für die Startseite noch einiges an Performance bzgl. der Bilder rausholen kann, aber das erklärt nicht warum die Unterseiten auch so kriechen und auch nicht warum das Backend mittlerweile nur noch unerträglich ist. Was kann ich noch tun? Alles Pagespeedmessungen ergeben auch hinweise in Richtung zu großer JS Daten
    • Den Support von Hosteurope habe ich auch schon angeschrieben. Dort scheint alles in Ordnung. Keine Auffälligkeiten in den Logs. Ein Reverse IP Lookup ergibt nur das ich alleine auf dem Gerät unterwegs bin. (Ich weiß nicht ob Hosteurope das irgendwie faken kann – dafür bin ich zu wenig in der Materie Server drinnen…)

    Über jeden Tipp bin ich dankbar!!!

    LG

    Hi Peter,

    Sorry if I come back again.
    Maybe I am doing something wrong but I don’t see any changes on the lightbox inserting into the enfold/functions.php file what you suggested.

    Thanks,
    Giovanni

    #237191
    gingerstu
    Participant

    Hi,

    I’m struggling to get the gallery option working correctly.

    I’d like to use:
    Gallery Style – Big Image with thumbnails below
    Gallery Big Preview Image Size – Portfolio Small (260×185)
    Force Same Size – No
    Gallery Preview Image Size – Thumbnail (150×150)

    The issue is that the “big image” isnt rezing to the desired dimensions

    http://nabusinessdev.comeze.com/sample-page

    Ultimately, I’m trying to achieve a gallery very similar to the one shown here http://chriswardphotography.net/home/
    Any help gratefully received!

    Thanks,
    Stu

    • This topic was modified 12 years ago by gingerstu.

    Hi!

    Please add following code to Quick CSS as well

    .products .product.first { clear: right; }
    #top .products .product.last, #top #main .products .product.last { margin-right: 40px; }

    Regards,
    Yigit

    Hi,
    Thank You!
    But after that I have 4 categories in 3 rows and 3 columns.
    2 rows only – it should be better.
    Cheers,
    fotofaber

    Hi fotofaber!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    div .products .product { margin: 0 40px 40px 0; }

    Cheers!
    Yigit

    fotofaber
    Participant

    Hi,
    How to change the spacing between the thumbnails on the shop site?
    http://fotofaber.pl/?post_type=product

    Just like here:
    http://fotofaber.pl/?page_id=2270

    Cheers,
    fotofaber

    Hey!

    Please insert this code:

    
    add_filter('avf_avia_builder_masonry_lightbox_img_size','avia_change_image_size_masonry', 10, 1);
    function avia_change_image_size_masonry($size){ return 'full'; }
    

    into the enfold/functions.php file or insert it into your child theme functions.php file. The code makes sure that your lightbox open the original image and not the “large” thumbnail version.

    Cheers!
    Peter

    #236080

    Hi

    nope i check the javascript that is loaded, and the new params are good – then i checked the css and there is a display:none !important in the enfold css that hide for ever this thumbnails gallery :)

    #236007
    techgrayscale
    Participant

    Hello,

    I was hoping you could help me edit the excerpt (and title too if you don’t mind) that appears over the portfolio thumbnails in the fullwidth masonry element. I’ve tried the following snipet of css I found in another post but it didn’t work for me.

    .grid-entry-excerpt.entry-content {
    font-size: 20px;
    font-style: normal;
    color: #ff0000;
    }

    Many Thanks!

    #235749

    Hey!

    Maybe try to clear the browser cache. Afaik the “overlay_gallery” setting activates or deactivates the preview thumbnails and you don’t need to change anything else.

    Cheers!
    Peter

    #235690

    Hi!

    You can still use the portfolio grid element then add this on Quick CSS or custom.css to remove the grid image or featured thumbnail:

    .grid-image.avia-hover-fx {
    display: none;
    }

    Cheers!
    Ismael

    #235664

    Hey!

    How are you? I hope you’re doing well today.

    Please add this on Quick CSS or custom.css to place the thumbnail on top of the post.

    @media only screen and (max-width: 767px) {
    .responsive .template-blog .blog-meta, .responsive .post_author_timeline, .responsive #top #main .sidebar {
    display: none;
    position: relative !important;
    width: 100% !important;
    }
    
    .single-post .single-small.with-slider .small-preview {
    width: 100%;
    text-align: center;
    background: transparent;
    height: auto;
    }
    
    #top .fullsize .template-blog .big-preview a, #top .fullsize .template-blog .small-preview img {
    width: 180px;
    margin: 0 auto;
    }
    }

    Regards,
    Ismael

    #235460

    Thanks Peter,

    i tried the changes in the avia.js file but still no thumbnails gallery in the lightbox,
    probably a css issue ?

    i already use a child theme hence i will try to use the dequeuing process of prettyPhoto and enqueue fancyBox in my functions.php…we ‘ll see :)

    thanks

    #235433

    Topic: Gallery blurry images?

    in forum Enfold
    Daylinq
    Participant

    Hey,

    so the thumbnails are sharp because of an quick .css i found here on the site, but my images are full quality when you click them , but very blurry when you see them in te big preview block.

    I have uploaded 1000×800~ px images, so they are big enough, but still become blurry..

    Here is the site, see for yoursel: http://www.zenze.nl/beta/showcase/nieuwe-responsive-website-suburbia/#toggle-id-3

    Please help, it’s pretty frustrating :/

    Hi Devin,

    Indeed I don’t want to have a lightbox larger than the visible space of a users screen, but only to use all (or almost all) the users screen, because as you can see in the screenshots I provided
    (https://drive.google.com/folderview?id=0B8lRqyCRL2oHc2lJX0htTUcwZXc&usp=sharing)
    there is a lot of space of the screen outside the lightbox. Moreover, even if I can’t use all the screen for the lightbox, at least a proportionality with the real image is needed, in order to to avoid that a landscape image is displayed very large than a portrait one (see screenshots).

    The change Yigit suggested does not change the dimension of the lightbox, did I do something wrong?

    Thanks again for your help,
    Giovanni

    #235297

    Hi gmmediadienste!

    Kriesi setzt diese standardmäßig per CSS auf eine Größe von 80px. Du kannst die Größe mit diesem Code:

    
    #top .gallery .gallery-item {
    width: 150px;
    height: 150px;
    }
    

    anpassen. Füge den Code in das Quick CSS Feld ein.

    Regards,
    Peter

    #235279

    Hey!

    Replacing the lightbox script is not easily possible. You can download this child theme: http://www.mediafire.com/?05ho02ecut516hu if you want to replace prettyphoto with fancybox 2. I used it on my website to replace the lightbox script. You can also use this child theme as a starting point for the implementation of another third party lightbox script. If you want to use the default lightbox with a thumbnail navigation open up wp-content/themes/enfold/js/avia.js and replace:

    
    elements.prettyPhoto({ social_tools:'',slideshow: 5000, deeplinking: false, overlay_gallery:false, default_width: ww, default_height: wh });
    

    with

    
    elements.prettyPhoto({ social_tools:'',slideshow: 5000, deeplinking: false, overlay_gallery:true, default_width: ww, default_height: wh });
    

    Regards,
    Peter

    Hey!

    A lighbox can’t be larger than the visible space of a users screen. There is nothing we can do to change that without degarding the user experience and altering the lightbox script itself. If that is what you are looking for you would need to have a freelance developer customizing the script for you or look into alternative lightbox plugins/scripts with the features or functionality you need.

    Cheers!
    Devin

    #235172

    Hi Dude,

    thanks for your quick reply :)
    1) work nice indeed, will try to integrate this more in my theme.
    2) wow sounds perfect then, will check this out

    another question is regarding the product page and his image gallery.
    my client would like this lightbox effect http://demo.themesandco.com/product/happy-ninja/
    instead of the actual on in Enfold.
    He particularly requires the thumbnail navigation in the lightbox

    How is it possible to tweak this in the Enfold theme please ?

    thanks Dude

    #234983
    josephgut
    Participant

    I just updated Enfold to the latest 2.6 version and now our blog page no longer shows the featured preview images and the “Latest News” thumbnails at the bottom of that page are also now missing. Seems to only a problem for the Blog page. The problem appears to be in the “And where do you want to display the Blog?” setting when set to “Blog”. I’ve temporarily had to set it to “Select Page” so it doesn’t show missing images and missing thumbnails, but I’d really prefer to have it set to “Blog” with “Blog Style” – Multi Author Blog as I had working before this last update.

    Just found another problem after the 2.6 update – In Chrome Version 33.0.1750.146 and in FireFox 26.0 our default font style is not applied to our site’s home page as it is on other pages. Interesting thing is that if our admin is logged in then the fonts show up correctly, but if not logged in then the styling for the home page is now different for the other pages on the site. You can most easily see this issue by looking at the fonts in the header menu on the home page as compared with the header on other pages. This problem doesn’t happen in Safari Version 7.0.2 (9537.74.9). This is a great theme, but it looks like you guys could use some help with QA testing.

    • This topic was modified 12 years ago by josephgut.
    #234622

    In reply to: Enfold Combo Widget

    Hi agernaat!

    I think the thumbnails are missing. Try to regenerate them with: http://wordpress.org/plugins/regenerate-thumbnails/

    If the regeneration doesn’t help a possible css fix would be:

    
    .news-thumb {
    max-width: 36px;
    }
    

    – insert this code into the quick css field.

    Best regards,
    Peter

    #234540

    Hey remix1998!

    Thank you for using the theme. I hope you’re doing well today.

    Before you insert the image, please look for “ATTACHMENT DISPLAY SETTINGS”. Choose the thumbnail size that you want. Make sure that you insert the image on a column layout to constrain the size. The image width is set to 100% via css, it will inherit the size of the container.

    Best regards,
    Ismael

    #234529

    Hey!

    It is to 20% via CSS. I gave you the code to change the thumbnail size. Please use that.

    Cheers!
    Ismael

Viewing 30 results - 8,551 through 8,580 (of 10,095 total)