Q: Anyone interested in wordpress CTR sort plugin?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ipolic
    Confirmed User
    • Nov 2003
    • 1486

    #1

    Q: Anyone interested in wordpress CTR sort plugin?

    As title says, is anyone here interested to use wordpress plugin which will sort post/videos/games/whatever by click through ratio(separate sorting for index/categories and tags)? Script is LIGHTWEIGHT and it's already done for my mainstream biz, I was just wondering if there is any interest in adult to use it???

    I see it more then suitable for tubes/pinterest clones/tgps/mgps/whatever running on Wordpress.

    Plugin needs small integration into theme files but I believe if you would ask theme developer they would integrate it and release new version since it's like half hr job for decent coder.

    Questions, comments, everything more then welcome
  • naughty1
    Confirmed User
    • Jun 2007
    • 137

    #2
    Yeah would be nice addition to WP
    Mojo Host The Only Host You Will Ever Need

    Comment

    • Miguel T
      ♦ Web Developer ♦
      • May 2005
      • 12473

      #3
      I already did something like that, since I'm using "Wp-PostViews", I can easily sort out the post based on the "Views".

      For example...

      http : // www . mysite . com /some-category-name/?sort=views

      And then I changed the WP Query in the archive/category to:
      Code:
      if(isset($_GET['sort'])) { $_SESSION['sort'] = $_GET['sort']; }
      if($sort == 'views') {
         query_posts($query_string.'&v_sortby=views&v_orderby=desc&posts_per_page=24');
      } else {
         //do the regular query here...
      }
      The code above was adapted for this GFY Post Obviously you should sanitize all GET inputs, etc.

      Full Stack Webdeveloper: HTML5/CSS3, jQuery, AJAX, ElevatedX, NATS, MechBunny, Wordpress

      Comment

      • ipolic
        Confirmed User
        • Nov 2003
        • 1486

        #4
        Your code is good if you wanna sort by VIEWS, but my plugin sorts by click thru ratio on index or category or tags.

        So for example you can have 1 video which gets tons of traffic from referrals/SE/etc but on index it is not clicked a lot. Your solution would display this video on top of index, while mine would display what people actually CLICK

        Originally posted by AbsolutePorn
        I already did something like that, since I'm using "Wp-PostViews", I can easily sort out the post based on the "Views".

        For example...

        http : // www . mysite . com /some-category-name/?sort=views

        And then I changed the WP Query in the archive/category to:
        Code:
        if(isset($_GET['sort'])) { $_SESSION['sort'] = $_GET['sort']; }
        if($sort == 'views') {
           query_posts($query_string.'&v_sortby=views&v_orderby=desc&posts_per_page=24');
        } else {
           //do the regular query here...
        }
        The code above was adapted for this GFY Post Obviously you should sanitize all GET inputs, etc.

        Comment

        • sake
          Confirmed User
          • Apr 2002
          • 2648

          #5
          Yes! Send me more info..

          Comment

          • ipolic
            Confirmed User
            • Nov 2003
            • 1486

            #6
            Originally posted by sake
            Yes! Send me more info..
            Well basically script is plug and play, and it does CTR sorting like old school tgp/mgp rotators(stream rotator/smart thumbs etc)....very NICE addition to WP. There would be paid and free versions.

            Comment

            • HowlingWulf
              Confirmed User
              • Nov 2001
              • 1662

              #7
              Is this a widget? If it's for the main page how do new posts without CTR get listed?
              WP Porn directory/review theme Maddos $35.

              webmaster AT howling-wulf.com

              Comment

              • ipolic
                Confirmed User
                • Nov 2003
                • 1486

                #8
                No, it is PLUGIN, so all mainpage posts, category posts and tags would be sorted by CTR. New posts get listed in specified positions.

                Comment

                • HowlingWulf
                  Confirmed User
                  • Nov 2001
                  • 1662

                  #9
                  Originally posted by ipolic
                  No, it is PLUGIN, so all mainpage posts, category posts and tags would be sorted by CTR. New posts get listed in specified positions.
                  Yes we know it's a plugin.

                  It would be nice if it offered a widget of the highest CTR posts as well.
                  WP Porn directory/review theme Maddos $35.

                  webmaster AT howling-wulf.com

                  Comment

                  • ipolic
                    Confirmed User
                    • Nov 2003
                    • 1486

                    #10
                    Maybe in future because that requires extra coding etc and I have plugin already done so thought to push it for adult biz also

                    Comment

                    • CaringNeo
                      Confirmed User
                      • Jun 2004
                      • 29

                      #11
                      I would be interested if it is priced reasonable.

                      Comment

                      • Miguel T
                        ♦ Web Developer ♦
                        • May 2005
                        • 12473

                        #12
                        Originally posted by ipolic
                        Your code is good if you wanna sort by VIEWS, but my plugin sorts by click thru ratio on index or category or tags.

                        So for example you can have 1 video which gets tons of traffic from referrals/SE/etc but on index it is not clicked a lot. Your solution would display this video on top of index, while mine would display what people actually CLICK
                        I see what you mean...
                        Basicly, we'd need another "View Counter", which only counts hit from the site's domain, and not referrals...

                        Full Stack Webdeveloper: HTML5/CSS3, jQuery, AJAX, ElevatedX, NATS, MechBunny, Wordpress

                        Comment

                        • ipolic
                          Confirmed User
                          • Nov 2003
                          • 1486

                          #13
                          Nah, we just need good CTR sorting algo wordpress plugin ;)

                          Comment

                          • HowlingWulf
                            Confirmed User
                            • Nov 2001
                            • 1662

                            #14
                            So how does external traffic affect the CTR?
                            Such as incoming hits to a post from search engines?
                            How would you tell how many times the link has shown up in search engine results before being clicked?
                            WP Porn directory/review theme Maddos $35.

                            webmaster AT howling-wulf.com

                            Comment

                            Working...