Skip to content
WJunction - Webmaster Forum

Search results

  1. S

    Need help Autopost thumbnail plugin for bbcode

    Try this: preg_match_all('/\[img\]([^\[\]>]*)/i', $post[0]->post_content, $matches);
  2. S

    Sorry, I have cleared it now. Stupid space :(

    Sorry, I have cleared it now. Stupid space :(
  3. S

    I'm getting crazy here...

    I see some bad use of tables there, you are just using it to organize into columns :| I guess you probably need to align them, adding/removing extra <p> tag could help: <table class="table" style="width: 828px;"> <tbody> <tr> <td style="text-align...
  4. S

    PHEW :| [ffuu] I will get a new mouse and see you :fly:

    PHEW :| [ffuu] I will get a new mouse and see you :fly:
  5. S

    Anytime XD You are Playing :|

    Anytime XD You are Playing :|
  6. S

    Throw Euler Challenges

    http://projecteuler.net/ Keeping it simple, you are to solve last unsolved problem posted in this thread. The first person to solve previous problem would post his/her source code. He would then post a different problem (which he himself is able to solve) for others to solve I would try to keep...
  7. S

    php any link counter

    One way would be to create a redirect.php file and forward all of the links through it. Inside redirect.php, check for referrer and if its coming from your site, then update your database. This is what most of sites do. Eg: clicking on links in google search results The other way to do the same...
  8. S

    php any link counter

    You can use Google Analytics to track Outbound links from your site. Here's how: https://support.google.com/analytics/answer/1136920?hl=en If you want to track each and every link on your site, attach the same handler to all links.
  9. S

    Mobile Responsive Coming Soon Page Feedback

    I mean something like this: http://joncom.be/code/css-clocks CSS3 Transformations would greatly reduce the effort in this then using canvas
  10. S

    Mobile Responsive Coming Soon Page Feedback

    Its coming out nicely, simple and clean. You could even add a rotating clock alongside that changes its hour and minute hand with time.
  11. S

    Google How to search for specific file extensions on google?

    Add this in your search query filetype:mp3
  12. S

    How to insert filehost icons to your wordpress sites

    if the url shown down does not appears in a link then it will add those rules to the element. It will simply exclude those elements that matches inside the :not() and apply rules to others
  13. S

    How to insert filehost icons to your wordpress sites

    Yes, correct. The :not() will match all elements excepts the elements which are matched inside the brackets
  14. S

    How to insert filehost icons to your wordpress sites

    a:not([href*="ryushare.com/affiliate.python?aff_id="]) { background: url("http://dl.dropbox.com/u/16918132/Logo/New%20folder/small/up.png") no-repeat; height: 16px; width: 16px; padding: 5px 25px }
  15. S

    Anyone Can Improve The Looks of This Script

    Upload ZeroClipboard.js and ZeroClipboard.swf to your website directory. Add this code before end of body tag: <script src="/path/to/ZeroClipboard.js"></script> <script> var clip = new ZeroClipboard( document.getElementById("copyText"), { moviePath: "/path/to/ZeroClipboard.swf" } )...
  16. S

    cleared it :)

    cleared it :)
  17. S

    Changing Select Box into Radio

    Its a radio input, so it will only work with the selected option. If you want multiple choice, then go for check-boxes Could you be more clear on what you want to achieve?
  18. S

    Webmaster URL Errors

    You are not being punished in any way, stop caring about it: http://support.google.com/webmasters/bin/answer.py?hl=en&answer=2409439 However, what you can do is what this states: A simple htaccess redirect could help i.e. 301 redirect http://www.ultraimg.com/images/LYePx.jpgPublisher to...
  19. S

    Anyone Can Improve The Looks of This Script

    You won't be able to do cross browser copy without using Flash. Try using ZeroClipboard which will add an invisible flash movie and will make copy work in flash enabled browsers.
  20. S

    How easy is it to code a Google Chrome Extension

    Most of the work is done using javascript in google chrome extensions. You need to provide a few more details like site url, how you want the addon to interact with webpage and what needs to be done with the output. You can post / PM me those details and i might be able to quote
Back
Top Bottom