• Resolved myco2

    (@myco2)


    I created an article on the front-end of the site and I did not add a title because the title is not necessary for me. but I noticed that the plugin creates an automatic title for the article.

    1. How can I avoid the plugin creating automatic titles for articles (User Submitted Post
      ). if the required title must be omitted, how can I change (User Submitted Post) to (Post user). How can I mask the titles once the post is published?
    2. How can I add a default category so users don’t have to choose a category anymore?
    3. How to mask the cover image once the post is opened.

    Thanks for your reply. I am comfortable with php and css code, if you need a personalized code to do this, please share it with me. Superb plugin, thank you for the work.

    https://share.zight.com/yAuBY5ZO# image

    • This topic was modified 10 months ago by myco2.
Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Jeff Starr

    (@specialk)

    Glad to help:

    1. Add this code to your theme or via simple plugin, it will simply set the default post title to blank/empty:
    function usp_default_title($value) { return ''; }
    add_filter('usp_default_title', 'usp_default_title');

    2. Visit plugin settings, under “Categories & Tags”, enable the option “Hidden/Default Category”. Then just beneath that, enter your category ID and save changes.

    3. Not a current feature of the plugin; that sort of thing is best left to the theme template, which is responsible for displaying content on the front end. Ask your theme provider should be able to provide some clues.

    I hope this helps, let me know if I can provide any further information.

    Thread Starter myco2

    (@myco2)

    Can you tell me how I can place the Post Thumbnail after the content of the post please. https://share.zight.com/8LulP9WX# . how to do this either with php or css please.

    Plugin Author Jeff Starr

    (@specialk)

    You will need to ask your theme provider. The theme is responsible for displaying content on the front end.

    Thread Starter myco2

    (@myco2)

    Thank you for your help, please tell me how I can change this color https://share.zight.com/ApuPkZY4# it is important for us please.

    Plugin Author Jeff Starr

    (@specialk)

    In the Custom Content setting, add this bit of CSS:

    <style>#user-submitted-content { background-color: #000; }</style>

    Save changes and done. You can change the color from #000 to whatever you want.

    • This reply was modified 9 months, 4 weeks ago by Jeff Starr.
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to mask the title by default please’ is closed to new replies.