Looking for a wordpress plugin

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • stickyfingerz
    Doin fine
    • Oct 2005
    • 24984

    #1

    Looking for a wordpress plugin

    Need a wordpress plugin that generates an embed code for users to post pics that are included in posts. Similar to Lol cats etc. Anyone... anyone.... Buller Buller ?
  • Miguel T
    ♦ Web Developer ♦
    • May 2005
    • 12473

    #2
    That could be done with custom fields mate.

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

    Comment

    • stickyfingerz
      Doin fine
      • Oct 2005
      • 24984

      #3
      Originally posted by AbsolutePorn
      That could be done with custom fields mate.
      I don't want to have to do it by hand for each post though. Custom fields won't be able to do it automatically when I make a post with an image will it?

      Comment

      • stickyfingerz
        Doin fine
        • Oct 2005
        • 24984

        #4
        Found one that will do what I want, which is make the embed code the user gets auto link back to the site they are linking the image from if they post it somewhere, but the dl link isn't working doh! Any more input?

        Comment

        • pornguy
          Too lazy to set a custom title
          • Mar 2003
          • 62912

          #5
          Post what you found. Lets take a look at it.
          PornGuy skype me pornguy_epic

          AmateurDough The Hottes Shemales online!
          TChicks.com | Angeles Cid | Mariana Cordoba | MAILERS WELCOME!

          Comment

          • fris
            Too lazy to set a custom title
            • Aug 2002
            • 55679

            #6
            Originally posted by stickyfingerz
            I don't want to have to do it by hand for each post though. Custom fields won't be able to do it automatically when I make a post with an image will it?
            just write a small function and put it in functions.php and insert it into your theme template.
            Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

            Comment

            • fris
              Too lazy to set a custom title
              • Aug 2002
              • 55679

              #7
              im in a giving mood today.

              [sharelink] in your post or page will create the share link(s) like on lolcats, and it will take use the attached image, so no need for custom fields.

              Code:
              <?php
              
              function sharelink_shortcode($content)
              {
                  $attachments = get_children(array('post_parent' => get_the_ID(), 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order'));
                  $img = array_shift($attachments);
                  $imagelink = wp_get_attachment_image_src($img->ID,'full');
                  $image = $imagelink[0];
                  $permalink = get_permalink();
                  $home = get_bloginfo('home');
                  $content = 'Link: <input type="text" value="'.$permalink.'" size="30"><br/><br/>';
                  $content .= 'Image Code: <input type="text" size="45" value="<a href=&quot;'.$home.'&quot;><img src=&quot;'.$image.'&quot; border=&quot;0&quot; alt=&quot;funny pics&quot;></a>">'; 
                  return $content;
              }
              
              add_shortcode('sharelink','sharelink_shortcode');
              
              ?>
              Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

              Comment

              • fris
                Too lazy to set a custom title
                • Aug 2002
                • 55679

                #8
                http://www.blogdojo.com/share.phps

                if you want the source, make sure to put in your functions.php in your theme
                Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

                Comment

                • stickyfingerz
                  Doin fine
                  • Oct 2005
                  • 24984

                  #9
                  Originally posted by fris
                  http://www.blogdojo.com/share.phps

                  if you want the source, make sure to put in your functions.php in your theme
                  Much thanks Fris. Ill take a look at this in the morning when I am more sober. hehe.

                  Comment

                  • CaptainWolfy
                    Playa
                    • Dec 2005
                    • 8439

                    #10
                    fris is the man for wp

                    Comment

                    • fris
                      Too lazy to set a custom title
                      • Aug 2002
                      • 55679

                      #11
                      let me know if you have any issues i tried it on a 2.7 site of mine, worked fine
                      Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

                      Comment

                      • stickyfingerz
                        Doin fine
                        • Oct 2005
                        • 24984

                        #12
                        Originally posted by fris
                        let me know if you have any issues i tried it on a 2.7 site of mine, worked fine
                        Its working, but I am getting this error.

                        Warning: array_shift() [function.array-shift]: The argument should be an array in /web/sites/myaccount/mydomain.com/wp-content/themes/TweetMeBlue/functions.php on line 254

                        and yes I am using the tweetmeblue theme hehe.

                        <a href="http://mydomain.com"><img src="" border="0" alt="funny pics"></a>

                        And it doesn't auto generate the actual image url, just shows up blank. I am using the wordpress upload function for my pics as I have a plugin to auto watermark all the images that get uploaded, so may be that is why its not working. Hit me up if you want to look at the site itself. Its a mainstream site so Id rather not post it here.

                        Comment

                        • fris
                          Too lazy to set a custom title
                          • Aug 2002
                          • 55679

                          #13
                          gonna hit you up in a few
                          Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

                          Comment

                          • DWB
                            Registered User
                            • Jul 2003
                            • 31779

                            #14
                            Fris rocks.

                            Comment

                            • uno
                              RIP Dodger. BEST.CAT.EVER
                              • Dec 2002
                              • 18450

                              #15
                              Originally posted by stickyfingerz
                              Much thanks Fris. Ill take a look at this in the morning when I am more sober. hehe.
                              Fris is the man with helpful tips.
                              -uno
                              icq: 111-914
                              CrazyBabe.com - porn art
                              MojoHost - For all your hosting needs, present and future. Tell them I sent ya!

                              Comment

                              • uno
                                RIP Dodger. BEST.CAT.EVER
                                • Dec 2002
                                • 18450

                                #16
                                Originally posted by stickyfingerz
                                Its working, but I am getting this error.

                                Warning: array_shift() [function.array-shift]: The argument should be an array in /web/sites/myaccount/mydomain.com/wp-content/themes/TweetMeBlue/functions.php on line 254

                                and yes I am using the tweetmeblue theme hehe.

                                <a href="http://mydomain.com"><img src="" border="0" alt="funny pics"></a>

                                And it doesn't auto generate the actual image url, just shows up blank. I am using the wordpress upload function for my pics as I have a plugin to auto watermark all the images that get uploaded, so may be that is why its not working. Hit me up if you want to look at the site itself. Its a mainstream site so Id rather not post it here.
                                Send me a link to the WP watermark plugin por favor.
                                -uno
                                icq: 111-914
                                CrazyBabe.com - porn art
                                MojoHost - For all your hosting needs, present and future. Tell them I sent ya!

                                Comment

                                • AAB
                                  Confirmed User
                                  • Apr 2009
                                  • 874

                                  #17
                                  I'm working on mine and will be releasing it soon, but need to tweak out a few issues. It's already used on a few blogs, for example Beer Steak - let me know if you'd like to beta test before it's officially released.

                                  The way it works right now is that it automatically recognizes whether there is a picture embedded in the post and if it is, it will generate both HTML and BBCode codes at the bottom of the post. Text to go with it is customizeable. It also automatically posts generated links on attachment pages (so each image in the gallery has its own code).

                                  All codes are SEO friendly, which is the purpose (to help you build up links with relevant anchor keywords).

                                  Comment

                                  • fris
                                    Too lazy to set a custom title
                                    • Aug 2002
                                    • 55679

                                    #18
                                    I wrote a plugin to do this after helping ryan with this.
                                    Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

                                    Comment

                                    • stickyfingerz
                                      Doin fine
                                      • Oct 2005
                                      • 24984

                                      #19
                                      Originally posted by uno
                                      Send me a link to the WP watermark plugin por favor.
                                      I shall. I found it easier to batch images offline thought to be honest even though it was working.

                                      Comment

                                      • stickyfingerz
                                        Doin fine
                                        • Oct 2005
                                        • 24984

                                        #20
                                        Originally posted by fris
                                        I wrote a plugin to do this after helping ryan with this.
                                        Yes you rock man. New plugin works great.

                                        Comment

                                        • HowlingWulf
                                          Confirmed User
                                          • Nov 2001
                                          • 1662

                                          #21
                                          I've been using TDO Mini Forms but I'd like to see this plugin as well. Are you going to publish it anywhere Fris?
                                          WP Porn directory/review theme Maddos $35.

                                          webmaster AT howling-wulf.com

                                          Comment

                                          • fris
                                            Too lazy to set a custom title
                                            • Aug 2002
                                            • 55679

                                            #22
                                            Originally posted by HowlingWulf
                                            I've been using TDO Mini Forms but I'd like to see this plugin as well. Are you going to publish it anywhere Fris?
                                            what it basically does is when making a post you attach an image, and in your post you enter [shareit] and it will display the image, plus the linking codes to embed, link, etc

                                            no need to insert image into the post, [shareit] displays it so you dont have to put <img src html codes in your post.

                                            also you can style the way its outputted via the shareit.css file.
                                            Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

                                            Comment

                                            • stickyfingerz
                                              Doin fine
                                              • Oct 2005
                                              • 24984

                                              #23
                                              Originally posted by fris
                                              what it basically does is when making a post you attach an image, and in your post you enter [shareit] and it will display the image, plus the linking codes to embed, link, etc

                                              no need to insert image into the post, [shareit] displays it so you dont have to put <img src html codes in your post.

                                              also you can style the way its outputted via the shareit.css file.
                                              Its a great plugin. Super easy and handy.

                                              Comment

                                              Working...