Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1211876

    We have some problems with picture shape/size in the portfolio. Using Ajax Portfolio to create portfolio items with a slide show to display the images. The problem when you open a portfolio item the pictures display in the square container of the frame, cutting the heads of the images.  How can we change to pictures to display in elongated rectangular shape frame, approximate size 640×480?  
    thanks

    #1212242

    Hey stanzakh,

    Please have a look at the following thread:
    https://kriesi.at/support/topic/ajax-portfolio-change-image-size/

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1213478

    Hi Victoria
    I followed the thread with steps below
    1) Open the grid (in the popup) and select “Portfolio Grid Image Size”.
    2) Selected “Choose the Portfolio Grid image size manually (select thumbnail size)” and selected Magazine size 710X 375
    but it didn’t fix my problem. Still, some images show up in the squire frame, some in magazine size. There no consistency of the shapes of the picture/sizes from page to page.

    All I want clear and consistent pictures in full dress length to display my product.
    Any help?

    #1213593

    Hi stanzakh,

    Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?

    Best regards,
    Victoria

    #1213691

    Thanks a lot, Victoria, for your help. Please find the below info.

    #1215449

    Hi stanzakh,

    Best regards,
    Victoria

    #1215474

    Victoria, the problem is different – some images are showing up as a squire picture and some as portrait pictures. Where you control the picture frame SHAPE in the portfolio?

    #1217030

    Hi,

    Thank you for the inquiry.

    Try to use this snippet in the functions.php file to change the thumbnail used in the portfolio preview or the gallery element.

    add_action( 'avf_portfolio_preview_template_params', 'avf_portfolio_preview_template_params_mod', 10, 2 );
    function avf_portfolio_preview_template_params_mod($params, $entry) {
    	if($params['method'] == 'slideshow') {
    		 $params['preview_size'] = 'no scaling';
    	}
    
        if($params['method'] == 'gallery') {
    		 $params['preview_size'] = 'no scaling';
    	}
    	return $params;
    }

    Let us know if it helps.

    Best regards,
    Ismael

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.