• Resolved suzibirddd

    (@suzibirddd)


    Hi, I have a couple of questions regarding the Vega theme if anyone can help please? I’m using the free version.

    How do I remove the option for people to comment on every page? My pages aren’t blog posts, so I don’t want people to be able to leave comments. I’d like to remove this section on every page.

    Is there a way to remove/hide the page titles? Due to the header that’s set with the theme, the page titles now appear twice on every page.

    Finally, is there a way to edit the text at the very bottom of the footer? In order to remove “VEGA WORDPRESS THEME BY LYRATHEMES”, do I need the paid version of the theme or can it be done on the free version?

    Thanks in advance ??

Viewing 14 replies - 1 through 14 (of 14 total)
  • Theme Author lyrathemes

    (@lyrathemes)

    suzibirdd, thanks for trying out Vega. We appreciate it.

    To remove the comments from pages – please click the “Screen Options” and check on “Discussions”. See this screenshot for help https://prntscr.com/cnkcpr After that you’ll see an “Allow Comments” field at the bottom. Check that off and save the page.

    To disable comments for future pages, go to Settings > Discussion, check off “Allow people to post comments on new articles”.

    For the page titles – which one would you like to hide? The one in the banner or the one in the page content?

    You can hide the credits by using this custom CSS in the Advanced > Custom CSS section:

    span.credit {
        display: none;
    }
    Thread Starter suzibirddd

    (@suzibirddd)

    Thank you! That’s all great ??

    Please could you let me know how to hide both so I have the option of either? Thanks ??

    Theme Author lyrathemes

    (@lyrathemes)

    To hide the title in the body of the page:

    .page-content h3.page-title {
        display: none;
    }

    To hide the title in the header:

    .image-banner h1.block-title {
        display: none;
    }
    Thread Starter suzibirddd

    (@suzibirddd)

    When I enter either of those I get this message:

    Example

    Thread Starter suzibirddd

    (@suzibirddd)

    Also, is it possible to remove the header bar as well as the titles on the pages please?

    Theme Author lyrathemes

    (@lyrathemes)

    Where did you enter that code that caused the error?

    Thread Starter suzibirddd

    (@suzibirddd)

    In to the text editor on the page.

    .

    • This reply was modified 8 years, 1 month ago by NimbusThemes.
    Thread Starter suzibirddd

    (@suzibirddd)

    Thanks. That works to hide the title in the body of the page, but the other code doesn’t work to hide the title in the header?

    Theme Author lyrathemes

    (@lyrathemes)

    Try this:

    .jumbotron h1.block-title {
        display: none;
    }
    Thread Starter suzibirddd

    (@suzibirddd)

    Thank you! Final question! Is there a way to get read of the header image bar please? I’d like to remove the whole thing rather than just the text.

    Theme Author lyrathemes

    (@lyrathemes)

    Sure try

    .jumbotron {
        display: none;
    }

    It goes in the Custom CSS field, just like the other CSS codes.

    Thread Starter suzibirddd

    (@suzibirddd)

    Thank you so much ??

    Theme Author lyrathemes

    (@lyrathemes)

    When you get some time and when your website is complete – we’d love to get a review from you here ??

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘Removing comment option, removing page titles and editing the footer text.’ is closed to new replies.