<?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>
									Hide menu &quot;download&quot; from video player - How-to and Troubleshooting - wpForo 2.0				            </title>
            <link>https://wpforo.com/community/how-to-and-troubleshooting-2/hide-menu-download-from-video-player/</link>
            <description>Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Wed, 22 Apr 2026 21:04:05 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: Hide menu &quot;download&quot; from video player</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/hide-menu-download-from-video-player/#post-128377</link>
                        <pubDate>Wed, 15 Oct 2025 12:17:25 +0000</pubDate>
                        <description><![CDATA[@sofy Yes this one works perfectly. So many thanks!]]></description>
                        <content:encoded><![CDATA[@sofy Yes this one works perfectly. So many thanks!]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>fufy</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/hide-menu-download-from-video-player/#post-128377</guid>
                    </item>
				                    <item>
                        <title>RE: Hide menu &quot;download&quot; from video player</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/hide-menu-download-from-video-player/#post-128374</link>
                        <pubDate>Wed, 15 Oct 2025 08:36:33 +0000</pubDate>
                        <description><![CDATA[@fufy 
Use this hook-code: 
add_filter( &#039;wpforo_content_after&#039;, function($content){ return str_replace( &#039;&lt;video &#039;, &#039;&lt;video controlslist=&quot;nodownload&quot; &#039;, $content ); }, 999 );]]></description>
                        <content:encoded><![CDATA[<p>@fufy </p>
<p>Use this hook-code: </p>
<pre contenteditable="false">add_filter( 'wpforo_content_after', function($content){ return str_replace( '&lt;video ', '&lt;video controlslist="nodownload" ', $content ); }, 999 );</pre>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>Sofy</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/hide-menu-download-from-video-player/#post-128374</guid>
                    </item>
				                    <item>
                        <title>RE: Hide menu &quot;download&quot; from video player</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/hide-menu-download-from-video-player/#post-128365</link>
                        <pubDate>Tue, 14 Oct 2025 15:40:26 +0000</pubDate>
                        <description><![CDATA[@wpforo-support Thank you for looking at my issue. I&#039;ve put the code to wpForo&#039;s custom CSS but the download menu still appears. I&#039;ve attached the pictures here for your checking.
 wpforo_c...]]></description>
                        <content:encoded><![CDATA[<p>@wpforo-support Thank you for looking at my issue. I've put the code to wpForo's custom CSS but the download menu still appears. I've attached the pictures here for your checking.</p>
<div id="wpfa-0" class="wpforo-attached-file"><a class="wpforo-default-attachment" title="wpforo_css.png" href="//wpforo.com/wp-content/uploads/wpforo/default_attachments/1760456426-wpforo_css.png" target="_blank" rel="noopener"><i class="fas fa-paperclip"></i> wpforo_css.png</a></div>
<div id="wpfa-0" class="wpforo-attached-file"><a class="wpforo-default-attachment" title="video_player.png" href="//wpforo.com/wp-content/uploads/wpforo/default_attachments/1760456456-video_player.png" target="_blank" rel="noopener"><i class="fas fa-paperclip"></i> video_player.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>fufy</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/hide-menu-download-from-video-player/#post-128365</guid>
                    </item>
				                    <item>
                        <title>Re: Hide menu &quot;download&quot; from video player</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/hide-menu-download-from-video-player/#post-128363</link>
                        <pubDate>Tue, 14 Oct 2025 10:45:18 +0000</pubDate>
                        <description><![CDATA[@fufy,
To hide or disable the download menu from the video player in wpForo posts, you can use custom CSS to target the video player&#039;s controls and hide the download option, since the defau...]]></description>
                        <content:encoded><![CDATA[@fufy,
To hide or disable the download menu from the video player in wpForo posts, you can use custom CSS to target the video player's controls and hide the download option, since the default WordPress function does not work in wpForo posts. For example, you can add CSS like this:

<pre>#wpforo .wp-video::-webkit-media-controls-enclosure { /* Hide download button in WebKit browsers */
  overflow: hidden;
}
#wpforo .wp-video::-webkit-media-controls-download-button {
  display: none !important;
}</pre>

This CSS targets the video controls inside wpForo posts and hides the download button. You may need to adjust selectors depending on your theme or video player.

If you need more advanced control or customization, consider contacting the Gvectors Custom Work Team for custom development, as wpForo does not have built-in integration for changing video player controls directly.]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>wpForo Support</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/hide-menu-download-from-video-player/#post-128363</guid>
                    </item>
				                    <item>
                        <title>Hide menu &quot;download&quot; from video player</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/hide-menu-download-from-video-player/#post-128358</link>
                        <pubDate>Tue, 14 Oct 2025 07:23:24 +0000</pubDate>
                        <description><![CDATA[I have this code in my wordpress theme&#039;s functions.php to disable download menu from video player which works great on my posts, i.e. video plays normally and has all functions except the do...]]></description>
                        <content:encoded><![CDATA[<p>I have this code in my wordpress theme's functions.php to disable download menu from video player which works great on my posts, i.e. video plays normally and has all functions except the download menu - just what I need.</p>
<p>add_filter( 'render_block', 'video_block_render', 10, 2 );<br />function video_block_render( $output, $block ) {<br />    if ( 'core/video' !== $block ) {<br />      return $output;<br />    }<br />    $output = str_replace(<br />      '&lt;video controls',<br />        '&lt;video controls controlslist="nodownload"', $output<br />    );<br />    return $output;<br />}</p>
<p>But in wpForo posts, the video player's download menu shows normally. Not sure if there's anything from wpForo that overcomes or has higher priorty that blocks this function not working properly. I've also tried adding the code to wpForo's functions.php instead of Wordpress's but didn't work either.</p>
<p>Please kindly advise.</p>
<p>&nbsp;</p>
<p>Many thanks.</p>
<p>&nbsp;</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>fufy</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/hide-menu-download-from-video-player/#post-128358</guid>
                    </item>
							        </channel>
        </rss>
		