• Hi, i really like your plugin but i have problem with showing gallery images in single property page. Thumbs images are showing OK. Slideshow works good. Only problem is images are not showing at all – only icon of image (screen 1,2).

    Images from your demo are showing OK. I tried change dimensions,format,change theme but nothing helped.

    Please give me some advice. THX

    Screens:
    https://prnt.sc/o719fl
    https://prnt.sc/o719sg
    https://prnt.sc/o71a15

Viewing 3 replies - 1 through 3 (of 3 total)
  • Add the below in you main function.php

    Then add new property image issue will be resolved as it will generate the plugin required size images.

    add_theme_support( ‘post-thumbnails’ );

    add_action( ‘after_setup_theme’, ‘child_theme_setup’ );
    function child_theme_setup() {
    add_image_size( ‘my_wide’, 870, 420, true );
    add_image_size( ‘my_thum’, 250, 130, true );
    }

    Thread Starter madflow16

    (@madflow16)

    muqarab – thank you for answer but it isnt working :/ nothing changed

    Terry Arthur

    (@terryarthur)

    This works for me. Substitute my sizes for yours and remove true and the last comma if you don’t want the images cropped to fit.

    add_theme_support( ‘post-thumbnails’ );
    add_image_size( ‘post-thumbnail size’, 870, 420, true );
    add_image_size( ‘post-thumbnail size’, 250, 130, true );

    then regenerate your thumbnails via wpcli or a plugin

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Gallery images problem’ is closed to new replies.