• Hello Everyone. I’m creating a Music Streaming Platform named MairMusix .

    But I got confused in this level. How can I disable downloading from the website and enable downloading from the app.

    i was trying to create my website like Boomplay, Audiomack, Youtube.…how can I enable download in the app and disable it in the website

    or

    When user click the download button how can I show Go to the app to download button

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Moderator t-p

    (@t-p)

    Is this download button a feature of a Plugin? If so, what plugin? Acquired from?
    Is this download button a feature of your theme? If so, What theme? Acquired from?

    • This reply was modified 11 months, 2 weeks ago by t-p.
    Thread Starter naijamomo

    (@naijamomo)

    That why I asked How can I disable the downloads on website and enable them in the app

    • This reply was modified 11 months, 2 weeks ago by naijamomo.
    Moderator t-p

    (@t-p)

    Again, please tell us:
    Is this download button a feature of a Plugin? If so, what plugin? Acquired from?
    Is this download button a feature of your theme? If so, What theme? Acquired from?

    Thread Starter naijamomo

    (@naijamomo)

    It is not a plugin I mean the direct download I want to restrict downloading from my website

    Thread Starter naijamomo

    (@naijamomo)

    Hi guys. I added the following code to restrict download to my Website but it is not working

    const express = require('express');
    const app = express();
    
    app.get('/download', (req, res) => {
      // Add code to restrict download here
    });
    
    app.listen(3000, () => {
      console.log('Server is running on port 3000');
    });
    
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Hide Download Button On Website And Enable In the App’ is closed to new replies.