<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									How to make error/success notices last longer - How-to and Troubleshooting - wpForo 2.0				            </title>
            <link>https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-make-error-success-notices-last-longer/</link>
            <description>Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Mon, 13 Jul 2026 16:09:45 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: How to make error/success notices last longer</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-make-error-success-notices-last-longer/#post-106202</link>
                        <pubDate>Sat, 18 Nov 2023 09:28:23 +0000</pubDate>
                        <description><![CDATA[Hi @jorgew,
The error message duration is currently set 8 seconds. You can manage them using following hook codes in a PHP code snippet of the Code Snippets plugin:
function custom_wpforo_...]]></description>
                        <content:encoded><![CDATA[<p>Hi <span>@jorgew,</span></p>
<p>The error message duration is currently set 8 seconds. You can manage them using following hook codes in a PHP code snippet of the <a href="https://wordpress.org/plugins/code-snippets/" target="_blank" rel="noopener">Code Snippets</a> plugin:</p>
<pre contenteditable="false">function custom_wpforo_error_message_duration( $duration_in_milliseconds ){
	$duration_in_milliseconds = 10000; //10 seconds. 1000 is one second
	return $duration_in_milliseconds;
}
add_filter( 'wpforo_notice_timeout_error', 'custom_wpforo_error_message_duration', 11);

function custom_wpforo_success_message_duration( $duration_in_milliseconds ){
	$duration_in_milliseconds = 10000; //10 seconds. 1000 is one second
	return $duration_in_milliseconds;
}
add_filter( 'wpforo_notice_timeout_success', 'custom_wpforo_success_message_duration', 11);
</pre>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>Martin</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-make-error-success-notices-last-longer/#post-106202</guid>
                    </item>
				                    <item>
                        <title>RE: How to make error/success notices last longer</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-make-error-success-notices-last-longer/#post-106106</link>
                        <pubDate>Thu, 16 Nov 2023 19:23:13 +0000</pubDate>
                        <description><![CDATA[Like this one...
 wpForo-success-error-notice.png]]></description>
                        <content:encoded><![CDATA[<p>Like this one...</p>
<div id="wpfa-0" class="wpforo-attached-file"><a class="wpforo-default-attachment" title="wpForo-success-error-notice.png" href="//wpforo.com/wp-content/uploads/wpforo/default_attachments/1700162593-wpForo-success-error-notice.png" target="_blank" rel="noopener"><i class="fas fa-paperclip"></i> wpForo-success-error-notice.png</a></div>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>JorgeW</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-make-error-success-notices-last-longer/#post-106106</guid>
                    </item>
				                    <item>
                        <title>How to make error/success notices last longer</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-make-error-success-notices-last-longer/#post-106105</link>
                        <pubDate>Thu, 16 Nov 2023 18:45:41 +0000</pubDate>
                        <description><![CDATA[Hi @robert, @chris,
How can I give more time to read the notices that appear on top-right confirming actions, like post submitted, post edited, and especially when there was an error?
Curr...]]></description>
                        <content:encoded><![CDATA[<p>Hi @robert, @chris,</p>
<p>How can I give more time to <strong>read the notices</strong> that appear on top-right confirming actions, like post <strong>submitted</strong>, post <strong>edited</strong>, and especially when there was an <strong>error</strong>?</p>
<p>Currently users have about 1sec (I guess) to read those messages.</p>
<p>Thanks</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>JorgeW</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/how-to-make-error-success-notices-last-longer/#post-106105</guid>
                    </item>
							        </channel>
        </rss>
		