Skip to:
Content
Pages
Categories
Search
Top
Bottom

Show Custom Warning Message


  • devansh1995
    Participant

    @devansh1995

    Hello All,

    I want to show custom warning message for logged out users that, ” Only registered users are allowed to upload attachments “.

    This warning message should be shown above topic title and below create new topic head.

    Please let me know how can i do that?

Viewing 7 replies - 1 through 7 (of 7 total)

  • Robin W
    Moderator

    @robin-w

    can you post a link to an example and say EXACTLY where you want this


    devansh1995
    Participant

    @devansh1995

    Castudyweb.com/question-wall

    Here between create new topic and topic title.


    Robin W
    Moderator

    @robin-w

    add_action ('bbp_theme_before_topic_form_notices' ,'rew_show_notice' ) ;
    
    function rew_show_notice () {
    	echo '<div class="rew-notice">Only registered users are allowed to upload attachments'</div>' ;
    }

    devansh1995
    Participant

    @devansh1995

    hello .. how can i show it only to logged out users?


    Robin W
    Moderator

    @robin-w

    add_action ('bbp_theme_before_topic_form_notices' ,'rew_show_notice' ) ;
    
    function rew_show_notice () {
    	if (!is_user_logged_in()) {
    		echo '<div class="rew-notice">Only registered users are allowed to upload attachments'</div>' ;
    		}
    	
    }

    devansh1995
    Participant

    @devansh1995

    Thanks a lot. It worked.


    Robin W
    Moderator

    @robin-w

    🙂

Viewing 7 replies - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.
Skip to toolbar