SDAC Blog

Check out our blog for WordPress updates, WordPress plugin reviews, and general web development hints.

hr
hr

Need: A script that a client could easily call within a URL to force the users to agree to their terms of use before downloading a file.

Solution:Either put the following code in the header, or in a .js file to include:

JAVASCRIPT:
<script type="text/javascript">
function terms(){
    question = confirm("Terms of Use text here")
 if (question !="0"){
        document.URL()
    }
  }
</script>

Then, call this code in your HTML code by using:

HTML:
<a href="http://www.sandboxdev.com" onclick="terms();return false;" value="Display Terms of Use" />Download Link</a>

separate
hr
hr

If you are using WordPress pages with your WordPress based web site and are looking to make your web site more dynamic - check out Fold Page List plugin. This plugin will allow you to dynamically create drop down menus for your site without any hassle. The developers of this plugin are helpful and are open to suggestions. (The last release addressed a feature I requested)

separate
hr
hr

If you need a previous release of WordPress, you can now go to the WordPress Release Archive to find a historical list of all WordPress releases.

separate
hr
hr

A number of bugs can easily be solved by making sure you have the latest version of a particular plugin. If you are like most people, you do not have time to go to each and every plugin's web site and confirm you have the latest version, but the Update Manager plugin will. The plugin is relatively new and somewhat in beta, but it has already saved me countless hours - and hopefully will do the same for you.

separate
hr
hr

WordPress 2.1 has officially been released. The new version of WordPress has over 550 bug fixes and several new features.

separate