Viewing 30 results - 9,961 through 9,990 (of 10,066 total)
  • Author
    Search Results
  • #120757

    In reply to: shop image sizes

    Hey!

    Did you try to change the thumbnail size on the WooCommerce settings page (WooCommerce > Settings > Catalog)? Please change it if required and regenerate the thumbnails with: http://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,

    Peter

    #120875

    Hi,

    You are correct. If you measure 2 column portfolio without sidebar, the thumbnail size is 514x415px. So you need to make up your mind. If you are going to use the 3 column portfolio you can change this line on functions.php

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

    Replace it with

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

    If you like to be specific with the 2 column portfolio view without sidebars, use this instead

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

    The exact thumbnail size for 4 column portfolio inside the container is 257×183. You can modify this line

    $avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columns

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

    Cheers,

    Ismael

    #23714
    dsgnerfw
    Participant

    Is there a specific image size for the header to work properly ? or should I just change it in quick css ?

    And also for the footer area there’s a widget for Popular Recent Tags.

    And there are empty boxes or blank thumbnails to the left. How do I add images ? In the individual posts or is there something that I’m missing?

    #119747

    Hi,

    Please add this on your custom.css

    .news-thumb {
    min-width: 36px;
    min-height: 36px;
    width: 36px;
    height: 36px;
    }

    Regards,

    Ismael

    #23675

    Topic: shop image sizes

    in forum Enfold
    next_thomas
    Participant

    Hi,

    is there a way to force the products and categories thumbnails to get the same size? Ideally, they should be automatically stretched or shrinked to the correct height (or width?) so they are all well aligned in the products catalog.

    I tried the following code in the quick css

    #top.archive .thumbnail_container {

    min-height: 180px;

    max-height: 180px;

    }

    The images are well aligned, but it seems the images are cropped.

    Thanks,

    Thomas

    #119746

    Now the image of widget are so big that the description desapear. Check: http://diamondblackdever.com/blog/

    #118994

    Hi,

    Sorry for the delay.

    1.) The arrows are there and it is colored white. You can’t see it because the thumbnails have a white area at the bottom. Try to add this on your custom.css

    .avia-arrow {
    background: red !important;
    }

    2.) To fix the blurry thumbnails on your portfolio. Edit functions.php then find this code

    $avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columns

    Replace it with

    $avia_config['imgSize']['portfolio_small'] = array('width'=>257, 'height'=>183 ); // images for portfolio 4 columns

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

    3.) I can see that the background header image is fixed.

    4.) The tabs on this page (http://www.chaja-design.nl/chajanew/zakelijke-hosting/#tab-id-1) is working fine on 320px width view. I don’t have an actual mobile to check this out but I think they are ok.

    Cheers,

    Ismael

    #119349

    Glad Nick could help :)

    Let us know if you have any other questions or issues.

    Regards,

    Devin

    #119745

    This is a bug and we’ll fix it in the next update. For now you can fix it by modifying wp-contentthemesenfoldframeworkphpclass-framework-widgets.php. open up the file and replace:

    if( $slides != "" && !empty( $slides[0]['slideshow_image'] ) )
    {
    $image = avia_image_by_id($slides[0]['slideshow_image'], 'widget', 'image');
    }

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

    with

    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(), $image_size );
    }

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

    #119744

    I Do that, But not appear

    #119348

    exactly what I wanted! How do you do???? :)

    #119743

    On the right hand side of the visual editor is a wordpress meta box named “Featured Image”. If you don’t see it, go to the top right of your screen and click the Screen Options tab. Check the box for Featured Image then close the tab and you should now see the featured image box.

    You just click on Set Featured Image and it will prompt you on setting one.

    Regards,

    Devin

    #120028

    In reply to: Porfolios categories

    Re 2) – the reason is that you didn’t set portfolio thumbnails. The navigation won’t work if the portfolio items don’t have featured images ( https://kriesi.at/support/topic/portfolio-filter-not-showing-up ).

    Re 3) To display all categories doesn’t make sense if you’re using pagination (like here: http://www(dot)gt-motors(dot)fr/vehicules-sur-mesure/ ) because the filter won’t show any items if the filter criteria isn’t fulfilled. So if eg page 1 just shows cars from BMW and Jaguar and the filter navigation contains links for Fiat, Ferrari, BMW and Jaguar and the user clicks on “Ferrari” he’ll just see an empty page. This is imo more irritating than just showing all valid filter criterias. This is not a bug but an intended behavior because the isotope script ( http://isotope.metafizzy.co/ ) just rearranges/sorts all existing entries on the current page and it won’t load any content from other pages – thus if the user clicks on the filter links on page 1 it just sorts/filter all items on page 1 without loading items from page 2,3, 4, 5, etc.

    #119516

    thanks Nick, now I have a withe space between the columns, but I have also the border around the thumbnail, may I remove it?

    #119329

    In reply to: Slider Thumbnails

    Hi,

    These are my settings, http://www.clipular.com/c?6128505=FaH00TiIhz85qM1rdB3FqP886PA&f=a01381376381aa07b05e289ac58b1246

    and I have no problems seeing thumbnails http://i.imgur.com/1SJUvTh.png

    Thanks,

    Nick

    #119742

    How can I set the image as a featured?

    #119328

    In reply to: Slider Thumbnails

    Hi. I actually had the same question. I spent quite a bit of time trying to figure this out. Is there any suggestions on how we can re-enable the thumbnail setting? Thanks!

    #119741

    Hi iqueda,

    Do you mean the tabs widget? If so, the thumbnails will only appear if you set a featured image for a post.

    Regards,

    Devin

    #119525

    Hi chryseis,

    Typically, I would suggest to regenerate your thumbnails. Since you said that cause issues earlier, my guess is that a setting for the thumbnails somewhere has been changed OR that the original image sizes were generated incorrectly and that when you re-generated them the elements you had already added them to were now incorrectly sized for the container.

    So what I would suggest from here is to try deleting the photos you want to use from your wordpress Media section and then re-uploading them when you go to create the member section.

    Just make sure they are large enough for the size you are setting them for so there are no stretching issues.

    Regards,

    Devin

    #119327

    In reply to: Slider Thumbnails

    Hi,

    I am responding to you now on midnight Friday EST. If you know any support forum where the staff are such geeks as to work Friday nights, we will get even more geekier. :)

    Thanks,

    NIck

    #23423
    iqueda
    Participant

    This thumbnail don’t appear, I dont know why, but it’s like so ugly if not appear. you can see on the blog’s page of my website. See: http://diamondblackdever.com/blog/ -> The plugin are on left sidebar.

    #119514

    how can I do it?

    And another question. It’s possibile to remove the border and the shodow of the portfolio thumbnail?

    I’d like to have a result like this http://www.mottarella.com/download/thumbnail.jpg

    Thank you

    #119560

    Hi,

    If you only want to target the portfolio thumbnails, you should change this line of codes

    $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

    You may need to edit some css because it will probably resize the thumbnail but the thumbnail will inherit the size of the portfolio container.

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

    Regards,

    Ismael

    #119325

    In reply to: Slider Thumbnails

    I talked with the creator of layers slider and they said that enfold might have a skin thats being over written so the thumbnails are not showing and I need to contact you to see how I can fix this.

    #119347

    Hi,

    Anything is possible. Can you be a bit more specific about what specifically changing into what else. If you can take a snapshot of the demo portfolio page and on http://www.imgur.com (or other image storage) there are objects like little arrows you can add to the snapshot to better flush out your thought as well as convey your idea to the support team better; then just paste the link to the image here

    Please try this css. You can add it to Quick CSS located in Enfold > Styling at the bottom of the page or to the /css/custom.css

    #top .grid-content, #top .grid-entry-excerpt, #top .grid-entry-title {
    background-color: grey;
    }
    #top .grid-entry-excerpt {
    color: white;
    }
    #top .grid-entry-title {
    color:yellow;
    }

    Thanks,

    Nick

    #119324

    In reply to: Slider Thumbnails

    I don’t understand why the theme mentions premium support and i’ve asked 3 different questions in the last couple days without 1 answers. This is ridiculous

    #23307

    Topic: Slider Thumbnails

    in forum Enfold
    mdlhale
    Participant

    Hi, I have set the slider thumbnails to always show, but they still don’t show up. Is there any reason this could be happening? My client really needs the thumbnails at the bottom. Thanks.

    #23378
    Leopold_Gnosov
    Participant

    Hi!

    Ipad and iphone problems:

    1) You have to click twice on the portfolio thumbnails to open it. People don’t realize it, they click once and than they just wait, complaining about the connection speed.

    2) On the iphone, when you open full screen image, you cant leaf images by clicking on it. Its very uncomfortable to push the very small button below.

    Thank you!

    #119520

    Ps:

    Using regenerate thumbnail have completely made a mess of the blog grid…

    #23364
    chryseis
    Participant

    Hi,

    I have added a team member module in a page, I have loaded a picture, I have even used the regenerate thumbnail plugin to try to solve this problem, but no matter what, the image won’t display.

    The image appears when I am on the page builder, but not on my page online.

    I work on localhost so I can’t show you but I have just the text and no image.

    Can you fix this please?

    Kind regards,

Viewing 30 results - 9,961 through 9,990 (of 10,066 total)