-
AuthorSearch Results
-
May 10, 2013 at 2:45 am #116656
In reply to: Images look blurred !!
Hi,
It uses this thumbnail size.
$avia_config['imgSize']['gallery'] = array('width'=>710, 'height'=>575 ); // images for portfolio entries (2,3 column)Change that to
$avia_config['imgSize']['gallery'] = array('width'=>666 , 'height'=>539 ); // images for portfolio entries (2,3 column)This will resize it same size with the slider container assuming you have the same layout as this link http://kriesi.at/themes/enfold/portfolio-item/slider-two-third/.
Regenerate the thumbnails. Don’t use images smaller than the 666x539px.
Regards,
Ismael
May 8, 2013 at 12:24 pm #117862In reply to: Divide portfolio with taxonomies (compatible?)
Please help!!
I may have explained it unclear. I basically need to duplicate “Portfolio items” in the wp menu a few times. Either I can create custom post types and add the necessary code(s) to make them work and look like the portfolio, or I duplicate the necessary portfolio files/codes and rename them into “Customers”, “Partners” and “Products”.
Important is that I also have to advanced layout builder.
This is extremely important in my case, so please give me your feedback.
An example of what I have already added as PHP, currently still as regular post types:
// Add new post type for Customers
add_action ('init', 'customers_init');
function customers_init()
{
$customer_labels = array(
'name' => _x('Customers', 'post type general name'),
'singular_name' => _x('Customer', 'post type singular name'),
'all_items' => __('All customers'),
'add_new' => _x('Add customer', 'customers'),
'add_new_item' => __('Add Customer'),
'edit_item' => __('Edit Customer'),
'new_item' => __('New Customer'),
'view_item' => __('View Customer'),
'search_items' => __('Search Customer'),
'not_found' => __('No customers found'),
'not_found_in_trash' => __('No customers found in Trash'),
'parent_item_colon' => ''
);
$args = array(
'labels' => $customer_labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'query_var' => true,
'rewrite' => true,
'capability_type' => 'post',
'hierarchical' => false,
'menu_position' => 5,
'supports' => array('title','thumbnail','editor'),
'has_archive' => 'customers'
);
register_post_type('customers',$args);
}
// Add custom taxonomies
add_action( 'init', 'create_taxonomies', 0);
function create_taxonomies()
{
// Customer type
$country_labels = array(
'name' => _x('Countries', 'taxonomy general name'),
'singular_name' => _x('Country', 'taxonomy singular name'),
'search_items' => __('Search countries'),
'all_items' => _x('All countries'),
'most_used_items' => null,
'parent_item' => null,
'parent_item_colon' => null,
'edit_item' => __('Edit Country'),
'update_items' => __('Update Country'),
'add_new_item' => __('Add country'),
'new_item_name' => __('New Country'),
'menu_name' => __('Countries')
);
register_taxonomy('customer-country', 'customers', array(
'hierarchical' => true,
'labels' => $country_labels,
'show_ui' => true,
'query_var' => true,
'rewrite' => array('slug' => 'customer-country' )
));
}May 8, 2013 at 10:36 am #116575In reply to: Changes to blog grid template
I have content in this page: http://www.granrabino.org/
On this homepage, in the area I am listing blog entries, I would like to make changes to how those entries look. In what file can i manipulate that code? I want to move the thumbnail to the left of the entry. I want it to look like this: http://www.granrabino.org/wp-content/uploads/2013/04/blog_layout.jpg
May 7, 2013 at 2:39 pm #117550In reply to: Colour & Font Size Changes
Hi,
This is the url of the About Us section of the demo http://kriesi.at/themes/enfold/pages/about-us/ … There are no icons here , but I am guessing thumbnail photos – like when you run the mouse over harrold houdini’s photo?
I got this css exactly the same way as shown on the above video using chrome developer tools
/*---these are the colors when mouse hovers--*/
#top .avia-team-member .twitter:hover {
color: rgb(70, 212, 254);
}
#top .avia-team-member .dribbble:hover {
color: rgb(228, 72, 133);
}
/*---this is the regular color of the icon inside circle--*/
#top .main_color .team-social a
color: grey;
}
/*---this is complete settings controlling size, shape, background color, position of the circle itself--*/
#top .team-social a {
text-decoration: none;
position: relative;
border-radius: 30px;
padding: 0 16px;
background: rgb(224, 17, 17);
margin: 3px;
display: inline-block;
height: 53px;
line-height: 54px;
width: 53px;
}Keep playing with developer tools, i know at first it seems oppressive, but there is nothing better than this to use to quickly be able to edit css of any site.
Thanks,
Nick
May 7, 2013 at 5:44 am #117695You’ve two options:
1) Make the thumbnail size smaller – insert following code into the quick css field:
.small-preview {
width: 81px;
height: 81px;
}and instead of 81px insert a value which fits your thumbnail size.
2) You can try following code – it should adjust the preview image size automatically:
.small-preview {
width: 100%;
height: 100%;
}If you want to remove the thumbnail use:
.small-preview {
display: none;
}May 6, 2013 at 11:24 am #117588In reply to: Demo Content Galerien
Hallo,
ich habe leider keinen Zugriff auf den Demo Content. Möglicherweise ist er aber auch im Dummy Content enthalten (Enfold und den grünen “Dummy Data” button klicken – aber Achtung nur auf einem Testsystem, den es kann bestehender Content überschrieben werden).
Wenn die Gallerie neben “SOME ENFOLD CORE FEATURES” gemeint ist – diese lässt sich sehr leicht nachstellen, nämlich mit: http://www.clipular.com/c?5499120=Mnr1inoJoiqNQM7uPkrYLQuixaM&f=.png
Vermutlich fehlen aber die kleinen Thumbnail Bilder in der Auswahl – diese werden im nächsten Update enthalten sein. Wenn man diese jetzt schon haben möchte, öffne wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesgallery.php und ersetze:
"subtype" => AviaHelper::get_registered_image_sizes(array('thumbnail','logo','widget','slider_thumb'))mit:
"subtype" => AviaHelper::get_registered_image_sizes(array('logo'))May 6, 2013 at 6:05 am #116434In reply to: Blurred Thumbnails
Hey!
Great :)
Best regards,
Peter
May 6, 2013 at 1:19 am #116433In reply to: Blurred Thumbnails
I’m so Happy!!!. I updated the theme, follow your instructions, and now is working. Thumbnails now, are not blurred !!
Thanks a lot!!
Alexia.
May 5, 2013 at 7:09 pm #116926In reply to: Popular posts list bug
Hi,
Congratulations, you have found a genuine bug that I was able to reproduce. Well not so much a bug, since if you would have added the image via the slider it would have used that image, but there was no fallback to featured image unlike the other widgets.
So please open up /framework/php/class-framework-widgets.php and find lines 944-947 that look like:
if( $slides != "" && !empty( $slides[0]['slideshow_image'] ) )
{
$image = avia_image_by_id($slides[0]['slideshow_image'], 'widget', 'image');
}and replace the block of code above with the code below
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(), 'widget' );
}Please let us know how it worked out.
Thanks,
Nick
May 5, 2013 at 11:37 am #117496In reply to: Galerie skaliert keine bilder
Ja, man kann diese Option auch recht leicht jetzt schon hinzufügen – in wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesgallery.php einfach folgende Zeile löschen:
"required" => array('style','not','big_thumb'),– man hat dann zwei Auswahlfelder. Das erste bezieht sich auf das große Thumbnail, das zweite auf die kleinen Thumbnails.
May 5, 2013 at 11:22 am #117494In reply to: Galerie skaliert keine bilder
Bzgl der Thumbnails – ja, wir werden in der nächsten Version (in ca. 1 Woche) eine Option einbauen welche es erlaubt die Thumbnail Size der kleinen Bilder getrennt zu wählen (daher kann man dann zb auch Hochfomatbilder beschneiden und im Querformat darstellen, etc.).
Das große Thumbnail wird jetzt aber richtig angezeigt (mittig & im Hochformat) und der CSS Code skaliert es nicht mehr:
May 5, 2013 at 10:58 am #117491In reply to: Galerie skaliert keine bilder
danke fürs reinschauen … gewählt wurde:
big image with thumbnails bellow
medium 300×300
5 columns
lightbox yes
May 5, 2013 at 10:52 am #117490In reply to: Galerie skaliert keine bilder
Bitte poste einen link zu deiner Gallerie.
Der CSS Code den ich gepostet habe sorgt dafür, dass die gewählte Thumbnail Size verwendet wird. Ist das Thumbnail kleiner als der Gallerie-Container wird das Bild zentriert angezeigt. Anonsten füllt es den Container zur Gänze aus (daher 100% der Weite).
May 5, 2013 at 7:28 am #117381In reply to: Blog option
1) Maybe you need to activate the option on the post editor screen. Click on “Screen options” in the right corner and check the excerpt checkbox: http://www.clipular.com/c?5393178=DWPIZfYn3Pt6vQ_8EL0lN6Pc9Js&f=.png
2) The reason is that the portfolio thumbnail size is used which does not crop the image. We’ll include an option to select a different thumbnail size in the next version. For now you can change the thumbnail dimensions in functions.php – search for:
$avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column)and set the height to a lower value. Afterwards regenerate the thumbnails http://wordpress.org/extend/plugins/regenerate-thumbnails/
Another option would be to upload bigger thumbnails with at least 495x400px.
3) Probably a bug but I fixed it. Try following – open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodespostslider.php
and replace:
$excerpt .= '<div class="read-more-link"><a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"> →</span></a></div>';with
$excerpt .= '<div class="read-more-link"><a href="'.get_permalink($the_id).'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"> →</span></a></div>';May 5, 2013 at 6:40 am #116432In reply to: Blurred Thumbnails
Please download v1.4 of Enfold. It allows you to select the thumbnail size for gallery images:

Depending on the number of the columns select a smaller or bigger thumbnail size.
May 5, 2013 at 12:52 am #116431In reply to: Blurred Thumbnails
Hello, I have installed and started the plugin, but the thumbnails continuous appearing blurred….Some other suggestion?
Thanks.
Alexia.
May 3, 2013 at 12:26 pm #116087In reply to: Portfolio featured image not displaying
Hi doafilms,
For each portfolio item, make sure to set a featured image. That way there is a photo identified as the preview image to be used in portfolio overviews.
For the slideshows, if you have images previously uploaded on the server you will need to re-generate theme with this plugin: http://wordpress.org/extend/plugins/regenerate-thumbnails/
That should save the proper thumbnails the theme will then use in slideshows. Just make sure to use images that are larger than or exactly equal to the size of slideshow you’ll use.
Regards,
Devin
May 2, 2013 at 4:36 pm #115677In reply to: gallery captions don't show right
Hey!
Hey!
Next update will remove the circle overlay on gallery thumbnails that interferes with the caption tooltip ;)
Thanks for the notice!
Regards,
Kriesi
May 2, 2013 at 3:12 pm #116922In reply to: Popular posts list bug
Hi andreano,
Try using this plugin to regenerate your thumbnails and see if that fixes the issue: http://wordpress.org/extend/plugins/regenerate-thumbnails/
Regards,
Devin
May 2, 2013 at 1:07 pm #116998In reply to: Layout Builder Not Loading After Updating
Hey Devin,
Looks like I found the problem I have a video embed from Wistia and it uses a external javascript file and I deleted the video and it fixed the issue with my layout builder.
But also if I use an SEO embed from Wistia I can’t save it. I click the save button and nothing happens.
Here is the embed code:
<div id=”wistia_e6453ecca2″ class=”wistia_embed” style=”width:620px;height:347px;” data-video-width=”620″ data-video-height=”349″><div itemprop=”video” itemscope itemtype=”http://schema.org/VideoObject”><meta itemprop=”duration” content=”PT1M32S” /><meta itemprop=”thumbnailUrl” content=”http://embed.wistia.com/deliveries/ad669943c1b1406d8ce85d5e22f8a64f37c33572.bin” /><meta itemprop=”contentURL” content=”http://embed.wistia.com/deliveries/b44b4b0f8b44e3e14a6f2dda8441ff3b557f04ce.bin” /><meta itemprop=”embedURL” content=”http://embed.wistia.com/flash/embed_player_v2.0.swf?2013-01-16&customColor=4c89ff&mediaDuration=92.0&stillUrl=http%3A%2F%2Fembed.wistia.com%2Fdeliveries%2Fad669943c1b1406d8ce85d5e22f8a64f37c33572.jpg%3Fimage_crop_resized%3D620x349&unbufferedSeek=true&videoUrl=http%3A%2F%2Fembed.wistia.com%2Fdeliveries%2Fb44b4b0f8b44e3e14a6f2dda8441ff3b557f04ce.bin” /><meta itemprop=”uploadDate” content=”2012-04-26T15:28:59Z” /><object id=”wistia_e6453ecca2_seo” classid=”clsid:D27CDB6E-AE6D-11cf-96B8-444553540000″ style=”display:block;height:347px;position:relative;width:620px;”><param name=”movie” value=”http://embed.wistia.com/flash/embed_player_v2.0.swf?2013-01-16″></param><param name=”allowfullscreen” value=”true”></param><param name=”allowscriptaccess” value=”always”></param><param name=”bgcolor” value=”#000000″></param><param name=”wmode” value=”opaque”></param><param name=”flashvars” value=”customColor=4c89ff&mediaDuration=92.0&stillUrl=http%3A%2F%2Fembed.wistia.com%2Fdeliveries%2Fad669943c1b1406d8ce85d5e22f8a64f37c33572.jpg%3Fimage_crop_resized%3D620x349&unbufferedSeek=true&videoUrl=http%3A%2F%2Fembed.wistia.com%2Fdeliveries%2Fb44b4b0f8b44e3e14a6f2dda8441ff3b557f04ce.bin”></param><embed src=”http://embed.wistia.com/flash/embed_player_v2.0.swf?2013-01-16″ allowfullscreen=”true” allowscriptaccess=”always” bgcolor=#000000 flashvars=”customColor=4c89ff&mediaDuration=92.0&stillUrl=http%3A%2F%2Fembed.wistia.com%2Fdeliveries%2Fad669943c1b1406d8ce85d5e22f8a64f37c33572.jpg%3Fimage_crop_resized%3D620x349&unbufferedSeek=true&videoUrl=http%3A%2F%2Fembed.wistia.com%2Fdeliveries%2Fb44b4b0f8b44e3e14a6f2dda8441ff3b557f04ce.bin” name=”wistia_e6453ecca2_html” style=”display:block;height:100%;position:relative;width:100%;” type=”application/x-shockwave-flash” wmode=”opaque”></embed></object><noscript itemprop=”description”>Build Your Business With Google Apps</noscript></div></div>
<script charset=”ISO-8859-1″ src=”http://fast.wistia.com/static/concat/E-v1.js”></script>
<script>
wistiaEmbed = Wistia.embed(“e6453ecca2”, {
version: “v1”,
videoWidth: 620,
videoHeight: 349,
playerColor: “4c89ff”
});
</script>
<script charset=”ISO-8859-1″ src=”http://fast.wistia.com/embed/medias/e6453ecca2/metadata.js”></script>
Thanks
May 2, 2013 at 8:26 am #116600In reply to: Portfolio thumbs overlapping thumbnail titles above
Hi,
Other users also reported this issue. I already sent an email to Kriesi and the support team.
Regards,
Ismael
May 1, 2013 at 1:07 pm #116430In reply to: Blurred Thumbnails
Hi Alexia,
If these are images that were already on your server (not newly updated) they may just need to have their thumbnails regenerated. Try using this plugin to do that and see if it helps: http://wordpress.org/extend/plugins/regenerate-thumbnails/
Regards,
Devin
May 1, 2013 at 11:50 am #116731In reply to: Add caption to gallery lightbox
Hi Nick,
Yes, I know I can add a caption to the gallery images that will show up as a tooltip when the thumbnail is hovered over. But I was wondering if I could have that same caption appear on the lightbox image that appears once you click on the thumbnail and also if that caption could appear permanently underneath each thumbnail (in addition to the tooltip).
Thanks,
Matt
May 1, 2013 at 9:57 am #116599In reply to: Portfolio thumbs overlapping thumbnail titles above
My install is not online. But I did fix it by going back to the 1030px version in the enfold settings page. As 1210px is new, and not on the demo version I presume it is a bug in the CSS somewhere when the screen is wider than the 1210 width.
May 1, 2013 at 7:44 am #116730In reply to: Add caption to gallery lightbox
Hi,
You can add a description which will come up as a tooltip when you hover over the thumbnails.
http://www.clipular.com/c?5525272=igbxklSRGC-RhPvXDxRmKuDlOAg&f=.png
I made a video showing in greater detail where to add that and its uploading at the moment.
Thank,
Nick
May 1, 2013 at 7:05 am #116333In reply to: PORTFOLIO ITEM/TEAM MEMBER IMAGES NOT SHOWING
Hi,
Did you create a portfolio item for each member? You need to upload an image for each portfolio items.
Try to regenerate the thumbnails http://wordpress.org/extend/plugins/regenerate-thumbnails/.
Regards,
Ismael
May 1, 2013 at 6:47 am #116598In reply to: Portfolio thumbs overlapping thumbnail titles above
Hey,
Thanks for the tip. It will really help if you can give us a link to the issue. Did you fix it?
Regards,
Ismael
May 1, 2013 at 5:17 am #116742Hi,
There is no way to manually specify a styling for each product. Although you can style a specific category page which, I guess, not the way you want it.
Please try to regenerate the thumbnails using this plugin. http://wordpress.org/extend/plugins/regenerate-thumbnails/
Regards,
Ismael
April 30, 2013 at 10:41 pm #22664Topic: Add caption to gallery lightbox
in forum EnfoldMM
ParticipantHi,
I have some requirements for the gallery element and wonder if they are possible, and if so how:
1) Add a caption to the larger lightbox image when a thumbnail is clicked on a gallery.
2) Put a title or short descriptive text underneath each gallery thumbnail
Thanks,
Matt
April 30, 2013 at 2:56 pm #116429In reply to: Blurred Thumbnails
Hello,. Unfortunately my page still in a private server until tomorow,
Also, I used the gallery for my thumbnails unstead a portfolio. Is this the problem maybe?
Thank you.
-
AuthorSearch Results
-
Search Results
-
Hi,
I have some requirements for the gallery element and wonder if they are possible, and if so how:
1) Add a caption to the larger lightbox image when a thumbnail is clicked on a gallery.
2) Put a title or short descriptive text underneath each gallery thumbnail
Thanks,
Matt

