Viewing 30 results - 4,081 through 4,110 (of 10,101 total)
  • Author
    Search Results
  • #784228
    kbarranco
    Participant

    I would like to keep the lightbox effect on two pages (WEDDING & SPECIAL OCCASIONS).

    on Woo Single product pages, I would like no lightbox but just the standard hover over a thumbnail and it becomes the large image.

    #784216
    waveshaper
    Participant

    Hi there

    After upgrading to the latest WooCommerce I have spaces between my product thumbnails.
    I have tried re adding them, still they give spaces.

    I followed mensmaximus’s fix as my Main thumbnail was blurred and it fixed that.
    Spaces between product thumbnails <a href='https://automattic.pxf.io/y2XdbN/' target='_blank' rel='nofollow'/ rel=Woocommerce enfold" />

    Thank you for your time.

    • This topic was modified 8 years, 12 months ago by waveshaper.
    #784142

    Sure, it’s:
    http://impalalily.cloudlevel-sites-01.co.uk/product/jimmy/

    As you will see the images all have the hover effect normally reserved for the main image (I think), and the thumbnail gallery doesn’t exist so it seems to be a php issue? I must admit I’m not that familiar with the inner workings of Enfold Woocommerce pages…

    Yes, I’m treating this and the child theme as a ‘band-aid’. I’ve checked on this forum but I can’t see any indication as to when this might be fixed properly. It has been over 3 weeks – seems like a long time…

    #784136

    @Phet, thanks for your suggestion but I actually don’t have a .thumbnails class.

    <figure class="woocommerce-product-gallery__wrapper">
    <div class="woocommerce-product-gallery__image" data-thumb="...">
    <a class="lightbox-added" href="..." rel="product_images[grouped]">
    <img class="attachment-shop_single size-shop_single wp-post-image" src="..." alt="" title="" data-src="..." data-large_image="..." data-large_image_width="1024" data-large_image_height="1024" srcset="..." sizes="(max-width: 450px) 100vw, 450px" style="" width="450" height="450">
    <span class="image-overlay overlay-type-image" style="left: 0px; top: 5px; overflow: hidden; display: block; height: 387px; width: 397px;">
    </a>
    </div>
    #784057

    Hey Elsmore01, it is probably coming from the same issue. I’m not sure at a 100% if your issue was the same as mine, but my thumbnails were different sizes, depending on the size of the original image I uploaded. I chose to change the height of the div that contained those images with some CSS :

    .thumbnails .woocommerce-product-gallery__image a.noHover.noLightbox {
        height: 5.7em;
    }

    The height value, will depend on your layout, so you will need to adjust.

    Hope this helps!


    @mensmaximus
    , you’re a beast!! Thanks again for your help!

    #783998
    elsmore01
    Participant

    I had blury images which I fixed with the help of:

    WooCommerce 3.0.0/3.0.1 and the images issue

    However, the product gallery is still broken in WC3. Where I used to have thumbnails I now have larger images each the size of the main product image, all stacked vertically. Here’s an example:

    How can I fix this?

    #783989

    I have followed @Mensmaximus excellent instructions (child theme) and that has fixed my blury images. However, where I used to have a thumbnail gallery (pre-WC 3), I still have a column of images each the size of the regular product image. Is this part of the same problem? Is there a solution?

    #783940

    Hi Jordan,

    Thanks for your reply – sorry mine’s a bit late since the email from here landed in my Junk!

    The suggestions you’ve posted are good, but have made no difference. Sorry I did make a typo in my question regarding catalogue images being 45 x450px – they are 450 x 450px!

    The problem is that I have a div of about 400px sq, but when inspecting the attributes for the image used it’s set at 120px sq. I’ve included the source for this below (private) plus a link to the web page so you can see the issue yourself since there is a live one up online now…

    It’s as if it is selecting the wrong size from srcset maybe? Like instead of using the catalogue image here that is available, it’s selecting the thumbnail. I could make the thumbnail size huge, but that would then slow down pages with lots of thumbnails…

    Thanks again for your help!

    • This reply was modified 8 years, 12 months ago by alsterb.
    #783923
    Abbe
    Participant

    Hi,
    We’re developing a corporate site and we are facing a big problem trying to translate the taxonomy base slug.
    Our thought was that if we registered our custom post and taxonomies the way u register portfolio post type we would be able to translate the base slug… but it didn’t worked. Later I tried translating the portfolio base and it doesn’t work either.

    I have the latest update of enfold and WPML installed.
    Example of our CPT & Tax:

    add_action('init', 'news_register_extended', 999 );
    function news_register_extended()
    {
        global $avia_config;
    
        $labels = array(
            'name' => _x('News Items', 'post type general name','avia_framework'),
            'singular_name' => _x('News Entry', 'post type singular name','avia_framework'),
            'add_new' => _x('Add New', 'portfolio','avia_framework'),
            'add_new_item' => __('Add New Item Entry','avia_framework'),
            'edit_item' => __('Edit News Entry','avia_framework'),
            'new_item' => __('New Entry','avia_framework'),
            'view_item' => __('View News Entry','avia_framework'),
            'search_items' => __('Search News Entries','avia_framework'),
            'not_found' =>  __('No News Entries found','avia_framework'),
            'not_found_in_trash' => __('No News Entries found in Trash','avia_framework'),
            'parent_item_colon' => ''
        );
    
        $permalinks = get_option('avia_permalink_settings');
        if(!$permalinks) $permalinks = array();
    
        $permalinks['news_permalink_base'] = empty($permalinks['news_permalink_base']) ? __('news-item', 'avia_framework') : $permalinks['news_permalink_base'];
        $permalinks['news_entries_taxonomy_base'] = empty($permalinks['news_entries_taxonomy_base']) ? __('news_entries', 'avia_framework') : $permalinks['news_entries_taxonomy_base'];
    
        $args = array(
            'labels' => $labels,
            'public' => true,
            'show_ui' => true,
            'capability_type' => 'post',
            'hierarchical' => false,
            'rewrite' => array('slug'=>_x($permalinks['news_permalink_base'],'URL slug','avia_framework'), 'with_front'=>false),
            'query_var' => true,
            'show_in_nav_menus'=> true,
            'taxonomies' => array('post_tag'),
            'supports' => array('title','thumbnail','excerpt','editor','comments')
        );
    
        $args = apply_filters('avf_news_cpt_args', $args);
        $avia_config['custom_post']['news']['args'] = $args;
    
        register_post_type( 'news' , $args );
    
        $tax_args = array(
            "hierarchical" => true,
            "label" => "News Categories",
            "singular_label" => "News Category",
            "rewrite" => array('slug'=>_x($permalinks['news_entries_taxonomy_base'],'URL slug','avia_framework'), 'with_front'=>true),
            "query_var" => true
        );
    
        $avia_config['custom_taxonomy']['news']['news_entries']['args'] = $tax_args;
    
        register_taxonomy("news_entries", array("news"), $tax_args);
    
        //deactivate the avia_flush_rewrites() function - not required because we rely on the default wordpress permalink settings
        remove_action('wp_loaded', 'avia_flush_rewrites');
    }

    Please help : ) and thank you for your effort with this theme.

    #783871

    Hi,

    Install the following plugin then go the Settings > Media panel. Look for the “portfolio” thumbnail and set the “cropping” parameter to “No”. Update then regenerate the thumbnails afterwards.

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

    Best regards,
    Ismael

    #783822

    Hi,

    Please replace the filter with the following. We are going to use the “portfolio” thumbnail which has a maximum dimension of 450x450px.

    function avf_featured_image_rss($content) {
      global $post;
      if ( has_post_thumbnail( $post->ID ) ){
        $content = '<div>' . get_the_post_thumbnail( $post->ID, 'portfolio' ) ) . '</div>' . $content;
      }
      return $content;
    }
    add_filter('the_excerpt_rss', 'avf_featured_image_rss');
    add_filter('the_content_feed', 'avf_featured_image_rss');

    Best regards,
    Ismael

    #783805

    Hi!

    Thank you for the info. Please edit the config-woocommerce > config.php file then look for this code around line 1425:

    function avia_woocommerce_gallery_thumbnail_description($img, $attachment_id, $post_id, $image_class )
    

    .. replace it with:

    function avia_woocommerce_gallery_thumbnail_description($img, $attachment_id, $post_id = "", $image_class = "" )
    

    Or post the FTP details here and we’ll edit the file.

    Regards,
    Ismael

    #783673

    In reply to: Portfolio Raster

    Hi,

    ich kann dir leider nicht viel anderes als bisher sagen. WordPress funktioniert nun einmal so, dass es deine Bilder automatisch abschneidet. Das wird dir mit jedem anderem Theme auch passieren. Es ist einfach WP standard. Bitte nutze als das o.g. Plugin. Was du auch machen könntest, ist die Bildgröße manuell zu verändern: https://kriesi.at/support/topic/enfold-image-sizes/#post-336176
    Bitte hinterher ein regenerate deiner Thumbnails machen.

    Gruß,
    Andy

    #783655
    ccyran
    Participant

    Hey guys!

    Is there CSS to create a parallax effect on the homepage of my site?

    So the text stays in a fixed spot instead of scrolling up, while the thumbnails come up from below.

    website: ccyran.com

    Thanks!
    Chris

    #783651
    kylerollins
    Participant

    Hi,

    Need help.
    I have a gallery with some images with youtube links (with the help of the WP Gallery Custom Links plugin).
    it work almost everything except when i click on the main image. The link will open the youtube instead of the lightbox.
    If i navigate on the images when the lightbox is active the video plays inside the lightbox. And if i click on the thumbnail images also open the lightbox.

    The only issue is the main image thet not open the video on the light box.

    Can you guys help solve it.

    Thanks

    #783408
    Mathuseo
    Participant

    Hi,
    I use the Masonry element to show my portfolio entries for a photography website.

    If a user clicks on an image (thumbnail of each portfolio entrie) it opens the page for the portfolio item.

    Is it possible that the image opens? As popup in a shadowbox as in “Masonry Galery” for example?

    I need to use “Masonry” because of the funtioncality for sorting and get the portfolio entries but I need the popup functionality of “Masonry Galery” as well. So is it possible to combine both in a form I described?

    Thanks

    #783385

    In reply to: Design problems

    Hi we did what you advised. There is no chaince under the product image are the thumbnails gone. and at the product page is the text too big.
    i made some screen dumps to show what is wrong. Please help!

    #783365
    gonzobrum
    Participant

    Hi

    My clients site is having some ongoing issues with the product gallery (since the last update). Previously the images were displayed in thumbnails underneath the main product image, all looked sharp and correct.

    Now the images are blurry and show as a column of large images. Here’s an example:

    If you could help that would be great.

    BeardBros
    Participant

    I am getting these warnings when chosing a product in my shop:

    Warning: Missing argument 3 for avia_woocommerce_gallery_thumbnail_description(), called in /var/www/beardbros.dk/public_html/wp-includes/class-wp-hook.php on line 298 and defined in /var/www/beardbros.dk/public_html/wp-content/themes/enfold/config-woocommerce/config.php on line 1360

    Warning: Missing argument 4 for avia_woocommerce_gallery_thumbnail_description(), called in /var/www/beardbros.dk/public_html/wp-includes/class-wp-hook.php on line 298 and defined in /var/www/beardbros.dk/public_html/wp-content/themes/enfold/config-woocommerce/config.php on line 1360

    Example:. http://beardbros.dk/produkt/beard-bros-limited-edition-emalje-pin/

    Wordpress Version 4.7.4
    WooCommerce Version 3.0.4
    Enfold Version Version 3.8

    Hey CIBaby74,

    Yes, only replace the enfold theme, the child theme should not be replaced. If this error still appears, try adding this code at the bottom of functions.php:

    global $woocommerce;
    if( version_compare( $woocommerce->version, '3.0.0', ">=" ) ) {
    	function avia_woocommerce_gallery_thumbnail_description($img, $attachment_id, $post_id, $image_class ) {
    	    return $img;
    	}
    	function avia_woocommerce_post_thumbnail_description($img, $post_id){
    	    return $img;
    	}
    }

    Let us know if this helps. :)

    Best regards,
    Nikko

    CIBaby74
    Participant

    Warning: Missing argument 3 for avia_woocommerce_gallery_thumbnail_description() in /home/coneyislandtran/public_html/wp-content/themes/enfold/config-woocommerce/config.php on line 1351
    Hi
    I have a website using enfold. I had gotten the above warning… I have read here to re-upload the theme via FTP to the server. I just purchased 4.0 as I did not have any theme files at my disposal. Do I upload the whole enfold folder to the server and overwrite the exciting data in the existing enfold folder. I also have an enfold child theme folder.. nothing should be uploaded here?

    Stan

    #783094
    fabimeneses
    Participant

    Hello WooCommerce

    I’ve upgraded a website to WooCommerce 3.0 and then 3.0.3

    But instead of seeing Widgets on my Shop Sidebar, I’m seeing PHP error messages.

    Warning: Missing argument 3 for avia_woocommerce_gallery_thumbnail_description() in /home/website/public_html/wp-content/themes/enfold/config-woocommerce/config.php on line 1360

    Warning: Missing argument 4 for avia_woocommerce_gallery_thumbnail_description() in /home/website/public_html/wp-content/themes/enfold/config-woocommerce/config.php on line 1360
    Is this a problem with WooCommerce or with my theme Enfold?

    Thanks in advance.

    #782963
    mrkuji
    Participant

    Later wordpress supports pdf thumbnails… however on latest Enfold 4.x cannot upload a pdf into a gallery or an image block.. It goes through the process but will not link to the pdf – gallery is worse as it contains no images even when it shows the thumbs on import, on save they are gone… using an image block you get the thumbnail – you ask for linking to pdf file but the linking is gone after saving out of the configurator.

    #782892

    @ollihb ich habe mir das mal genauer angesehen. Die neue WooCommerce Lightbox und die Flexslider Funktion gehen immer davon aus, das dass Hauptbild mit in der Gallerie angezeigt wird (als Thumbnail). Bei Enfold ist das nicht der Fall. Da das Hauptbild aber mit im div der css Klasse woocommerce-product-gallery steckt, wird es mitgezählt. Somit ist bei einem Klick der index um eins verschoben wodurch das Bild davor gezeigt wird. Da hilft nur eine Änderung der Anzeige, denn im WooCommerce single-product.js Script kann ich das Target nicht per Monkey Patch korrigieren (z.B. um nur das .thumbnail div in enfold zu berücksichtigen)

    #782849

    @ollihb ich habe das anders verstanden. Wenn ich eine Variation auswähle und auf das Vorschaubild (lupe) des Hauptbildes klicke, wird das korrekte Bid gezeigt. Das Gallerie Problem sehe ich jetzt auch. Das dürfte an der fehlenden Gallerie Unterstützung liegen, da bei anderen Themes zusätzlich zur Gallerie immer auch das Hauptbild in der Thumbnails erscheint.

    #782772

    @mensmaximus
    Ja, wirklich klasse. Ein kleiner Bug noch:
    kombiniere ich ein Varianten-Produkt mit einer Produktgalerie, bekomme ich beim klick auf ein thumbnail in der productgallery zwar eine Lightbox, leider aber immer mit dem Bild als Inhalt, das eine ID kleiner hat als das angewählte.

    Ein Beispiel hier. http://rl.blumen-feddermann.de/produkt/motiv-karte/

    #782734

    Hi!

    We tried adding the script at the end, but nothing happen (the titles and texts below the thumbnails continue at different heights). Any ideas?

    Thank you very much! :)

    • This reply was modified 9 years ago by itcerp.
    #782727
    mark_bingley
    Participant

    Running:
    WP 4.7.4
    Enfold: 4.0.5
    Woocommerce: 3.0.4

    After the latest update to WP, my thumbnail images on the product pages are all messed up.

    Example: http://www.thefoundrydesign.com/product/marcia-grey-snake/
    Out of position and quite large.

    Example 2:

    Huge thumbnail for second image

    Is there a quick fix for this? I cant find why the addtional images are so big all of suddern.
    I have recreated the thumbnails this morning, so that cant be the issue.
    Anybody have any thoughts on what might be causing this?

    #782653

    In reply to: Lightbox image size

    Hey Swarez,

    Thank you for using Enfold.

    Are you referring to the following image? (see private field)

    The “avf_avia_builder_gallery_image_link” filter is designated for images inside the gallery element. If you want to adjust the default lightbox thumbnail size, go to the Settings > Media panel then adjust the dimension of the “Large size” thumbnail. Regenerate the images afterwards.

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

    Best regards,
    Ismael

    #782531

    @rvdnol nothing is lost and nothing is damaged for ever. Once Enfold will get a WooCommerce 3 compatibility update you will regenerate the thumbnails again.

Viewing 30 results - 4,081 through 4,110 (of 10,101 total)