• Resolved emmagerhardtstudios

    (@emmagerhardtstudios)


    Hey all,

    I’m looking to turn off the image galleries on the single listing pages. When I have no images in the listings it still shows a default blank image— I’m looking to take this off the page as I have a WP gallery module in a different location on the listing pages.

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Estatik

    (@estatik)

    Hi there,

    You can hide the gallery on all listings page via css (via Customize)

    .type-properties .es-gallery {
    display: none !important;
    }

    If you want to hide listing for a specific Listing using its ID, you can use the following code :

    .post-12345 .es-gallery {
    display: none !important;
    }

    – where 12345 is a property ID.

    Hope it will help. Thanks.

    • This reply was modified 2 years, 9 months ago by Estatik.
    Thread Starter emmagerhardtstudios

    (@emmagerhardtstudios)

    @estatik

    So easy!! Thank you so much.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Deactivate Image Gallery on Single Page Listings’ is closed to new replies.