Okay
  Public Ticket #1380970
Site title
Closed

Comments

  • aetherborn started the conversation

    Under "Site Identity" when customizing, I am not given the DEFAULT option of hiding the title. I need to be able to do this. For some reason, having your theme enabled does not allow it. But I need to be able to hide this because right now, I'm just leaving it empty so it doesn't show up

  •  522
    Nikita replied

    Hi.

    You can hide the title in theme options. Example for pages:

    Also for individual pages:

    p.s. For the main page (http://thedreamcompass.com/), I think, you can use custom CSS:

    body.blog .youplay-banner .info {
        display: none;
    }
    

    Best regards, nK.

  • aetherborn replied

    None of that helped. None. I tried them all. Now, I't possible that I did not put that code snippet where it's supposed to be. EXACTLY which file should it go into?

  •  522
    Nikita replied

    Please provide a temporary admin login to your site and I'll take a look. Show Title option is working fine for me. I don't understand why it is not work for you. Code snippet from the previous answer you can place in wp_admin > Youplay > Options > General > Custom CSS.

  • aetherborn replied

    I actually found where to put the snippet. in "additional css" However, i'm having a problem now managing the nkRevent posts shortcode in visual composer. It's asking for which tags. posts etc i want to be ignoring. but when i type in a slug, etc, it still shows those those posts. Why is it not updating? Is there a particular way i need to write them in there?

  •  522
    Nikita replied

    Hi.

    You need to write posts IDs to exclude it:

    Where to find post ID - open post in admin and you will see something like this in browser address bar http://localhost/wp-admin/post.php?post=24&action=edit. As you can see here post=24, ID is 24.


    Here you can select tags and categories:

    For example, you have 2 posts in category "Uncategorized", you need to write it in this option:

    Then you will only see these 2 posts from only this category.


    If something is not working as expected, please, give me more information about what you entered in shortcode and what showed on your page then.

  • aetherborn replied

    Thanks man. I had one more question; how do i change the opacity on the navigation border? I'd like to make it a bit more visible.

  •  522
    Nikita replied

    Border? There is no border in navigation. But to change anything in the view, you need to write custom CSS.

    Background change example:

    .navbar-youplay {
        background: rgba(255, 255, 255, 0.7);
    }
    .navbar-youplay.navbar-small {
        background: rgba(255, 255, 255, 1);
    }