REALTOR Marketing Makeover (WordPress Blog)

url: http://marketingmakeoverchallenge.com/

Realtor

SDAC Inc. provided:

  • XHTML/CSS programming
  • WordPress theme creation
  • Custom PHP programming

technologies used:

XHTML, CSS, WordPress,PHP

front end:

The client had an existing site design in place – they just needed the WordPress blog part incorporated into their existing layout.

back end:

There is nothing too fancy with the backend.

lessons learned/random thoughts:

This is another good example of easily incorporating WordPress into your non-WordPress layout.

Terms of Use Javascript

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:
  1. <script type="text/javascript">
  2. function terms(){
  3.     question = confirm("Terms of Use text here")
  4.  if (question !="0"){
  5.         document.URL()
  6.     }
  7.   }
  8. </script>

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

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