Wordpress experts I need some help

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Major (Tom)
    So Fucking Banned
    • Nov 2003
    • 32492

    #1

    Wordpress experts I need some help

    I need a plugin that can limit how many videos someone can watch in a day, or something along those lines.
    Does a plugin exist that can handle that?
    Is this something that requires custom coding?
    Can you do it? And how much

    Pm me here or my skype &/or icq in my deets.
    Thank you!
    Duke
  • vdbucks
    Monger Cash
    • Jul 2010
    • 2773

    #2
    Your best option is a cookie-based method. We used to do this on our tours some time ago, I'll see if I still have the code for it laying around when I get to the office tomorrow.

    Comment

    • Major (Tom)
      So Fucking Banned
      • Nov 2003
      • 32492

      #3
      Originally posted by vdbucks
      Your best option is a cookie-based method. We used to do this on our tours some time ago, I'll see if I still have the code for it laying around when I get to the office tomorrow.
      Thanks brother

      Comment

      • Major (Tom)
        So Fucking Banned
        • Nov 2003
        • 32492

        #4
        Ba bump bump

        Comment

        • kingdezign
          So Fucking Banned
          • Mar 2012
          • 236

          #5
          are you still looking for wp pluign developer?

          Comment

          • Major (Tom)
            So Fucking Banned
            • Nov 2003
            • 32492

            #6
            Originally posted by kingdezign
            are you still looking for wp pluign developer?
            Yes I am!!

            Comment

            • brassmonkey
              Pay It Forward
              • Sep 2005
              • 77396

              #7
              let me look dogg
              yo!
              https://www.superblogme.com/contact-me/
              he will hook u up!!!
              TRUMP 2026 KEKAW!!! - The Laken Riley Act Is Law!
              DACA ENDED - SUPPORT AZ HCR 2060 52R - email: brassballz-at-techie.com

              Comment

              • j3rkules
                VIP
                • Jul 2013
                • 22111

                #8
                Originally posted by brassmonkey
                let me look dogg
                yo!
                https://www.superblogme.com/contact-me/
                he will hook u up!!!
                Definitely worth contacting him.


                Comment

                • HowlingWulf
                  Confirmed User
                  • Nov 2001
                  • 1662

                  #9
                  There's quite a few plugins that will restrict content. Some of them are free. I would check those out first. Start here: https://wplift.com/plugins-to-restrict-content
                  WP Porn directory/review theme Maddos $35.

                  webmaster AT howling-wulf.com

                  Comment

                  • brassmonkey
                    Pay It Forward
                    • Sep 2005
                    • 77396

                    #10
                    Originally posted by HowlingWulf
                    There's quite a few plugins that will restrict content. Some of them are free. I would check those out first. Start here: https://wplift.com/plugins-to-restrict-content
                    if i had the cash i would hire a guy such as yourself
                    TRUMP 2026 KEKAW!!! - The Laken Riley Act Is Law!
                    DACA ENDED - SUPPORT AZ HCR 2060 52R - email: brassballz-at-techie.com

                    Comment

                    • vdbucks
                      Monger Cash
                      • Jul 2010
                      • 2773

                      #11
                      My bad for not getting back to you sooner...

                      I looked through all of our old tours but couldn't find the exact code we used. It's something along the lines of this though:

                      Code:
                      <?php
                      
                      // use your variable here
                      $ID_OF_VIDEO_HERE = $_REQUEST['video'];
                      
                      if(isset($_SESSION) === false)
                        session_start(); // Start PHP session management
                      if(isset($_SESSION['videos_viewed']) === false)
                        $_SESSION['videos_viewed'] = array();
                      
                      if(isset($_SESSION['videos_viewed'][$ID_OF_VIDEO_HERE]) === FALSE AND count($_SESSION['videos_viewed']) >= 3)
                      {
                        // Redirect the User
                        header('location: http://SUBSCRIBE_PAGE');
                        exit();
                      }
                      else
                      {
                        // Add current video ID to list
                        $_SESSION['videos_viewed'][$ID_OF_VIDEO_HERE] = true;
                      }
                      
                      // JUST FOR TESTING
                      var_dump($_SESSION['videos_viewed']);
                      
                      ?>

                      Comment

                      • OneHungLo
                        So Fucking Banned
                        • May 2001
                        • 40906

                        #12
                        Try this.

                        https://wordpress.org/plugins/passwordsentry/

                        Besides password mgmt it also has bw limiting.

                        Comment

                        Working...