Viewing 30 results - 9,931 through 9,960 (of 10,078 total)
  • Author
    Search Results
  • Hi cogitocorp,

    I didn’t see any issue on my end or another computer I asked for it to be tested on.

    Regards,

    Devin

    indy1003
    Participant

    Is it possible to align the portfolio thumbnails to right instead of underneath? I am using the 2/3 portfolio gallery

    #24145
    ppc1337
    Participant

    Hey,

    I was wondering how I can change the View of the Mainpage of the blog. Normaly there is the content stripped after a few words. How can I change it to an excerpt, e.g. without any picture I used at the beginning of a post?

    It should look like that at first the post thumbnail is shown, then only the excerpt (without any html and pictures and other stuff) and then a link, where the user can go to the whole post.

    Would be great if you can help!

    #24142
    jomcot
    Participant

    So…i’ve done everything I could to get this portfolio looking right.

    The thumbnails pictures are at 180 x 180.

    I put this code

    [av_portfolio categories='11' columns='4' items='8' contents='title' preview_mode='custom' image_size='no scaling' linking='' sort='yes' paginate='yes']

    AND the image sizes are still bigger than 180×180…. whats the ‘no scaling’ for then?…..this is crazy.

    Help please.

    #119336

    In reply to: Slider Thumbnails

    I appreciate it!

    #121497

    In reply to: Thumbs looks strange

    Hi,

    Most of your images are still 600×600 being shrunk with css to 257×257. (this time first image is at correct size) You on a shared host? Low WordPress memory allocation probably. Just re-upload the images manually, it will take 15mins. Regeneration is tricky business , seems to be working less reliably lately. The theme has been made with rectangular thumbnails in mind, so something isn’t happy. Please update the theme because with so many css changes, anything i give you would become invalid after the update.

    ==============

    If you did not make customization to theme template files then essentially yes. If you modified the template files, you will need to port the modified code from the old to the new theme. I usually use winmerge.org app (free) to compar the entire old theme folder to new theme folder and then can see line by line the differences in case i forget.

    1) download zip from themeforest.net

    2) unzip and take out the second zip

    3) unzip the second zip (called enfold) on your home computer

    4) rename folder to enfold-new (for example)

    5) using FTP connect to your website. and upload enfold-new next to the enfold theme folder currently running on your site

    6) rename the enfold theme folder to enfold-old and rename enfold-new to enfold.

    Sounds harder than it is, but this is the fastest and most painless way to do it with very little chance of a screwup.

    Thanks,

    Nick

    Hi there,

    The border CSS didn’t fix the circle thumbnail in Safari, so this code worked:

    .avia-testimonial-image img {

    border-radius: 0;

    }

    .avia-testimonial-image {

    border-radius: 0;

    }

    #121949

    In reply to: Enfold Combo Widget

    This will be fixed in the next version. Open up wp-contentthemesenfoldframeworkphpclass-framework-widgets.php and replace:

    if(!$image && current_theme_supports( 'post-thumbnails' ))
    {
    $image = get_the_post_thumbnail( get_the_ID(), $image_size );
    }

    $time_format = apply_filters( 'avia_widget_time', get_option('date_format')." - ".get_option('time_format'), 'avia_get_post_list' );

    with

    if(!$image && current_theme_supports( 'post-thumbnails' ))
    {
    $image_size = isset($avia_config['widget_image_size']) ? $avia_config['widget_image_size'] : 'widget';
    $image = get_the_post_thumbnail( get_the_ID(), $image_size );
    }

    $time_format = apply_filters( 'avia_widget_time', get_option('date_format')." - ".get_option('time_format'), 'avia_get_post_list' );

    #122262

    In reply to: Portfolio Issues

    Hi,

    Are you using the Portfolio Grid?

    You can edit config-templatebuilder > avia-shortcodes > portfolio.php, find this code

    Line 240:

    $output .= "<a href='{$link}' data-rel='grid-".avia_post_grid::$grid."' class='grid-image' title=''>".get_the_post_thumbnail( $the_id, $image_size )."</a>";

    Replace it with:

    $output .= "<a target='_blank' href='{$link}' data-rel='grid-".avia_post_grid::$grid."' class='grid-image' title=''>".get_the_post_thumbnail( $the_id, $image_size )."</a>";

    Line 242:

    $output .= "<h3 class='grid-entry-title'><a href='{$title_link}' title='".esc_attr(strip_tags($entry->post_title))."'>".$entry->post_title."</a></h3>";

    Replace with:

    $output .= "<h3 class='grid-entry-title'><a target='_blank' href='{$title_link}' title='".esc_attr(strip_tags($entry->post_title))."'>".$entry->post_title."</a></h3>";

    Regards,

    Ismael

    Any word on this issue yet?

    #119335

    In reply to: Slider Thumbnails

    Hi,

    Sorry for the delay. Trying to recreate what I made before. Please hang on a bit longer, I will look if update changed something and ask Kriesi for guidance if unable to find any changes.

    So far these are the only thumbnails I was able to display http://i.imgur.com/KEswChN.jpg

    Thanks,

    Nick

    #119334

    In reply to: Slider Thumbnails

    Any thoughts?

    #121495

    In reply to: Thumbs looks strange

    Hi,

    Please update your theme, a big update just came out to v1.5 with lots of improvements.

    —-

    You need to change ”portfolio_small” size , that’s the one for the portfolio thumbnails to 257×257 http://www.clipular.com/c?6460489=EWdVEmL1nhLiH1o9lciIRKRJG1o&f=.png (i accidently put 300×300) Also notice i clicked the button on there to make it change to blue color ‘Show in post insertion’ .. to the right and on the same line as portfolio_small.

    Try regenerating again on the bottom, and so it doesnt take forever, deselect all the various image locations and then select only the portfolio_small , and do the same for the post type portfolio items ( see image: http://www.clipular.com/c?7011155=Tr_UPcTokycneZe1kCioCh19Kkc&f=.png )

    If 1st image doesnt regenerate, just delete it and reupload it again .

    Thanks,

    Nick

    #121683

    Oops, it seems I was too fast. Forgot a step in the regenerate thumbnails plugin. It does work fine now!

    Thanks again for the help, Dude!

    #121681

    Please try following – in functions.php replace:

    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 );						// images for fullsize pages and fullsize slider

    with

    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>360 );						// images for fullsize pages and fullsize slider

    and regenerate the thumbnails with: http://wordpress.org/plugins/regenerate-thumbnails/

    #121819

    Hey.. not referencing the thumbnail size, but rather the image size within the 2/3 layout.

    http://godsfingerprints.net/portfolio-item/do-not-worry/ is an example.

    The original file is 1920×1200.. and it sizes it down to the 2/3 column, which is 666px wide. I’m just wondering if there’s any way I can increase or decrease that number. Perhaps by increasing the width of the site by a few pixels?

    Thanks again for your understanding.. very much appreciated!

    #24000

    Topic: Enfold Combo Widget

    in forum Enfold
    mirzepapa
    Participant

    Hi,

    finally pics schow up in the enfold combo widget, updating to 1.5 did the trick. But now they do not show as thumbnails, rather in full size. Any idea on how to solve this? Thanks in advance.

    Cheers, Sebastian.

    #121818

    Hi,

    tbh I’m not aware of a thumbnail size which generates images with 666px. All sizes are defined in functions.php:

    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    $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
    $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']['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)

    The portfolio uses the “portfolio” or “portfolio_small” size by default but since version 1.5 you can also choose a different thumbnail size.

    #119333

    In reply to: Slider Thumbnails

    FYI, I didn’t have any plug ins installed when having the issue and right now only have one plug in which when deactivated I still have the issue of the thumbnails not showing up.

    #121493

    In reply to: Thumbs looks strange

    Thanks

    I want to have second variant.

    So as you told i installed plugin, on Media Settings changed Thumbnail size to 257×257. Clicked to Regenerate Thumbnails. But i see message: Regenerating 2 of 76 (3)… and 1% done and i see first image image http://hotapp.org/wp-content/uploads/2013/05/template5Preview-600×430.jpg preview and nothing happend next. I clicked to Save Changes button but after refresh the Portfolio page thumb doesnt changed:(

    Maybe need recreate that post?

    #117991

    Hi,

    Can you give us a link to your website?

    Please check functions.php. Do you have this line of code? 281-321

    if(!function_exists('avia_post_nav'))
    {
    function avia_post_nav($same_category = false)
    {
    if(!is_singular() || is_post_type_hierarchical(get_post_type())) return;
    //if(get_post_type() === 'portfolio') return;

    global $avia_config;

    $same_category = apply_filters('avia_post_nav_categories', $same_category);
    $entries['prev'] = get_previous_post($same_category);
    $entries['next'] = get_next_post($same_category);
    $output = "";

    foreach ($entries as $key => $entry)
    {
    if(empty($entry)) continue;

    $tc1 = $tc2 = "";
    $link = get_permalink($entry->ID);
    $image = get_the_post_thumbnail($entry->ID, 'thumbnail');
    $class = $image ? "with-image" : "without-image";

    $output .= "<a class='avia-post-nav avia-post-{$key} {$class}' href='{$link}' >";
    $output .= " <span class='label iconfont'>".$avia_config['font_icons'][$key]."</span>";
    $output .= " <span class='entry-info-wrap'>";
    $output .= " <span class='entry-info'>";
    $tc1 = " <span class='entry-title'>".avia_backend_truncate(get_the_title($entry->ID),75," ")."</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;

    //add this line for fake. never gets executed but makes the theme pass Theme check
    if(1==2){paginate_links(); posts_nav_link(); next_posts_link(); previous_posts_link();}
    }
    }

    Regards,

    Ismael

    #119332

    In reply to: Slider Thumbnails

    Temporarily it’s at http://www.withthisring-false.info

    Thanks for looking at it!

    #121492

    In reply to: Thumbs looks strange

    Hi,

    Some of your thumbnails are 260×185 (first one -image slider os) while others are 257×257 (second, third, fourth ones).

    The best way to go about it, is to first install the Simple Image Sizes plugin ( http://wordpress.org/extend/plugins/simple-image-sizes/ ). The plugin will give you complete control over images: setting constraints for specific locations like blog, thumbnails, portfolio, gallery, shop, etc. along with the ability to set whether to crop an image or not in Settings > Media.

    Changing the dimensions of images does NOT automatically change all the images already uploaded but only affects new uploads. To change the sizes of images already uploaded, you will need to use the Regenerator – also a part of the Simple Image Sizes and found on the bottom of Settings > Media page.

    So which consistent look are you trying to achieve… the way the first image looks on that page your provided or the way second image looks?

    Thanks,

    Nick

    #121342

    Hi,

    Have you assigned the News page to be the blog in Enfold > Theme Options? http://www.clipular.com/c?6941003=Gaw-5mtW4pH-GEOD9ZyE_T_op9A&f=.png

    Are your settings in Settings > Reading (front page display) http://www.clipular.com/c?6919054=JosRzTZUT-5OncFDyuys04CjGFI&f=.png (top part) the same as here?

    How are you creating the individual image page? This one http://www.juls.ch/studios/lost/ ?

    —-

    You are setting the post as Format “image”.. Save it as : format: Regular. .. I think the image format does what it says, it displays the entire image.

    Also don’t forget that you can add the Advanced Layout option to posts as well, and that way you can add a slider in there or a gallery, so that way you will see the thumbnail first.

    Thanks,

    Nick

    #119331

    In reply to: Slider Thumbnails

    Hi,

    Please provide a url to the page so I can take a look at the code and see if you have errors coming from somewhere else. Please try deactivating your plugins as well.

    Thanks,

    Nick

    #23919

    Topic: advertise widget

    in forum Enfold
    yingfuli
    Participant

    Hi,

    Is it possible to adjust the advertise widget so it displays just one advertisement? I find two thumbnail advertisements rather limited especially considering the title option: what do you call two advertisements? Also this is important as I want to use more than one advertisements but slightly more noticable.

    Regards,

    Ying-Fu

    #120880

    Hi Merkur-Trykk,

    Ultimately you will not be able to control the sharpness that level without replacing the thumbnails that get generated by wordpress via FTP after they have been generated.

    You can use a plugin like this one to quickly modify image sizes and regenerate and play with the sizes to get the best results: http://wordpress.org/extend/plugins/simple-image-sizes/

    The wordpress thumbnail functionality is just not that great if you want zero change in your images. From the demo content you can see an example with this image:

    Fullsize: http://kriesi.at/themes/enfold/files/2011/12/dash_tresor.jpg

    Thumbnail: http://kriesi.at/themes/enfold/files/2011/12/dash_tresor-260×185.jpg

    WordPress does a slight file size reduction (which reduces quality) as well as attempts to shrink it as best it can. Even a single pixel difference can cause the thumb to have better or worse quality.

    Regards,

    Devin

    #119330

    In reply to: Slider Thumbnails

    I am having the same issue of the thumbnails not showing. I’ve duplicated the settings you have and also uploaded images on the slide page where it says Thumbnail, but still no thumbnail navigation. Any thoughts? Thanks.

    #121490

    In reply to: Thumbs looks strange

    Hi,

    Can you give us a look to your website? What thumbnails are you referring to? Portfolio? Blog?

    Regards,

    Ismael

    #121340

    Hi,

    Open loop-index.php then find this code

    echo "<div class='".implode(" ", get_post_class('post-entry post-entry-type-'.$post_format . " " . $post_class . " ".$with_slider))."'>";

    //default link for preview images
    $link = get_permalink();

    //on single page replace the link with a fullscreen image
    if(is_singular())
    {
    $link = avia_image_by_id(get_post_thumbnail_id(), 'large', 'url');
    }

    //echo preview image
    if(strpos($blog_style, 'big') !== false)
    {
    if($slider) $slider = '<a href="'.$link.'">'.$slider.'</a>';
    if($slider) echo '<div class="big-preview '.$blog_style.'">'.$slider.'</div>';
    }

    Replace it with:

    echo "<div class='".implode(" ", get_post_class('post-entry post-entry-type-'.$post_format . " " . $post_class . " ".$with_slider))."'>";

    //default link for preview images
    $link = avia_image_by_id(get_post_thumbnail_id(), 'large', 'url');;

    //on single page replace the link with a fullscreen image
    if(is_singular())
    {
    $link = avia_image_by_id(get_post_thumbnail_id(), 'large', 'url');
    }

    //echo preview image
    if(strpos($blog_style, 'big') !== false)
    {
    if($slider) $slider = '<a href="'.$link.'" rel="lightbox">'.$slider.'</a>';
    if($slider) echo '<div class="big-preview '.$blog_style.'">'.$slider.'</div>';
    }

    Please try this one. Reset Dude’s code first. Remove browser cache then reload the page.

    Regards,

    Ismael

Viewing 30 results - 9,931 through 9,960 (of 10,078 total)