Contact Form on WordPress Sites?

Contact Form 7 is one of the most popular plugins to add a contact form to a WP blog. It supports multiple contact forms and you can add/remove fields as needed. Additional services such as reCAPTCHA and Akismet can be added. I use this on most of my blogs to power the contact features.

How to edit a user profile on the front end?

You can do that by copy your theme’s page.php to a new file named something like user-profile.php and add to the very top of it this code: <?php /** * Template Name: User Profile * * Allow users to update their profiles from Frontend. * */ /* Get user info. */ global $current_user, $wp_roles; //get_currentuserinfo(); … Read more

How to include landing page with form submission?

Setting a cookie might be the best option. In case the visitor had js disabled, I figured it best to set the cookie in the http header using php. However, it seems that init is the last possible action WordPress will allow a cookie-setting function to hook into, but it fires too early for conditional … Read more

WordPress gravity forms abn lookup

I’m having some trouble setting up a gravity form. I am trying to create a form where a customer enters there abn which then gets checked through the abn lookup tool and then updates fields with the values returned e.g. Company Name, ABN status. Could anyone tell me the best way to do this. Cheers, … Read more

Send a copy to yourself with Contact Form 7 in WordPress

am not using Contact Form 7 anymore but as far as I remember on the settings page of your form, there are two areas called Mail. The first one is for receipment and you can enable the other one by checking the checkbox Mail(2). That one is for copies. http://s.wordpress.org/extend/plugins/contact-form-7/screenshot-1.png?r=561651 By the way, I recommend … Read more

ngular is automatically adding ‘ng-invalid’ class on ‘required’ fields

Since the inputs are empty and therefore invalid when instantiated, Angular correctly adds the ng-invalid class. A CSS rule you might try: Which basically states when the field has had something entered into it at some point since the page loaded and wasn’t reset to pristine by $scope.formName.setPristine(true) and something wasn’t yet entered and it’s invalid then the text … Read more