Okay
  Public Ticket #3809262
Portfolio image captions & tags
Closed

Comments

  •  1
    gazzydmail started the conversation

    Hello - I'm interested in whether there's a way to:

    • Prevent captions showing up in the portfolio view, but maintain them in the lightbox view
    • Tag media assets. I can achieve something similar with categories on the portfolio, but it would be ideal to tag individual assets, if possible.
  •  1
    gazzydmail replied

    Sorry, and if I could add one more question - is there a way to fix the inconsistent spacing between items? Eg: https://gary-dickson.com/?uxbarn_portfolio=gippsland.

  •  297
    Paul replied

    Hello,

    Regarding your questions:

    1. Please apply this custom CSS to hide the captions on the portfolio view:

    .single-uxbarn_portfolio .portfolio-format-item > .image-caption {
        opacity: 0;
    }

    2. I'm afraid the theme only supports categories for portfolio items - tags cannot be used with them.

    3. Regarding the inconsistency issue, I haven't been able to reproduce it on my computer. Could you please provide me with the login credentials for your WordPress site? I will investigate and debug the code directly on your end.

    *Important: Please mark your reply as "Private" when sending the credentials.

    Best regards,
    Paul

  •   gazzydmail replied privately
  •  297
    Paul replied

    Thank you for the detailed information!

    You were right about the caption issue. I have updated the custom CSS on your website with the following code:

    .single-uxbarn_portfolio .portfolio-format-item > .image-caption {
        display: none !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    This will remove the reserved spaces for those captions.

    For the vertical line issue, I have added this custom CSS to resolve it:

    .portfolio-template-container {
        display: flex;
    }
    
    .no-page-content .portfolio-template-side-content, 
    .no-category-menu.no-page-content .portfolio-item-list, 
    .tax-uxbarn_portfolio_tax .portfolio-item-list {
        float: none;
        margin-left: -1px;
    }
    
    @media only screen and (max-width: 767px) {
    	.portfolio-template-container {
    		display: block;	
    	}
    }

    Everything should be working as expected now. Please let me know if you notice any other issues or have any questions.

  •  1
    gazzydmail replied

    Thanks so much Paul, that's fabulous.

    Gary

  •  297
    Paul replied

    You're very welcome, Gary. Glad I could help!