arathra (@arathra)

Forum Replies Created

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

  • arathra
    Participant

    @arathra

    Thanks – it turns out it’s Ultimate Member; I’m in touch with them to see what gives.


    arathra
    Participant

    @arathra

    Unfortunately not as it only affects admin users (regular users do not see the admin bar).


    arathra
    Participant

    @arathra

    Thank you for a very helpful reply, Robin.

    I have installed the plugin and it works very well; just what I need in fact. (One of my forums is a helpdesk.)

    I shall certainly keep an eye on it and if I may I will post any problems here if they arise, but for now it’s going well.

    Cheers.

    In reply to: Private Threads?

    arathra
    Participant

    @arathra

    Ah, now that sounds interesting. Let me try that – thanks!

    In reply to: Private Threads?

    arathra
    Participant

    @arathra

    It wouldn’t be the same ticket thread. Perhaps I’m not explaining myself clearly.

    I want a forum entitled: HELP DESK

    Within that forum people can start threads – some will be open to all to view and contribute to, but sometimes the user who begins the thread will mark the thread as PRIVATE and in that case the thread will only be viewable by the user and admin and not by all.

    In reply to: Private Threads?

    arathra
    Participant

    @arathra

    Thanks for the suggestion, but as I understand it the plugin creates private forums for groups. Since I want to have the possibility for people to mark threads as private between the OP and admin, this would mean having potentially thousands of forums, one each for every user.

    I was hoping for something like the “hide message” plugin except allowing a user to mark the entire thread as hidden rather than just a single message.


    arathra
    Participant

    @arathra

    	/**
    	 * Filter whether to trigger an error for _doing_it_wrong() calls.
    	 *
    	 * @since 3.1.0
    	 *
    	 * @param bool $trigger Whether to trigger the error for _doing_it_wrong() calls. Default true.
    	 */
    	if ( WP_DEBUG && apply_filters( 'doing_it_wrong_trigger_error', true ) ) {
    		if ( function_exists( '__' ) ) {
    			$version = is_null( $version ) ? '' : sprintf( __( '(This message was added in version %s.)' ), $version );
    			/* translators: %s: Codex URL */
    			$message .= ' ' . sprintf( __( 'Please see <a href="%s">Debugging in WordPress</a> for more information.' ),
    				__( 'https://codex.wordpress.org/Debugging_in_WordPress' )
    			);
    			trigger_error( sprintf( __( '%1$s was called <strong>incorrectly</strong>. %2$s %3$s' ), $function, $message, $version ) );
    		} else {
    			$version = is_null( $version ) ? '' : sprintf( '(This message was added in version %s.)', $version );
    			$message .= sprintf( ' Please see <a href="%s">Debugging in WordPress</a> for more information.',
    				'https://codex.wordpress.org/Debugging_in_WordPress'
    			);
    			trigger_error( sprintf( '%1$s was called <strong>incorrectly</strong>. %2$s %3$s', $function, $message, $version ) );
    		}
    	}

    Is the function, line 3901 is : trigger_error( sprintf( __( ‘%1$s was called incorrectly. %2$s %3$s’ ), $function, $message, $version ) );

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