Viewing 30 results - 1 through 30 (of 10,002 total)
  • Author
    Search Results
  • #1480507

    Hi,

    Thank you for the update.

    The image size settings were not being applied because of the post_thumbnail_size filter in the functions.php file. We adjusted the condition a bit.

    if( !is_singular('post') && is_page(1307) ) {
    

    (removed screenshot)

    Best regards,
    Ismael

    Hey mosaic,

    Thank you for the inquiry.

    Try to add this filter in the functions.php file to adjust the default magazine thumbnail size:

    function avf_magazine_defaults_mod( $defaults ) {
        $defaults['image_size']['small'] = 'portfolio';
    
        return $defaults;
    }
    add_filter( 'avf_magazine_defaults', 'avf_magazine_defaults_mod' );
    

    Best regards,
    Ismael

    mosaic
    Participant

    For some reason the thumbnails for my magazine element are different sizes. I’d like them all to be consistent. I thought they used to be so not sure if there’s something going wrong? Link in private content.

    #1480414

    For your information, here is the code for the content fetching :

    function fetch_oeuvre_content() {
        // Check nonce for security
        check_ajax_referer('ajax_nonce', 'nonce');
    
        $oeuvreId = sanitize_text_field($_POST['oeuvre']);
        $previousoeuvreId = sanitize_text_field($_POST['poeuvre']);
        $nextoeuvreId = sanitize_text_field($_POST['noeuvre']);
        $masonryId = sanitize_text_field($_POST['masonry']);
    
        $post = get_post($oeuvreId);
        if (!empty($post)) {
            $post_id = $post->ID;
    
            $content = do_shortcode("[jmpeynetoeuvre pid='".$post_id."' previous_id='".$previousoeuvreId."' next_id='".$nextoeuvreId."' masonry_id='".$masonryId."']"); // Get the content and apply content filters
    		
            // Prepare and send JSON response
            wp_send_json(array(
                'content' => $content
            ));
        } else {
            echo 'Definition not found.';
        }
        wp_die(); // This is required to terminate immediately and return a proper response
    }
    add_action('wp_ajax_fetch_oeuvre_content', 'fetch_oeuvre_content');
    add_action('wp_ajax_nopriv_fetch_oeuvre_content', 'fetch_oeuvre_content');

    And the shortcode that is used :

    function shortcode_jmpeynetoeuvre( $atts ){
    global $post; 
    $post_id = $post->ID;
    $atts = shortcode_atts( [
            'pid' => $post_id,
    		'previous_id' => '',
    		'next_id' => '',
    		'masonry_id' => '',
    	], $atts );
    $pid = $atts['pid'];
    $previousid = $atts['previous_id'];
    $nextid = $atts['next_id'];
    $masonryid = $atts['masonry_id'];
    	
    $classpopup = '';
    $classpopupbonus = '';	
    	
    $oeuvretitle = get_the_title($pid);
    if (get_the_post_thumbnail_url($pid, "full")) {$oeuvreimagethumb = get_the_post_thumbnail_url($pid, "full");$oeuvreimagethumbid = attachment_url_to_postid($oeuvreimagethumb);} else {$oeuvreimagethumb = '';$oeuvreimagethumbid = '';}
    if (get_field("oeuvre_annee", $pid)) {$oeuvredate = esc_html(get_field( "oeuvre_annee", $pid ));} else {$oeuvredate = '';}
    if (get_field("oeuvre_technique", $pid)) {$oeuvretechnique = esc_html(get_field( "oeuvre_technique", $pid ));} else {$oeuvretechnique = '';}
    if (get_field("oeuvre_legende", $pid)) {$oeuvrelegende = get_field( "oeuvre_legende", $pid );} else {$oeuvrelegende = '';}
    
    $oeuvreportaitpaysage = get_field("oeuvre_portait_paysage", $pid);
    if (get_field("oeuvre_image", $pid)) {$oeuvreimage = get_field( "oeuvre_image", $pid );$oeuvreimageurl = wp_get_attachment_url( $oeuvreimage );$classpopup = 'oeuvre-image '.$oeuvreportaitpaysage;} else {$oeuvreimage = '';}
    if (get_field("oeuvre_flipbook_v2", $pid)) {$oeuvreflipbook = get_field( "oeuvre_flipbook_v2", $pid );$classpopup = 'oeuvre-flipbook';} else {$oeuvreflipbook = '';}
    if (get_field("oeuvre_son", $pid)) {$oeuvreson = get_field( "oeuvre_son", $pid );$classpopup = 'oeuvre-son';} else {$oeuvreson = '';}
    if (get_field("oeuvre_video", $pid)) {$oeuvrevideo = get_field( "oeuvre_video", $pid );$classpopup = 'oeuvre-video';} else {$oeuvrevideo = '';}
    if (get_field("oeuvre_citation", $pid) == 'oui') {$oeuvrecitation = get_field( "oeuvre_citation", $pid );$classpopup = 'oeuvre-citation';} else {$oeuvrecitation = '';}
    
    $oeuvrelien = get_post_permalink($pid);
    $oeuvreslug = get_post_field( 'post_name', $pid );
    $lienetoilee = __( 'Cliquez ici pour un supplément d’âme', 'peynet');
    
    $output = '';
    
    $output .= '<div id="'.$oeuvreslug.'" class="popup-oeuvre-principale '.$classpopup.' ">';
    $output .= '<div class="avia-section main_color avia-section-default avia-no-border-styling  el_after_av_one_full  el_before_av_section  avia-bg-style-scroll av-minimum-height av-minimum-height-100 av-height-100 container_wrap fullsize"><div class="container av-section-cont-open"><div class="template-page content  av-content-full alpha units"><div class="post-entry post-entry-type-page "><div class="entry-content-wrapper clearfix jmcustompopupcontainer">';
    	
    	
    // Bloc titre, date, technique	
    $output .= '<div class="titredatetechniquecontainer">';
    $output .= '<div class="titredatetechnique">';
    $output .= '<p class="oeuvre-titre">'.$oeuvretitle.'</p>';
    if (get_field("oeuvre_annee", $pid)) {$output .= '<p class="oeuvre-annee">'.$oeuvredate.'</p>';}
    if (get_field("oeuvre_technique", $pid)) {$output .= '<p class="oeuvre-technique">'.$oeuvretechnique.'</p>';}
    if (get_field("oeuvre_legende", $pid)) {$output .= '<p class="oeuvre-legende">'.$oeuvrelegende.'</p>';}
    $output .= '</div></div>';	
    	
    //	Bloc contenu principal
    $output .= '<div class="contenuprincipaloeuvrecontainer">';
    $output .= '<div class="contenuprincipaloeuvre">';
    if (get_field("oeuvre_image", $pid)) {
    				$output .= '<div class="contenuprincipaloeuvreimage">';
    				$output.= do_shortcode ("[av_image src='".$oeuvreimageurl."' attachment='".$oeuvreimage."' attachment_size='full' src_dynamic='' copyright='' caption='' image_size='' styling='' box_shadow='none' box_shadow_width='10' box_shadow_color='' align='center' font_size='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' link='' link_dynamic='' target='' animation='no-animation' animation_duration='' animation_custom_bg_color='' animation_z_index_curtain='100' parallax_parallax='' parallax_parallax_speed='' av-desktop-parallax_parallax='' av-desktop-parallax_parallax_speed='' av-medium-parallax_parallax='' av-medium-parallax_parallax_speed='' av-small-parallax_parallax='' av-small-parallax_parallax_speed='' av-mini-parallax_parallax='' av-mini-parallax_parallax_speed='' hover='' blur_image='' grayscale_image='' fade_image='' appearance='' css_position='' css_position_location=',,,' css_position_z_index='' av-desktop-css_position='' av-desktop-css_position_location=',,,' av-desktop-css_position_z_index='' av-medium-css_position='' av-medium-css_position_location=',,,' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location=',,,' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location=',,,' av-mini-css_position_z_index='' transform_perspective='' transform_rotation=',,,' transform_scale=',,' transform_skew=',' transform_translate=',,' av-desktop-transform_perspective='' av-desktop-transform_rotation=',,,' av-desktop-transform_scale=',,' av-desktop-transform_skew=',' av-desktop-transform_translate=',,' av-medium-transform_perspective='' av-medium-transform_rotation=',,,' av-medium-transform_scale=',,' av-medium-transform_skew=',' av-medium-transform_translate=',,' av-small-transform_perspective='' av-small-transform_rotation=',,,' av-small-transform_scale=',,' av-small-transform_skew=',' av-small-transform_translate=',,' av-mini-transform_perspective='' av-mini-transform_rotation=',,,' av-mini-transform_scale=',,' av-mini-transform_skew=',' av-mini-transform_translate=',,' mask_overlay='' mask_overlay_shape='blob' mask_overlay_size='contain' mask_overlay_scale='100%' mask_overlay_position='center center' mask_overlay_repeat='no-repeat' mask_overlay_rotate='' mask_overlay_rad_shape='circle' mask_overlay_rad_position='center center' mask_overlay_opacity1='0' mask_overlay_opacity2='1' mask_overlay_opacity3='' title_attr='' alt_attr='' img_scrset='' lazy_loading='disabled' id='' custom_class='' template_class='' av_element_hidden_in_editor='0' sc_version='1.0' admin_preview_bg=''][/av_image]
    ");
    				$output .= '</div>';}
    if (get_field("oeuvre_flipbook", $pid)) {
    				$output .= '<div class="contenuprincipaloeuvreflipbook">';
    //				$output .= do_shortcode ("[real3dflipbook pdf='".$oeuvreflipbook."']");
    				$output .= do_shortcode (' [dflip id="'.$oeuvreflipbook.'"][/dflip]');
    				$output .= '</div>';}
    if (get_field("oeuvre_son", $pid)) {
    				$output .= '<div class="contenuprincipaloeuvreson">';
    				$output .= do_shortcode ("[sc_embed_player fileurl='".$oeuvreson."']");
    				$output .= '</div>';}
    if (get_field("oeuvre_video", $pid)) {
    				$output .= '<div class="contenuprincipaloeuvrevideo">';
    				$output .= do_shortcode ("[av_video src='".$oeuvrevideo."']");
    				$output .= '</div>';}
    if (get_field("sliderimages", $pid)) {	
    				$output .= '<div class="contenuprincipaloeuvreslider">';
    				$output.= do_shortcode ("[jmpeynetslider bonus='non' pid='".$pid."']");
    				$output .= '</div>';}
    $output .= '</div></div>';	
    	
    //	Bloc lien vers bonus
    $output .= '<div class="bonuslinkcontainer">';
    if (get_field("oeuvre_bonus", $pid) == 'oui') {
    $output .= '<div class="bonuslink open-popup-bonus-link" datalink="#bonus-'.$oeuvreslug.'">';
    	$output .= $lienetoilee;
    
    $output .= '</div>';
    }
    $output .= '</div>';
    	
    // Closing the main container
    
    	
    $output .= '</div></div>';
    
    	$output .= '<div class="peynetmasonry-navigation-container">';
    if($previousid)	{$output .= '<a href="#" class="type-oeuvre navigation-link" data-av-masonry-item="'.$previousid.'" data-linkcurrentmasonryid="'.$masonryid.'"> < </a>';}
    	$output .= '<div style="width:5px;"></div>';
    if($nextid)	{$output .= '<a  href="#" class="type-oeuvre navigation-link" data-av-masonry-item="'.$nextid.'" data-linkcurrentmasonryid="'.$masonryid.'"> < </a>';}
    	$output .= '</div>';
    	
    $output .= '<button title="Close (Esc)" type="button" class="mfp-close">×</button>';
    
    $output .= '</div></div></div>';	
    	
    $output .= '</div>';
    				
    return $output; 
    }
    add_shortcode('jmpeynetoeuvre', 'shortcode_jmpeynetoeuvre');

    I know it’s a lot, but I wanted to give you all the necessary elements. The ‘jmpeynetslider’ shortcode creates a content slider from an ACF WYSIWYG field filled with multiple pictures.

    Best

    #1480393

    None of the thumbnail sizes are working. I’ve tried all of them including square which is smaller than the ones you mentioned and none of them have any effect. I’ve cleared cache each time. User details in private content if you need to check.

    #1480242

    Hey mosaic,

    Thank you for the inquiry.

    Please note that the specified size of 705x705px is the maximum dimension of the thumbnail. The generated thumbnail will not be cropped to this dimension and will still retain its aspect ratio. For example, if the uploaded image has a landscape orientation and is larger than 705px, the generated masonry thumbnail will have a maximum width of 705px, but the height might vary based on the calculated ratio. You may need to select a different thumbnail such as magazine, portfolio or portfolio_small.

    Best regards,
    Ismael

    #1480145

    Hello,

    I have been troubleshooting the issue with images not displaying on the Work page of the Dark Enfold Theme. Here are the steps I’ve taken so far:

    1. Checked the Enfold Theme Options under Performance and ensured that JS & CSS file merging and compression were disabled.
    2. Verified that jQuery Migrate was not disabled.
    3. Temporarily disabled plugins to test for conflicts.
    4. Checked the browser console for JS errors.
    5. Verified image paths, permissions, and gallery shortcode structure.
    6. Disabled lazy load/compression from caching plugins.
    7. Regenerated thumbnails using the Regenerate Thumbnails plugin.

    Despite these efforts, the issue persists. Could you please provide further assistance or guidance on how to resolve this?

    Thank you.

    #1480021

    Hi,

    Try replacing “full” with “featured” (1500x430px), “featured_large” (1500x630px), or “entry_without_sidebar” (1210x430px). These are the default thumbnails registered by the theme.

    Best regards,
    Ismael

    #1479994

    Hello Mike, Site isn’t live as it is in a staging environment. I use the Enfold DJ Demo as a foundation and the normal masonry gallery without any CSS tweaks. Excerpt text of masonry gallery is always inside the thumbnail, I’m just searching for a global Enfold-Solution to put it below the thumbnail.

    • This reply was modified 1 week, 4 days ago by tribaleye13.
    #1479964

    Thanks Mike, but to clarify, I can set my own conditions – as mentioned I’d like to HOOK into the logic and filter for when there’s only 1 image in the gallery.

    Question: Is there an action hook or filter in the thumbnail area of the Portfolio code that I can tap into?

    #1479911

    Hi,
    Your image is cropped, see below.
    You could try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_filter( 'post_thumbnail_size', 'custom_single_event_post_thumbnail_size' );
    function custom_single_event_post_thumbnail_size($size) {
        if( !is_singular('post') ) {
            return;
        }
        if( ! has_post_thumbnail() ) {
            return;
        }
        $size = 'full'; 
        return $size;
    }

    otherwise we would need a login to examine.

    Best regards,
    Mike

    #1479854
    betaphase
    Participant

    I’m using the Portfolio (ajax method) module and it looks great, but when there’s only 1 image, the thumbnail below is redundant, looks bad, and is poor UX.

    For now, I added “display:none style to “.avia-gallery-thumb” but that becomes a problem if more images are added.

    I’d like to HOOK into the logic and filter for when there’s only 1 image in the gallery, then I can either 1) add a class name like “is_single” to the div <div class=”avia-gallery-thumb”> so that I can set “display:none” conditionally, or 2) prevent the div from being outputted altogether.

    Is this possible, or is it more of a feature request? Or both?

    • This topic was modified 1 week, 6 days ago by betaphase.
    #1479850

    Hi I’ve added the code, regenerated thumbnails and cleared cache but it has had no effect.

    #1479826

    Hey mosaic,

    Thank you for the inquiry.

    You can add this code in the functions.php file to adjust the default size of the featured image:

    function avf_customization_modify_thumb_size( $size ) {
          $size['entry_without_sidebar'] = array( 'width' => 9999, 'height' => 9999 );
          $size['entry_with_sidebar'] = array( 'width' => 9999, 'height' => 9999 );
          return $size;
    }
    
    add_filter( 'avf_modify_thumb_size', 'avf_customization_modify_thumb_size', 10, 1 );

    After adding the filter or code, you’ll have to regenerate the thumbnails or upload the images again:

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

    IMPORTANT: Please make sure to create a site backup or restore point before proceeding.

    Related thread: https://kriesi.at/support/topic/full-image-on-single-post/#post-1471379

    Best regards,
    Ismael

    #1479375
    Munford
    Participant

    HI

    I have a site that is almost built and just now am seeing that the images in my portfolio grids are not showing in the grid, but they seem to load and then disappear. I have cleared the css minification. I can’t see the problem on the backend and have checked settings. Can you take a look?

    UPDATE – I fixed this by adding this:

    .js_active .grid-image {
      opacity: 1;
    }

    but I don’t understand why i needed to add that since the images looked fine before?

    Now I am seeing the images but they are getting cropped at the bottom, covered by the title. This was not how they were yesterday. Can you take a look at that? I need the whole images to show with the title and excerpt underneath.
    seems ok on firefox but first loads cropped? https://imgur.com/ErS9LDK (correct)
    chrome: https://imgur.com/Hj8whSR (cropped on the bottom)

    UPDATE: The only thing I added yesterday was a cookie bot banner which seems to be cropping the images on chrome and safari browser. When I disable it, the images are fine. Is there a way to fix this and still use cookiebot? If I disable the cookiebot banner, the icon is still there with the info in lower left on some pages – do I need that for compliance. Is there a way to link the cookiebot settings thru the enfold popup info box or is it ok as it is? I am using the enfold banner and it seems to be ok and the images are not cropped. (I found that some cookiebot banner settings make it so the video background doesn’t load on the front page.) What are the best practices here?

    Also :
    The thumbnails on the grid seem to load slowly, like the files are too big (these are 300×300). Is there a way to fix this?
    On the page listed below, I have the sorting options turned on, but I am not seeing them (there is the space there where they should be). Can you take a look?

    thanks
    Nancy

    • This topic was modified 2 weeks, 5 days ago by Munford.
    • This topic was modified 2 weeks, 5 days ago by Munford.
    • This topic was modified 2 weeks, 5 days ago by Munford.
    • This topic was modified 2 weeks, 5 days ago by Munford.
    • This topic was modified 2 weeks, 5 days ago by Munford.
    • This topic was modified 2 weeks, 5 days ago by Munford.
    • This topic was modified 2 weeks, 5 days ago by Munford.
    • This topic was modified 2 weeks, 5 days ago by Munford.
    • This topic was modified 2 weeks, 5 days ago by Munford.
    • This topic was modified 2 weeks, 5 days ago by Munford.
    • This topic was modified 2 weeks, 5 days ago by Munford.
    • This topic was modified 2 weeks, 5 days ago by Munford.
    • This topic was modified 2 weeks, 5 days ago by Munford.

    Hi,

    Thank you for sharing the complete steps. Regarding the older thread, the complete solution is already there; you just need to adjust the “std” parameter to “hover_active”.

    remove_filter( 'avf_builder_elements', 'avia_woocommerce_product_elements', 500, 1 );
    add_filter( 'avf_builder_elements', 'avia_woocommerce_product_elements_mod', 500, 1 );
    
    function avia_woocommerce_product_elements_mod( $elements )
    {
    	$posttype = avia_backend_get_post_type();
    
        if( ! empty( $posttype ) && $posttype == 'product' )
        {
            $elements[] = array("slug"	=> "avia_product_hover",
                "name" 	=> "Hover effect on <strong>Overview Pages</strong>",
                "desc" 	=> "Do you want to display a hover effect on overview pages and replace the default thumbnail with the first image of the gallery?",
                "id" 	=> "_product_hover",
                "type" 	=> "select",
                "std" 	=> "hover_active",
                "class" => "avia-style",
                "subtype" => array("Yes - show first gallery image on hover" => 'hover_active', "No hover effect" => ''));
    
            $counter = 0;
            foreach( $elements as $element )
            {
                if( $element['id'] == 'sidebar' ) 
    			{
    				$elements[ $counter ]['required'] = '';
    			}
                else if( $element['id'] == 'layout' ) 
                {
    	            $elements[ $counter ]['builder_active'] = true;
    	           // unset($elements[$counter]);
                }
                $counter++;
            }
        }
    
    	return $elements;
    }

    Best regards,
    Ismael

    #1479090
    mzima
    Participant

    Hi,
    I want to create a gallery with Custom Field image. If I insert more images into the field ( like: {wp_custom_field:_thumbnail_id}, {acf_field_67cffccfbfe35:Anzeigenbild 1}, {acf_field_67cffd4abfe36:Anzeigenbild 2}, {acf_field_67cffd61bfe37:Anzeigenbild 3} ) there are displayed any images, but not the images supposed to !! What am I doing wrong here?

    Thank you for helping

    Hi,
    When creating a product with the ALB and you want to show the thumbnails under the main image you will first need to ensure that you have Enfold Theme Options ▸ Shop Options ▸ Product gallery ▸ WooCommerce 3.0 product gallery enabled.
    Enfold Support 5875
    Then add this css to your child theme stylesheet or the theme option Quick CSS

    .single-product .flex-control-thumbs li {
        display: flex !important;
        float: left;
    }

    then add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_shortcode( 'avs_product_gallery_hook', 'avs_product_gallery_hook_callback' );
    function avs_product_gallery_hook_callback( $atts ) {
    ob_start();
    woocommerce_show_product_images();
    $content = ob_get_clean();
    return $content;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    and add this shortcode to your page where you want the image to show in a code block:
    [avs_product_gallery_hook]
    Enfold Support 6606
    Enfold Support 6608
    the switch occurs on click and not hover, as per woocommerce.
    This will only work on product pages and not shop or archive pages, perhaps there is a plugin that will do that but you will prob need to also use the default editor instead of the ALB.

    Best regards,
    Mike

    #1478594

    I applied your CSS in the Enfold general styling quick CSS box and it worked nicely. Is there a way to apply this selectively when using this on a gallery? There may be times when I do want the thumbnails to appear under vs to the left.

    #1478541

    If I go to a 1/1 page format then I would have to put the title on top of the photos instead of beside the gallery of images… Unless I use the Ajax feature which seems to allow for text content to appear to the left of the gallery. I’m not familiar with this option plus generally don’t like the formatting limitations and quirkyness within this text field area.

    If I use your previously supplied CSS coding can I control the number of thumbnail columns with the gallery styling tools?

    #1478538

    Hi,

    Yes, we were referring to the left column. Have you tried moving the gallery to 1/1 column to create more space for the main image and the thumbnails?

    Best regards,
    Ismael

    #1478535

    This page layout is a 1/3 left hand column for art title, specification and eventual description and 2/3 right hand column for gallery photos. Are you referring to the left column as a default sidebar? When creating the portfolio entry I did turn off the default sidebar there.

    The question still stands “If I use a different percentage say 25% (for the large image) will the thumbnails stack (to the left) on top of one another, creating perhaps 2 columns wide over 5 rows tall?”

    #1478531

    This solution makes the large image too small (non-impactful) for impressive portfolio use. If I use a different percentage say 25% will the thumbnails stack on top of one another, creating perhaps 2 columns wide over 5 rows tall?

    #1478529

    Hey JeffDale,

    Thank you for the inquiry.

    There is no option for this by default, but you can add this css code to adjust the width of the main image and move it to the right, effectively creating space for the thumbnails.

    #top div .avia-gallery .avia-gallery-big {
        float: right;
        width: 50%;
    }

    Result:

    View post on imgur.com

    Best regards,
    Ismael

    #1478527
    JeffDale
    Participant

    Under media elements when using a custom gallery with large image and small thumbnails – Is it possible to locate the thumbnails to the left of the large image or even better in a separate column? Currently the only option appears to be under the large image, which unfortunately the viewer doesn’t see unless they scroll down to find them. A link is list in the private section showing how I’d like the thumbnails to appear in a left hand column.

    Hey Mike

    I appologize. I did not mean flip. I meant to change the single product main image for the first gallery image on hover.

    So for the single product image. On hover change the main product image for the first gallery image.
    + To do so also for the thumbnails on the Shop and Archive pages.

    Thanks.

    SHR Design
    Participant

    Hi

    I am trying to figure out the correct code snippet to use for changing the main single product image on hover to the first gallery image.
    Example this page: https://labhuset.no/product/fiocchetti-plasmafryser-30-40c/

    I found this earlier thread: https://kriesi.at/support/topic/change-single-product-image-on-hover-with-gallery-first-image/
    But found the code shared there unclear. It would be great with an update with a workable code.

    Enfold has been used to customize all the single product pages in WooCommerce.
    I am working on figuring out how to change images on hover (for the first gallery image) of the main product in the Single product page

    2.
    It would also be helpful to at the same time have the correct code to change images on hover in the shop page AND the archive page. Having the thumbnails seen change to the first gallery image.

    Thank you!

    • This topic was modified 1 month ago by SHR Design. Reason: A mistake in adding the word flip. It has been adjusted
    #1478317

    Hey Vera,
    I added this to your child theme functions.php:

    function override_post_thumbnail_size($size, $post_id) {
        if (is_archive()) {
            return 'full';
        }
        return $size;
    }
    add_filter('post_thumbnail_size', 'override_post_thumbnail_size', 10, 2);

    It is working, but you will need to adjust one of your images as it’s full size is smaller than the others (Blinder Port)

    Best regards,
    Mike

    #1478021
    Vera
    Participant

    Hi,

    1.
    I’d like to show the thumbnails on archive pages of portfolio categories in their original dimensions (like the option you can choose in the settings of a portfolio-grid)

    2. eliminate the prefix „Archiv für:“

    Thank you very much for your help.

    Best regards
    Vera

    #1477849

    Hey ballindigital,

    Thank you for the inquiry.

    You can add this css code to hide the product gallery thumbnails and adjust the height of the main product image:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .single .product div.images div.thumbnails {
        display: none;
      }
    
      .single .product div.images img {
        width: auto;
        height: auto;
        max-height: 300px;
        margin: 0 auto;
      }
    }

    Best regards,
    Ismael

Viewing 30 results - 1 through 30 (of 10,002 total)