Viewing 30 results - 10,021 through 10,050 (of 10,078 total)
  • Author
    Search Results
  • Hallo,

    1) Ja, dieser Fehler ist uns bekannt (er tritt vereinzelt auch beim 1210px Layout auf) und wird im nächsten Update gefixt. Wir müssen hierbei auf Kriesi warten (welcher das Update absegnet & veröffentlicht) – er kehrt diesen Montag von Zypern zurück und dann werden wir versuchen schnellstmöglich das Update zu veröffentlichen. Einen “kleinen” temporären Fix gibt es hierzu leider nicht.

    2) Ich habe nun in das portfolio Element eine Option eingebaut, welche es erlaubt die Thumbnailgröße individuell zu wählen. Diese Funktion wird ebenfalls im nächsten Update enthalten sein. Ein temp. Lösung wäre die Thumbnail Größe in wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesportfolio.php anzupassen – suche nach folgender Zeile:

    $image_size = 'portfolio';

    und ersetze “portfolio” mit einer anderen Thumbnailgröße – folgende Größen stehen zur Verfügung:

    entry_with_sidebar

    entry_without_sidebar

    square

    featured

    portfolio_small

    gallery

    3) Versuche folgendes – öffne wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesgallery.php und ersetze:

    'lightbox_size' => 'large',

    durch

    'lightbox_size' => 'full',

    Bzgl alt/title Tags – da müssen wir uns ansehen ob bzw. wie wir diese am besten an die lightbox übergeben können. Ich kann hierzu aber nichts versprechen.

    #118441

    I’m not sure I understand. The blog page (hollenberg.tv/blog) is set as the blog page in Enfold Theme Options. ‘Your latest posts’ is selected in the Reading Settings. Is this not correct?

    Other than that, I’m not sure what to say. I had a different theme installed initially, and recently switched to Enfold, I don’t know if that is causing problems? I thought it was basically showing up as a blog in the grid layout, except the thumbnails weren’t formatting to be the same size.

    #118704

    I posted over an hour ago and it looks like I was skipped in the que. I’m just looking for a way to disable the thumbnail in a single portfolio post. I saw a post on how to disable on a blog post, just looking for the same thing on a single potfolio post.

    medienvirus
    Participant

    Hallo,

    erstmal: endgeile Arbeit kriesi! Das Theme macht echt was her und es macht richtig spass damit zu arbeiten! Ich habe lange nach etwas ähnlichem gesucht, da ich selbst leider keine Zeit habe so etwas aus dem Boden zu stampfen. Danke an der Stelle für die tolle Arbeit die jeden Cent wert ist.

    Ich habe folgende Probleme mit dem envato-theme:

    1.) Leider überlagern sich die Arbeiten im Portfolio-Raster auf meiner Startseite unter:

    http://www.medienvirus.de

    2.) Ebenso sind diese unterschiedlich hoch. Natürlich habe ich hier unterschiedliche Höhen hochgeladen, jedoch fände ich es an der Stelle sinnvoll wenn dieses Raster immer die selbe Höhe als Thumbnail erhält. Man kann ja später immer noch die volle Größe zeigen. Wie und wo kann ich das ändern? (Ich habe mit Firebug und den vielen vererbten Klassen nicht mehr wirklich durchgesehen und ahne das sich eventuelle änderungen dann auch aufs responsive-design runterbrechen könnten)

    Auch ein Beispiel wo das unschön aussieht: http://www.medienvirus.de/kontakt/

    3.) Die PrettyPhotobox funktioniert auf bestimmten Seiten nicht wie sie sollte und wie ich es normalerweise kenne: (http://www.medienvirus.de/portfolio-item/roadrunners-club-berlin/)

    – So taucht mal das Expand-Imagesymbol auf, mal nicht

    – An manchen Stellen ist der schliessen Button abgeschnitten (FF 20, Mac OS X 10.8.3)

    – Das Expandimagesymbol expandiert nicht auf die originalgröße, sondern auf einen zwischenwert, was bei einem websiteportfolio nicht gut ist

    – Die Box übernimmt keine Alt- und Titletags.

    Danke vorab für jeden Support!

    LG

    Jens

    #118249

    Also note the upwards pointing arrow at the bottom of image thumbnails. Nice to see that removed if there is no title and excerpt as I think it then serves no purpose other than to be purely cosmetic.

    #118248

    Why not on rollover? Place the title & caption bottom left – in my opinion the ideal UI direction. It is terribly common for WP themes to show info only on rollover (although they are normally centre and this theme contains an icon centre) so it’s just placed elsewhere… being responsive and with thumbnails scaling I’m not sure about fitment issues at min sizes.

    Anyway, looking forward to the update! Cheers.

    #23071
    dkhollen
    Participant

    Hello,

    I would like to removed the featured image from the top of posts / portfolio item pages. I want to keep the featured images on the blog and portfolio pages as thumbnails, but remove them from the posts and item pages. Is this possible?

    I was also wondering if it is possible to format the size of the thumbnails on the blog page when in grid view to all be the same size? I don’t mind if images get cropped, I just would like them all to be the same dimensions (as it stands, some are square, some are rectangular).

    My website is http://hollenberg.tv

    Thank you for your time.

    #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

    #117862

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

    #116575

    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

    #117550

    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

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

    #117588

    In 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'))

    #116434

    In reply to: Blurred Thumbnails

    Hey!

    Great :)

    Best regards,

    Peter

    #116433

    In 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.

    #116926

    In 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

    #117496

    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.

    #117494

    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:

    #117491

    danke fürs reinschauen … gewählt wurde:

    big image with thumbnails bellow

    medium 300×300

    5 columns

    lightbox yes

    http://tinyurl.com/bvt7dx4

    #117490

    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).

    #117381

    In 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">  &rarr;</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">  &rarr;</span></a></div>';

    #116432

    In 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.

    #116431

    In reply to: Blurred Thumbnails

    Hello, I have installed and started the plugin, but the thumbnails continuous appearing blurred….Some other suggestion?

    Thanks.

    Alexia.

    #116087

    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

    #115677

    Hey!

    Hey!

    Next update will remove the circle overlay on gallery thumbnails that interferes with the caption tooltip ;)

    Thanks for the notice!

    Regards,

    Kriesi

    #116922

    In 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

    #116998

    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&#8221; /><meta itemprop=”contentURL” content=”http://embed.wistia.com/deliveries/b44b4b0f8b44e3e14a6f2dda8441ff3b557f04ce.bin&#8221; /><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&#8221; /><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&#8243; 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&gt;

    <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&gt;

    Thanks

    #116600

    Hi,

    Other users also reported this issue. I already sent an email to Kriesi and the support team.

    Regards,

    Ismael

    #116430

    In 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

    #116731

    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

Viewing 30 results - 10,021 through 10,050 (of 10,078 total)