Okay
  Public Ticket #227169
portfolio link to gallery
Closed

Comments

  • Mary Kate started the conversation

    so... anyway a portfolio item page can have a gallery instead of a slideshow? i tried just not having any images in the slide show, but as you can see from the link (at least i can see it), i get the message that "You have not yet added any images." right above the gallery. 

    thanks so much!

  •  291
    Paul replied

    Hello,

    By default, that message will display if there is no slide assigned to the portfolio item. Please go to "Style Customizer > Others > Custom CSS" and use this CSS to force hiding the message:

    #uxb-port-images-type {
        display: none;
    }

    This should help!

    Cheers,
    Paul

  • Mary Kate replied

    worked like a charm! thanks so much paul!!!

    :)

  • Sara replied

    Hello,

    I only want to hide the message if there are no images in the meta box, but this makes the feature go away completely. Is there a way to make it go away if there are no images, but have to image show if there are images to be displayed?

  •  291
    Paul replied

    Hi Sara,

    Please change from this:

    #uxb-port-images-type {
        display: none;
    }

    To this:

    #uxb-port-images-type {
        margin-bottom: 0;
    }
    
    #uxb-port-images-type .uxb-port-box {
        display: none;
    }

    P.S. If you have any other question, please open your new ticket. I am going to close this one as the issue of the OP has been solved. :)

    Cheers,
    Paul

  • Sara replied

    No problem! Thank you so much!