Viewing 30 results - 3,541 through 3,570 (of 10,099 total)
  • Author
    Search Results
  • #868918

    Hey,

    Try the following:
    1. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
    2. Go to Settings > Media
    3. Change the entry_with_sidebar image size (increase its width / height).
    4. Regenerate the thumbnails by clicking the button at the bottom.

    Best regards,
    Yigit

    #868805

    Topic: post-thumbnails

    in forum Enfold
    Welcomesole_99
    Participant

    Hello,
    I’have a problem with the post-thumbnails on the articles.
    If I create a new article ad I insert the post-thumbnailst, I see the post-thumbnails in the article preview. But, if I then add same text on the article end check again the preview, I see that the post-thumbnails has disappeared.

    Can you help me, please?
    Thanks,
    Federico

    I solved the problem finally. By adding the code snippets to the ENFOLD installation:

    add_filter(‘avf_blog_style’,’avia_change_category_blog_layout’, 10, 2);
    function avia_change_category_blog_layout($layout, $context){
    if($context == ‘archive’) $layout = ‘blog-grid’;
    return $layout;
    }

    add_filter(‘avf_blog_style’,’avia_change_tag_blog_layout’, 10, 2);
    function avia_change_tag_blog_layout($layout, $context){
    if($context == ‘tag’) $layout = ‘blog-grid’;
    return $layout;
    }

    The code snippets in my child theme folder WERE IGNORED. WHY WAS THIS? It’s been a source of major frustration! And of course if I update the theme I will lose the custom mods.

    Also is there a way to define the same image thumbnail sizing for images on the archive pages? They are being generated very large and resized in the browser (inefficient) > custom image size as within blog component is obviously being ignored. A fix?

    UPDATE: If I DISABLE THE advanced layout editor option under blog layout and use the ie. ‘grid’ layout instead then the categories show correctly (with grid)! With a sidebar!

    I have now just to change the default 3 column grid layout to 2 columns on the AUTO-GENERATED blog page – link below in private content. What php file do I edit?

    I don’t like this solution as much as the other as I’m not able to control the image thumbnail size that is generated by the theme / WP so I’ve reverted to the custom layout for now and trying to find a solution.

    MysticMimi
    Participant

    Two things…. one:
    I’m getting this error message:
    Warning: Missing argument 3 for avia_woocommerce_gallery_thumbnail_description(), called in /home/aristag0/public_html/omgwebdesigners.com/wp-includes/class-wp-hook.php on line 298 and defined in /home/aristag0/public_html/omgwebdesigners.com/wp-content/themes/enfold/config-woocommerce/config.php on line 1360
    https://www.omgwebdesigners.com/product/womens-stretchy-pants/

    Second, on the site, it is not showing that I should update the theme. However, I see that you are already up to 4.1, and I am running 3.8. Why is it not an option to update on the WordPress site?????

    Please help!!!!

    #868376
    B-LILT
    Participant

    I recently closed out a support topic about some changes to the portfolio grid.
    https://kriesi.at/support/topic/thumbnails-are-not-all-same-size-in-portfolio-grid/#post-859421

    You guys corrected the code for me and fixed the problem (yay), but I want to adjust the color of the hover block and text. However, I’m reluctant to change any of the CSS you put in. How do I modify it so that the block is black and the text color is #81eac2? See below for the code being used.

    .grid-content {
    display: none;
    opacity: 0;
    top: -150px;
    position: relative;
    width: 100%;
    }

    .grid-entry:hover .grid-content {
    display: block;
    opacity: .6;
    }

    .grid-entry .inner-entry {
    padding: 40px 30px 0 15px;
    border: none;
    box-shadow: none;
    }

    .grid-entry-title {
    font-size: 18px;
    }

    #868046

    In reply to: Blog text over running

    Hi dvus4l,

    Yes, the images need to be cropped then, if the sizes are all over the place, otherwise you will get the thumbs that will be in all shapes and sizes and nothing will align properly.

    This plugin can help

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #867850

    Topic: Load on same page

    in forum Enfold
    ccyran
    Participant

    Hey guys,

    Is it possible for enfold to load like this?
    http://convoy.me/#!/works

    So when you click on a thumbnail, it loads to the next content, but within the same page you were already in.

    Thanks!
    Chris

    #867192

    Hi!

    To remove featured images from all post page please try this code in your functions.php

    //--------------------------------------------------------
    // PHP function - Remove featured image on all post page
    //--------------------------------------------------------
    
    function wordpress_hide_feature_image( $html, $post_id, $post_image_id ) {
      return is_single() ? '' : $html;
    }
    // add the filter
    add_filter( 'post_thumbnail_html', 'wordpress_hide_feature_image', 10, 3);

    Best regards,
    Vinay

    #867106

    Hey Jason,
    Your YouTube gallery plugin happens to use the same lightbox script and same classes as the Enfold lightbox, so there is a conflict.
    The best solution I have come up with so you can still use both is to hide the lightbox controls so your customers won’t keep clicking the arrows and see the videos:

    .mfp-arrow, .mfp-bottom-bar {
        display: none !important;  
    }
    .mfp-figure img {
    pointer-events: none!important; }

    but this is not perfect because if you have more than one image for your products they won’t see them without having to click the additional thumbnail.

    Best regards,
    Mike

    #866530
    stephanedwards
    Participant

    I added a Tab Section to the page listed in Private Content and it is totally unformatted. I am wondering if there is a quick css that could be effecting it. below is what I have in my quick css.

    .slide-meta { display: none; }

    .fake-thumbnail .slide-image{
    display: none;
    }

    .news-thumb {
    display: none;
    }

    span.news-time {
    display: none;
    }

    .main_color table caption, .main_color tr:nth-child(even), .main_color .pricing-table>li:nth-child(even) {
    color: inherit!important;
    }

    .main_menu ul:first-child > li > a { padding: 0 20px!important; }

    .content {
    border: none;
    }

    .content, .sidebar { padding-top: 50px; padding-bottom: 10px; }

    .avia-post-nav {
    display: none !important;
    }

    td { border-style: none; }
    tr:first-child td { border-top-style: none; }
    tr td:first-child { border-left-style: none; }
    .alternate_color tr:nth-child(odd) { background: #111111; }

    .content, .sidebar { padding-top:40px; padding-bottom: 10px; }

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .container {
    width: 95%;
    max-width: 95%;
    }
    }

    div#header_main_alternate {
    min-height: 38px;
    }

    #main>.fullsize>.container>.content {
    padding-top: 0;
    }

    .av-masonry-entry .av-masonry-entry-title {
    margin: 0;
    font-size: 12px;
    color: ;
    }

    #866137

    Hi Ismael,
    now i´m very sorry…i forgot to tell that i build the product with the advanced editor and i choose a gallery modul, Big picture with thumbnail. The gallery is nothing from woocommerce it´s from enfold. Is there a possibility to have the thumbails at the right sight? Plz… :-)
    Best regards,
    Alexander

    #865786

    Hello Victoria,

    I am using the normal Enfold theme and I am havig the same problem with my ‘Portfolio Grid’ when using a thumbnail setting bigger then the screen can handle. Once the screen is to small the thumbnail becomes a white 2px high bar.

    I have removed all the CSS but I still have the same problem.

    Best regards,
    Christian Prater

    #865667

    Hi, thank you for this update.
    The variation thumbnails still do not load under the main image:

    Can you help me?

    #865522

    In reply to: All images same size

    Hey Darren,

    This useful article will be great to you: http://www.wpbeginner.com/plugins/regenerate-thumbnails-new-image-sizes-wordpress/

    Best regards,
    John Torvik

    #865273

    What does this error mean? Did you log in to my website, to wp-admin?

    This is the page: http://truenaturetrails.com/home/?preview_id=11&preview_nonce=53b291d1bf&_thumbnail_id=-1&preview=true. This link is a copy of what I see in my browser when I am logged in op wp-admin. All my pages are hidden because my website is not finish yet. So you have to log in first to see what I mean.
    Thanks for your help!

    #865177
    Wolf
    Participant

    Hello,

    I used to have my thumbnails in a 3×2 aspect ratio.
    I got the solution from this topic: https://kriesi.at/support/topic/single-autor-small-preview-pic-aspect-ratio/

    .blog-meta, .blog-meta a, .blog-meta img {
    width: 220px !important;
    max-width: 220px !important;
    max-height: 170px;
    height: 170px;
    border-radius: 0px !important;
    }

    and:
    add_theme_support(‘avia_template_builder_custom_css’);
    add_filter(‘avf_blog_style’,’avia_change_category_blog_layout’, 10, 2);
    function avia_change_category_blog_layout($layout, $context){
    if($context == ‘archive’) $layout = ‘single-small’;
    return $layout;
    }
    add_filter(‘avf_blog_style’,’avia_change_tag_blog_layout’, 10, 2);
    function avia_change_tag_blog_layout($layout, $context){
    if($context == ‘tag’) $layout = ‘single-small’;
    return $layout;
    }

    add_filter( ‘avf_modify_thumb_size’, ‘enfold_customization_modify_thumb_size’, 10, 1 );
    function enfold_customization_modify_thumb_size( $size ) {
    $size[‘square’] = array(‘width’=>220, ‘height’=>150);
    return $size;
    }

    I removed all my plugings recently because https://kriesi.at/support/topic/catchable-fatal-error-when-use-pages-of-search-results/

    and now it doesn’t work anymore, can you help?

    Nevermind, it’s solved

    • This topic was modified 8 years, 6 months ago by Wolf.
    #864688

    Hey Alexander,

    Thank you for using Enfold.

    Please try the following css codes.

    .woocommerce-product-gallery__image {
        float: left;
        width: 63%;
        margin-right: 2%;
    }
    
    .woocommerce-product-gallery__image + .thumbnails {
        width: 35%;
        float: left;
    }
    
    #top .single-product-main-image .thumbnails a {
        width: 100%;
        margin: 0 4px 4px 0;
        padding: 4px;
    }
    
    div.product div.images div.thumbnails {
        padding-top: 0;
        margin: 0;
    }

    Adjust the values as needed.

    Best regards,
    Ismael

    #864681

    Hey breezemedia,

    Thank you for using Enfold.

    1.) Please provide a link to the page with the “content-fields”. Are you referring to the custom fields? Please note that custom fields require the get_post_meta function.

    // https://developer.wordpress.org/reference/functions/get_post_meta/

    2.) You can adjust the thumbnail size with the following css code.

    .page-thumb img {
        width: 50% !important;
        margin: 0 auto;
        display: block;
    }

    3.) Set the Enfold > Header > Header Title and Breadcrumbs to display the title.

    Best regards,
    Ismael

    #864393

    In reply to: Gallery Grid sorting

    Hi,

    The galleries’ “Gallery Preview Image Size” settings is set to “No Scaling”, that’s why the grid is not aligning properly. You should set the “Preview Image” or thumbnail to a smaller version of the actual image. Users can access the original or larger image in the lightbox. ( see private field )

    Best regards,
    Ismael

    #864295

    Hey Perry,
    How about using the Gallery element with the style set to: “Big image with thumbnails below”
    2017-10-14_104019

    Best regards,
    Mike

    #863620
    nicocreazy
    Participant

    Hi,
    I would like to know how to change the appearance animation of the thumbnails in Masonry Gallery?
    There is an animation tab for columns but not for Masonry Galley…

    I would like to have juste bottom-to-top effect, how to do this, please?

    Thank you very much in advance

    #863518
    louie
    Participant

    Hello,
    I recently installed a plugin called RealtyPress (for Canadian IDX real estate listings).
    This plugin automatically creates a new page for each listing which includes thumbnail photos and a slider.
    The problem is that none of the photos show up in the slider. Here is an example:
    http://www.shopbetterhomes.com/listing/729-grand-banks-drive-waterloo-ontario-n2k-4m2-18648777/
    It is my understanding that this plugin utilizes BX Slider and that there is a conflict with Enfold.
    I have contacted the plugin developer and they directed me to this solution:
    https://kriesi.at/support/topic/disable-image-overlay-function/#post-693128
    I have tried this solution along with many variations and have had no success. This plugin is very important to our website and it is the best of a handful of Canadian plugins. I don’t want to abandon Enfold, but it may be necessary if I can’t get this issue resolved.
    Your help would be greatly appreciated!

    #863138

    Hey MichaelAlbany,

    Thank you for using Enfold.

    The lightbox script is using the “large” thumbnail size so you can adjust that in the Settings > Media panel. After the size adjustment, you have to regenerate the thumbnails or upload the images again. Use the following plugin.

    // https://wordpress.org/plugins/force-regenerate-thumbnails/

    Best regards,
    Ismael

    #863091
    timkeeley
    Participant

    Hi, when I create a standard gallery or a masonry gallery, the thumbnails show fine, but the larger images in the lightbox are stretched with images that are in the portrait orientation. landscape images come out fine. I have regenerated all thumbnails, but the problem persists.

    See link for example.

    #862200

    I found on another post you can use the portfolio shortcode in a sidebar text widget which has worked quite well!
    …but I would still like to know why the regenerate thumbnail isn’t working for future reference, many thanks

    #861269
    Kahil
    Participant

    THIS IS NOT A SUPPORT REQUEST, IT’S JUST THE TIP BRO
    Like many others, I am using the advanced layout builder for my WooCommerce product pages. For me, the default layouts with a standard setup weren’t working for my needs. For those interested, here is some code you can use to create a custom shortcode to throw in the code widget which will automatically call and display the featured graphic in much the same way the default setup does, but with an added bonus of slapping on a sale badge if the product is on sale. Note that I am also using ACF (Advanced Custom Fields) with my setup to get specific extras. For instance, in this example, I use it to add specific sale details on the sale badge like “SAVE 10%”. Otherwise, it will just say “SALE” on the badge. If you aren’t using ACF, I highly recommend it if you plan to add a lot of customizations to your site in general.

    As always, place this code in your child theme’s functions.php file and customize as needed. For this, I have two options… One for a product image that can be clicked on to view the larger graphic in a lightbox, and another that is just an image. I use both options depending if the item is a physical product or a service.

    Here are examples…
    Custom Product Images w/Sale Tags

    // Shortcode for product image
    function show_product_image() {
    	global $product;
    if ( $product->is_on_sale() ) {
    	$sale_badge_bg = "[direct link to your sale badge/ribbon graphic]";
    	$sale_tagline = get_field('sale_tag');
    	if ($sale_tagline) {
    	$sale_tag = " - " . $sale_tagline;
    	$sale_badge = "<h2 style='background: url(".$sale_badge_bg.") no-repeat scroll right center; background-size:cover; width: max-content; text-align:left; color:#f5f5f5; font-size:22px; padding:13px 20px 13px 13px; position:absolute; top:-4px; z-index:10;'>SALE". $sale_tag ."</h2>";
    	}}
    	$product_image = get_the_post_thumbnail( $post_id, 'shop_catalog' );
    	$product_image_large = get_the_post_thumbnail_url( $post_id, 'large' );
    	return '<div class="product-image avia-image-container avia-builder-el-12 el_after_av_codeblock el_before_av_hr avia-align-center no-overlay" itemscope="itemscope" itemtype="https://schema.org/ImageObject"><div class="avia-image-container-inner">' . $sale_badge .'<a rel="lightbox" data-rel="gallery-1" class="lightbox" href="' . $product_image_large . '">' . $product_image . '</a></div></div><section class="av_textblock_section " itemscope="itemscope" itemtype="https://schema.org/CreativeWork"><div class="avia_textblock text-center no-margin " itemprop="text"><p><small>CLICK TO PREVIEW</small></p>
    </div></section>';
    	}
    add_shortcode( 'product_image', 'show_product_image' );
    
    // Shortcode for nolink product image
    function show_nolink_product_image() {
    	global $product;
    if ( $product->is_on_sale() ) {
    	$sale_badge_bg = "[direct link to your sale badge/ribbon graphic]";
    	$sale_tagline = get_field('sale_tag');
    	if ($sale_tagline) {
    	$sale_tag = " - " . $sale_tagline;
    	$sale_badge = "<h2 style='background: url(".$sale_badge_bg.") no-repeat scroll right center; background-size:cover; width: max-content; text-align:left; color:#f5f5f5; font-size:22px; padding:13px 20px 13px 13px; position:absolute; top:-4px;'>SALE". $sale_tag ."</h2>";
    	}}
    	$product_image = get_the_post_thumbnail( $post_id, 'shop_catalog' );
    	return '<div class="product-image avia-image-container avia-builder-el-12 el_after_av_codeblock el_before_av_hr avia-align-center no-overlay" itemscope="itemscope" itemtype="https://schema.org/ImageObject"><div class="avia-image-container-inner">' . $sale_badge . $product_image . '</div></div>';
    	}
    add_shortcode( 'nolink_product_image', 'show_nolink_product_image' );

    I have plenty of code examples like this I can and will share provided the mods here don’t have a BF about it. ;P

    #861266

    In reply to: Blog Page Corruption

    Hi,

    Thank you for the update. I thought you’re referring to the “Featured News” section. Still, you have to remove the previous modification then use the following filter in the functions.php file to change the thumbnail size of the “news” widget.

    function ava_change_widget_thumbnail() { 
      global $avia_config;
      $avia_config['widget_image_size'] = 'medium';
      return $avia_config;
    }
    add_action('init', 'ava_change_widget_thumbnail');

    The code above will force the news widget to use the “medium” thumbnail. You may still need to regenerate the thumbnails.

    Best regards,
    Ismael

    #861259

    hmmm, i wonder if we’re miscommunicating with each other, because now I’M confused.

    firstly, i don’t want to have to use a whole plugin just to change this one image size. i’ve seen reference to the plugin you mention around on this forum, and i looked in to it, but it hasn’t been updated in a while & wordpress gives a warning about that. besides, the screenshots of it look very confusing.

    so, i’ll try to re-explain what we’re trying to accomplish…

    on pages with sidebars, and only there, i have placed the Enfold Child Theme Latest News: Featured News widget.

    by default, when rendered on page, this gives the feature image thumbnail at a very tiny size, floated left, with the title & date to its right.

    we want instead for this to have a large image (as large as will fit within the padding of the sidebar), not floated, & the title & date below it.

    i’ve changed the css to make it look like this, but as you know, the actual image size is not changing with that, thus it being blurry.

    SO, how can i change this one particular image size?

    note, the php code i ‘had’ in the functions.php (mentioned above) DID work for changing this image size correctly; but the bad side-affect was that it also changed the wp-admin thumbnails.

    i do NOT want any of the wp-admin pages to change.
    i do NOT want to change the feature image single latest blog post on the homepage either (i only mention this because it also uses the feature image of the latest blog post, but not from the widget, from the page editor).

    does that make more sense?
    thanks.

    #861251

    Hi,

    by resetting the widget thumbnail size, i assume you mean to take the custom code out of the functions.php file, & remove my custom css. doing this puts the sidebar widget back to its default tiny thumbnail.

    Yes, that’s what I meant. Are you referring to the “Featured News” section when you say “sidebar widget”? Isn’t that a blog posts element? It’s going to use another thumbnail if you change the “Preview Image Size” settings. If you need to control the size of the available thumbnails, just install the following plugin then go to the Settings > Media panel.

    // https://wordpress.org/plugins/simple-image-sizes/

    Best regards,
    Ismael

Viewing 30 results - 3,541 through 3,570 (of 10,099 total)