• Resolved Delana Taylor

    (@delanataylor)


    On the profile page menu nav bar where we see the Posts button, we click that and the page then shows a long list of posts the member has made.

    Is there a clean and simple way to make those results show up in a grid so it’s not a mile long list lol? It’s only for that result for the posts they made and nowhere else so if the code is going to affect other layouts elsewhere then it’s not going to work. Just what is shown when anyone clicks the Posts button.

    Thanks!

    • This topic was modified 2 years, 6 months ago by Delana Taylor. Reason: error
Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Aswin Giri

    (@aswingiri)

    Hello @delanataylor

    You can override ultimate-member/templates/profile/posts-single.php template file from your theme. Please check this article regarding template overriding.

    If you just want to display posts in grid, please add the following CSS codes to wp-admin > appearance > customize > Additional CSS

    .um-profile-body.posts .um-ajax-items {
    	 display: grid;
        grid-template-columns: repeat(3,1fr);
        grid-gap: 15px;
    }
    Thread Starter Delana Taylor

    (@delanataylor)

    Awesome…that did the trick. Thanks!

    One last one. I’ve spent the last hour going through every single css file in this plugin so since you’re up I’m just going to ask because I cannot find it.

    Where do I find the css for the tool tip box that pops up. It’s dark brown with tiny white letters. I need to change that so it’s easier to read.

    Thanks!

    Thread Starter Delana Taylor

    (@delanataylor)

    Resolved

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Profile Menu Posts View Help Please’ is closed to new replies.